Files
poseidon/deploy/grafana-dashboard/utils/variables.py
Maximilian Paß 1aced0a130 Remove "Stage" variable
as we will use distinct Influx and Grafana instances for the different stages/environments.
2023-01-18 15:33:42 +00:00

15 lines
304 B
Python

from grafanalib.core import Template
from utils.utils import read_query
environment_variable = Template(
dataSource="Flux",
label="Environment IDs",
name="environment_ids",
query=read_query("environment-ids"),
refresh=1,
includeAll=True,
multi=True,
default="$__all",
)