dasbhoards: fix vminsert/vmstorage/vmselect metrics filtering

Fix vminsert/vmstorage/vmselect metrics filtering when dashboard is used
to display data from many sub-clusters with unique job names.
Before, only one specific job could have been accounted for component-specific panels,
instead of all available jobs for the component.

Signed-off-by: hagen1778 <roman@victoriametrics.com>
This commit is contained in:
hagen1778 2023-10-11 12:09:04 +02:00 committed by Aliaksandr Valialkin
parent d0df4f7c7f
commit b57e8b1bb9
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1
3 changed files with 13 additions and 12 deletions

View file

@ -8938,8 +8938,8 @@
},
"definition": "label_values(vm_app_version{job=~\"$job\", version=~\"^vminsert.*\"}, job)",
"hide": 2,
"includeAll": false,
"multi": false,
"includeAll": true,
"multi": true,
"name": "job_insert",
"options": [],
"query": {
@ -8963,8 +8963,8 @@
},
"definition": "label_values(vm_app_version{job=~\"$job\", version=~\"^vmselect.*\"}, job)",
"hide": 2,
"includeAll": false,
"multi": false,
"includeAll": true,
"multi": true,
"name": "job_select",
"options": [],
"query": {
@ -8988,8 +8988,8 @@
},
"definition": "label_values(vm_app_version{job=~\"$job\", version=~\"^vmstorage.*\"}, job)",
"hide": 2,
"includeAll": false,
"multi": false,
"includeAll": true,
"multi": true,
"name": "job_storage",
"options": [],
"query": {

View file

@ -8939,8 +8939,8 @@
},
"definition": "label_values(vm_app_version{job=~\"$job\", version=~\"^vminsert.*\"}, job)",
"hide": 2,
"includeAll": false,
"multi": false,
"includeAll": true,
"multi": true,
"name": "job_insert",
"options": [],
"query": {
@ -8964,8 +8964,8 @@
},
"definition": "label_values(vm_app_version{job=~\"$job\", version=~\"^vmselect.*\"}, job)",
"hide": 2,
"includeAll": false,
"multi": false,
"includeAll": true,
"multi": true,
"name": "job_select",
"options": [],
"query": {
@ -8989,8 +8989,8 @@
},
"definition": "label_values(vm_app_version{job=~\"$job\", version=~\"^vmstorage.*\"}, job)",
"hide": 2,
"includeAll": false,
"multi": false,
"includeAll": true,
"multi": true,
"name": "job_storage",
"options": [],
"query": {

View file

@ -42,6 +42,7 @@ The sandbox cluster installation is running under the constant load generated by
* BUGFIX: [vmalert](https://docs.victoriametrics.com/vmalert.html): strip sensitive information such as auth headers or passwords from datasource, remote-read, remote-write or notifier URLs in log messages or UI. This behavior is by default and is controlled via `-datasource.showURL`, `-remoteRead.showURL`, `remoteWrite.showURL` or `-notifier.showURL` cmd-line flags. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/5044).
* BUGFIX: [vmselect](https://docs.victoriametrics.com/Cluster-VictoriaMetrics.html): improve performance and memory usage during query processing on machines with big number of CPU cores. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/5087) for details.
* BUGFIX: dashboards: fix vminsert/vmstorage/vmselect metrics filtering when dashboard is used to display data from many sub-clusters with unique job names. Before, only one specific job could have been accounted for component-specific panels, instead of all available jobs for the component.
* BUGFIX: [VictoriaMetrics cluster](https://docs.victoriametrics.com/Cluster-VictoriaMetrics.html): bump hard-coded limit for search query size at `vmstorage` from 1MB to 5MB. The change should be more suitable for real-world scenarios and protect vmstorage from excessive memory usage. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/5154) for details