VariableType🔗
Dashboard variable type
query
: Query-generated list of values such as metric names, server names, sensor IDs, data centers, and so on.
adhoc
: Key/value filters that are automatically added to all metric queries for a data source (Prometheus, Loki, InfluxDB, and Elasticsearch only).
constant
: Define a hidden constant.
datasource
: Quickly change the data source for an entire dashboard.
interval
: Interval variables represent time spans.
textbox
: Display a free text input field with an optional default value.
custom
: Define the variable options manually using a comma-separated list.
system
: Variables defined by Grafana. See: https://grafana.com/docs/grafana/latest/dashboards/variables/add-template-variables/#global-variables
Definition🔗
package com.grafana.foundation.dashboard.VariableType;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonValue;
// Dashboard variable type
// `query`: Query-generated list of values such as metric names, server names, sensor IDs, data centers, and so on.
// `adhoc`: Key/value filters that are automatically added to all metric queries for a data source (Prometheus, Loki, InfluxDB, and Elasticsearch only).
// `constant`: Define a hidden constant.
// `datasource`: Quickly change the data source for an entire dashboard.
// `interval`: Interval variables represent time spans.
// `textbox`: Display a free text input field with an optional default value.
// `custom`: Define the variable options manually using a comma-separated list.
// `system`: Variables defined by Grafana. See: https://grafana.com/docs/grafana/latest/dashboards/variables/add-template-variables/#global-variables
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum VariableType {
QUERY("query"),
ADHOC("adhoc"),
CONSTANT("constant"),
DATASOURCE("datasource"),
INTERVAL("interval"),
TEXTBOX("textbox"),
CUSTOM("custom"),
SYSTEM("system"),
_EMPTY("");
private final String value;
private VariableType(String value) {
this.value = value;
}
@JsonValue
public String Value() {
return value;
}
}