Skip to content
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

Update metric_name to find any jvm_ metrics #49

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions jvm/jvm-metrics-by-service.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
"multiSelect": false,
"name": "deployment_environment",
"order": 0,
"queryValue": "SELECT JSONExtractString(labels, 'deployment_environment') AS deployment_environment\nFROM signoz_metrics.distributed_time_series_v4_1day\nWHERE metric_name = 'jvm_class_loaded'\nGROUP BY deployment_environment\n",
"queryValue": "SELECT distinct JSONExtractString(labels, 'deployment_environment') AS deployment_environment\nFROM signoz_metrics.distributed_time_series_v4_1day\nWHERE metric_name ilike 'jvm_%'\nGROUP BY deployment_environment\n",
"selectedValue": "default",
"showALLOption": false,
"sort": "ASC",
Expand All @@ -171,7 +171,7 @@
"multiSelect": false,
"name": "service_name",
"order": 0,
"queryValue": "SELECT JSONExtractString(labels, 'service_name') AS service_name\nFROM signoz_metrics.distributed_time_series_v4_1day\nWHERE metric_name = 'jvm_class_loaded' AND JSONExtractString(labels, 'deployment_environment') = {{.deployment_environment}}\nGROUP BY service_name",
"queryValue": "SELECT distinct JSONExtractString(labels, 'service_name') AS service_name\nFROM signoz_metrics.distributed_time_series_v4_1day\nWHERE metric_name ilike 'jvm_%' AND JSONExtractString(labels, 'deployment_environment') = {{.deployment_environment}}\nGROUP BY service_name",
"selectedValue": "default",
"showALLOption": false,
"sort": "DISABLED",
Expand Down Expand Up @@ -2875,4 +2875,4 @@
"yAxisUnit": "bytes"
}
]
}
}