Skip to content
This repository was archived by the owner on Jun 26, 2023. It is now read-only.

"Value groups/tags" added to template variables #289

Open
wants to merge 2 commits into
base: master
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: 4 additions & 2 deletions grafonnet/template.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
label=null,
allValues=null,
tagValuesQuery='',
tagsQuery='',
useTags=false,
current=null,
hide='',
regex='',
Expand All @@ -50,10 +52,10 @@
regex: regex,
sort: sort,
tagValuesQuery: tagValuesQuery,
tagsQuery: tagsQuery,
tags: [],
tagsQuery: '',
type: 'query',
useTags: false,
useTags: useTags,
},
/**
* Use an [interval variable](https://grafana.com/docs/grafana/latest/variables/variable-types/add-interval-variable/) to represent time spans such as '1m', '1h', '1d'. You can think of them as a dashboard-wide "group by time" command. Interval variables change how the data is grouped in the visualization. You can also use the Auto Option to return a set number of data points per time span.
Expand Down