-
Notifications
You must be signed in to change notification settings - Fork 1.3k
[code browser] measure all sessions vs errored sessions #12702
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,8 @@ const commit = require('../../config.json').commit; | |
|
||
export enum MetricsName { | ||
SupervisorFrontendClientTotal = "gitpod_supervisor_frontend_client_total", | ||
SupervisorFrontendErrorTotal = "gitpod_supervisor_frontend_error_total" | ||
SupervisorFrontendErrorTotal = "gitpod_supervisor_frontend_error_total", | ||
SupervisorFrontendLoadTotal = "gitpod_vscode_web_load_total", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mustard-mh I don't think supervisor frontend should care about it. |
||
} | ||
|
||
const MetricsUrl = serverUrl.asIDEMetrics().toString(); | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We introduced a new metric:
gitpod_vscode_web_load_total
for measuring the percentage of failed loads.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gitpod/install/installer/pkg/components/ide-metrics/configmap.go
Lines 50 to 58 in bc47002
this metric can have two different types:
loading
anderror
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
supervisor-frontend should be reverted, we should try to decouple metrics in VS Code Web workbench and here, and work on them separately. I think this PR should not have any changes in supervisor. cc @mustard-mh