mirror of
https://github.com/grafana/grafana.git
synced 2025-01-16 11:42:35 -06:00
9691af83ee
* Go program to output openapi * Fix number type syntax Resolves error: 'unsupported op for number &' * Render just the schemas * Use args as entrypoints and add test * Update README, tidy go.mod
31 lines
748 B
CUE
31 lines
748 B
CUE
package variables
|
|
|
|
// Query variables allow you to write a data source query that can return a
|
|
// list of metric names, tag values, or keys.
|
|
#Query: _variable & {
|
|
// Data source to use.
|
|
datasource: string
|
|
// Definition.
|
|
definition?: string
|
|
// Query.
|
|
query: string
|
|
// Refresh.
|
|
refresh: int | *1
|
|
// Regex.
|
|
regex?: string
|
|
// * 0 - Disabled.
|
|
// * 1 - Alphabetical (asc).
|
|
// * 2 - Alphabetical (desc).
|
|
// * 3 - Numerical (asc).
|
|
// * 4 - Numerical (desc).
|
|
// * 5 - Alphabetical (case-insensitive, asc).
|
|
// * 6 - Alphabetical (case-insensitive, desc).
|
|
sort: int >= 0 <= 6 | *0
|
|
tagValuesQuery?: string
|
|
tags: [...string] | *[]
|
|
tagsQuery?: string
|
|
// Variable type.
|
|
type: "query"
|
|
useTags: bool | *false
|
|
}
|