mixin: Reorder template variables on Remote Write dashboard

Signed-off-by: f9n <f9n@protonmail.com>
This commit is contained in:
Fatih Sarhan 2021-11-12 14:33:22 +03:00 committed by f9n
parent 72a9f7fee9
commit bc89e9e494
1 changed files with 4 additions and 4 deletions

View File

@ -312,9 +312,9 @@ local template = grafana.template;
)
.addTemplate(
template.new(
'instance',
'cluster',
'$datasource',
'label_values(prometheus_build_info, instance)' % $._config,
'label_values(kube_pod_container_info{image=~".*prometheus.*"}, cluster)' % $._config,
refresh='time',
current={
selected: true,
@ -326,9 +326,9 @@ local template = grafana.template;
)
.addTemplate(
template.new(
'cluster',
'instance',
'$datasource',
'label_values(kube_pod_container_info{image=~".*prometheus.*"}, cluster)' % $._config,
'label_values(prometheus_build_info{cluster=~"$cluster"}, instance)' % $._config,
refresh='time',
current={
selected: true,