├── LICENSE ├── README.md └── grafana ├── next ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── logsnew │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ └── publicdashboard │ └── publicdashboard.cue ├── v10.1.0 ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── playlist │ └── playlist.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.1.1 ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── playlist │ └── playlist.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.1.2 ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── playlist │ └── playlist.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.1.3 ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── playlist │ └── playlist.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.1.4 ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── playlist │ └── playlist.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.1.5 ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── playlist │ └── playlist.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.1.6 ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── playlist │ └── playlist.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.1.7 ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── playlist │ └── playlist.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.1.8 ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── playlist │ └── playlist.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.1.9 ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── playlist │ └── playlist.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.1.x ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── playlist │ └── playlist.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.2.0 ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.2.1 ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.2.2 ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.2.3 ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.2.4 ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.2.5 ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.2.6 ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.2.x ├── common │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── folder │ └── folder.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.3.0 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.3.1 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.3.3 ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.3.4 ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.3.5 ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.3.x ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.4.0 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.4.1 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.4.2 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v10.4.x ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── alertgroups │ │ └── panelcfg.cue │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── prometheus │ │ └── dataquery.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── testdata │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.0 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.1 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.10 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.11 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.2 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.3 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.4 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.5 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.6 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.7 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.8 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.9 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.0.x ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.0 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.1 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.10 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.11 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.12 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.13 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.2 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.3 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.4 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.5 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.6 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.7 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.8 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.9 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.1.x ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ ├── rolebinding │ └── rolebinding.cue │ └── team │ └── team.cue ├── v11.2.0 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.2.1 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.2.2 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.2.3 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.2.4 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.2.5 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.2.6 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.2.7 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.2.8 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.2.9 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.2.x ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.3.0 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.3.1 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.3.2 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.3.3 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.3.4 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.3.5 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.3.6 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.3.x ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.4.0 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.4.1 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.4.2 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.4.3 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.4.4 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.4.x ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.5.0 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.5.1 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.5.2 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.5.3 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.5.4 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.5.x ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── accesspolicy │ └── accesspolicy.cue │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ ├── publicdashboard │ └── publicdashboard.cue │ ├── role │ └── role.cue │ └── rolebinding │ └── rolebinding.cue ├── v11.6.0 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── logsnew │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ └── publicdashboard │ └── publicdashboard.cue ├── v11.6.1 ├── common │ ├── data.cue │ ├── data_source.cue │ ├── dataquery_gen.cue │ ├── dimensions.cue │ ├── geo.cue │ ├── heatmap.cue │ ├── logs.cue │ ├── mudball.cue │ ├── table.cue │ ├── time.cue │ └── variables.cue ├── composable │ ├── annotationslist │ │ └── panelcfg.cue │ ├── azuremonitor │ │ └── dataquery.cue │ ├── barchart │ │ └── panelcfg.cue │ ├── bargauge │ │ └── panelcfg.cue │ ├── candlestick │ │ └── panelcfg.cue │ ├── canvas │ │ └── panelcfg.cue │ ├── cloudwatch │ │ └── dataquery.cue │ ├── dashboardlist │ │ └── panelcfg.cue │ ├── datagrid │ │ └── panelcfg.cue │ ├── debug │ │ └── panelcfg.cue │ ├── elasticsearch │ │ └── dataquery.cue │ ├── gauge │ │ └── panelcfg.cue │ ├── geomap │ │ └── panelcfg.cue │ ├── googlecloudmonitoring │ │ └── dataquery.cue │ ├── grafanapyroscope │ │ └── dataquery.cue │ ├── heatmap │ │ └── panelcfg.cue │ ├── histogram │ │ └── panelcfg.cue │ ├── logs │ │ └── panelcfg.cue │ ├── logsnew │ │ └── panelcfg.cue │ ├── loki │ │ └── dataquery.cue │ ├── news │ │ └── panelcfg.cue │ ├── nodegraph │ │ └── panelcfg.cue │ ├── parca │ │ └── dataquery.cue │ ├── piechart │ │ └── panelcfg.cue │ ├── stat │ │ └── panelcfg.cue │ ├── statetimeline │ │ └── panelcfg.cue │ ├── statushistory │ │ └── panelcfg.cue │ ├── table │ │ └── panelcfg.cue │ ├── tempo │ │ └── dataquery.cue │ ├── text │ │ └── panelcfg.cue │ ├── timeseries │ │ └── panelcfg.cue │ ├── trend │ │ └── panelcfg.cue │ └── xychart │ │ └── panelcfg.cue └── core │ ├── dashboard │ └── dashboard.cue │ ├── librarypanel │ └── librarypanel.cue │ ├── preferences │ └── preferences.cue │ └── publicdashboard │ └── publicdashboard.cue └── v11.6.x ├── common ├── data.cue ├── data_source.cue ├── dataquery_gen.cue ├── dimensions.cue ├── geo.cue ├── heatmap.cue ├── logs.cue ├── mudball.cue ├── table.cue ├── time.cue └── variables.cue ├── composable ├── annotationslist │ └── panelcfg.cue ├── azuremonitor │ └── dataquery.cue ├── barchart │ └── panelcfg.cue ├── bargauge │ └── panelcfg.cue ├── candlestick │ └── panelcfg.cue ├── canvas │ └── panelcfg.cue ├── cloudwatch │ └── dataquery.cue ├── dashboardlist │ └── panelcfg.cue ├── datagrid │ └── panelcfg.cue ├── debug │ └── panelcfg.cue ├── elasticsearch │ └── dataquery.cue ├── gauge │ └── panelcfg.cue ├── geomap │ └── panelcfg.cue ├── googlecloudmonitoring │ └── dataquery.cue ├── grafanapyroscope │ └── dataquery.cue ├── heatmap │ └── panelcfg.cue ├── histogram │ └── panelcfg.cue ├── logs │ └── panelcfg.cue ├── logsnew │ └── panelcfg.cue ├── loki │ └── dataquery.cue ├── news │ └── panelcfg.cue ├── nodegraph │ └── panelcfg.cue ├── parca │ └── dataquery.cue ├── piechart │ └── panelcfg.cue ├── stat │ └── panelcfg.cue ├── statetimeline │ └── panelcfg.cue ├── statushistory │ └── panelcfg.cue ├── table │ └── panelcfg.cue ├── tempo │ └── dataquery.cue ├── text │ └── panelcfg.cue ├── timeseries │ └── panelcfg.cue ├── trend │ └── panelcfg.cue └── xychart │ └── panelcfg.cue └── core ├── dashboard └── dashboard.cue ├── librarypanel └── librarypanel.cue ├── preferences └── preferences.cue └── publicdashboard └── publicdashboard.cue /grafana/next/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/next/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/next/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/next/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/next/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/next/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v10.1.0/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.0/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.1.0/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.1/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.1/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.1.1/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.2/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.2/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.1.2/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.3/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.3/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.1.3/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.4/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.4/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.1.4/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.5/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.5/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.1.5/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.6/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.6/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.1.6/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.x/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.1.x/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.1.x/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.2.0/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.2.0/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.2.0/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.2.1/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.2.1/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.2.1/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.2.2/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.2.2/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.2.2/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.2.3/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.2.3/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.2.3/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.2.x/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.2.x/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.2.x/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.3.0/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v10.3.0/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.3.0/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.3.0/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.3.1/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v10.3.1/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.3.1/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.3.1/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.3.x/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v10.3.x/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.3.x/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.3.x/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.4.0/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v10.4.0/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.4.0/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.4.0/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.4.1/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v10.4.1/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.4.1/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.4.1/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.4.2/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v10.4.2/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.4.2/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.4.2/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v10.4.x/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v10.4.x/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v10.4.x/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v10.4.x/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.0/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.0/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.0/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.0/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.0/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.0/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.0/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.1/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.1/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.1/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.1/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.1/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.1/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.1/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.10/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.10/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.10/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.10/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.10/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.10/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.10/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.11/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.11/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.11/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.11/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.11/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.11/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.11/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.2/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.2/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.2/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.2/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.2/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.2/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.2/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.3/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.3/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.3/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.3/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.3/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.3/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.3/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.4/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.4/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.4/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.4/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.4/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.4/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.4/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.5/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.5/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.5/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.5/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.5/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.5/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.5/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.6/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.6/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.6/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.6/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.6/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.6/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.6/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.7/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.7/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.7/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.7/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.7/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.7/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.7/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.8/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.8/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.8/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.8/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.8/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.8/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.8/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.9/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.9/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.9/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.9/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.9/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.9/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.9/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.0.x/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.0.x/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.x/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.0.x/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.0.x/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.0.x/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.0.x/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.0/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.0/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.0/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.0/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.0/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.0/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.0/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.1/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.1/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.1/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.1/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.1/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.1/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.1/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.10/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.10/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.10/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.10/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.10/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.10/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.10/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.11/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.11/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.11/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.11/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.11/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.11/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.11/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.12/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.12/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.12/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.12/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.12/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.12/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.12/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.13/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.13/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.13/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.13/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.13/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.13/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.13/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.2/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.2/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.2/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.2/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.2/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.2/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.2/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.3/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.3/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.3/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.3/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.3/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.3/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.3/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.4/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.4/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.4/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.4/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.4/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.4/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.4/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.5/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.5/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.5/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.5/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.5/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.5/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.5/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.6/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.6/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.6/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.6/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.6/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.6/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.6/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.7/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.7/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.7/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.7/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.7/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.7/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.7/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.8/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.8/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.8/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.8/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.8/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.8/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.8/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.9/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.9/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.9/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.9/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.9/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.9/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.1.9/core/team/team.cue: -------------------------------------------------------------------------------- 1 | package kind 2 | 3 | name: "Team" 4 | maturity: "merged" 5 | description: "A team is a named grouping of Grafana users to which access control rules may be assigned." 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | spec: { 11 | // Name of the team. 12 | name: string 13 | // Email of the team. 14 | email?: string 15 | } @cuetsy(kind="interface") 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /grafana/v11.1.x/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.1.x/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.x/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.1.x/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.1.x/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.1.x/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.2.0/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.2.0/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.0/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.2.0/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.0/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.2.0/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.2.1/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.2.1/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.1/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.2.1/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.1/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.2.1/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.2.2/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.2.2/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.2/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.2.2/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.2/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.2.2/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.2.3/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.2.3/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.3/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.2.3/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.3/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.2.3/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.2.4/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.2.4/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.4/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.2.4/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.4/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.2.4/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.2.5/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.2.5/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.5/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.2.5/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.5/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.2.5/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.2.6/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.2.6/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.6/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.2.6/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.6/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.2.6/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.2.7/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.2.7/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.7/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.2.7/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.7/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.2.7/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.2.8/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.2.8/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.8/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.2.8/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.8/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.2.8/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.2.9/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.2.9/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.9/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.2.9/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.9/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.2.9/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.2.x/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.2.x/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.x/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.2.x/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.2.x/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.2.x/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.3.0/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.3.0/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.0/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.3.0/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.0/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.3.0/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.3.1/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.3.1/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.1/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.3.1/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.1/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.3.1/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.3.2/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.3.2/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.2/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.3.2/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.2/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.3.2/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.3.3/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.3.3/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.3/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.3.3/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.3/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.3.3/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.3.4/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.3.4/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.4/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.3.4/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.4/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.3.4/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.3.5/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.3.5/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.5/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.3.5/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.5/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.3.5/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.3.6/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.3.6/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.6/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.3.6/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.6/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.3.6/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.3.x/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.3.x/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.x/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.3.x/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.3.x/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.3.x/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.4.0/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.4.0/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.0/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.4.0/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.0/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.4.0/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.4.1/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.4.1/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.1/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.4.1/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.1/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.4.1/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.4.2/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.4.2/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.2/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.4.2/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.2/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.4.2/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.4.3/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.4.3/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.3/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.4.3/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.3/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.4.3/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.4.4/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.4.4/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.4/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.4.4/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.4/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.4.4/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.4.x/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.4.x/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.x/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.4.x/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.4.x/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.4.x/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.5.0/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.5.0/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.0/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.5.0/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.0/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.5.0/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.5.1/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.5.1/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.1/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.5.1/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.1/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.5.1/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.5.2/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.5.2/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.2/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.5.2/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.2/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.5.2/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.5.3/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.5.3/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.3/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.5.3/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.3/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.5.3/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.5.4/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.5.4/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.4/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.5.4/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.4/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.5.4/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.5.x/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.5.x/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.x/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.5.x/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.5.x/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.5.x/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.6.0/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.6.0/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.6.0/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.6.0/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.6.0/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.6.0/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.6.1/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.6.1/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.6.1/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.6.1/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.6.1/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.6.1/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } -------------------------------------------------------------------------------- /grafana/v11.6.x/common/data.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // A topic is attached to DataFrame metadata in query results. 4 | // This specifies where the data should be used. 5 | DataTopic: "series" | "annotations" | "alertStates" @cuetsy(kind="enum",memberNames="Series|Annotations|AlertStates") -------------------------------------------------------------------------------- /grafana/v11.6.x/common/data_source.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // TODO docs 4 | DataSourceJsonData: { 5 | authType?: string 6 | defaultRegion?: string 7 | profile?: string 8 | manageAlerts?: bool 9 | alertmanagerUid?: string 10 | } @cuetsy(kind="interface") 11 | -------------------------------------------------------------------------------- /grafana/v11.6.x/common/logs.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | LogsSortOrder: "Descending" | "Ascending" @cuetsy(kind="enum") 4 | LogsDedupStrategy: "none" | "exact" | "numbers" | "signature" @cuetsy(kind="enum",memberNames="none|exact|numbers|signature") 5 | -------------------------------------------------------------------------------- /grafana/v11.6.x/common/time.cue: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | // Use UTC/GMT timezone 4 | TimeZoneUtc: "utc" @cuetsy(kind="type") 5 | 6 | // Use the timezone defined by end user web browser 7 | TimeZoneBrowser: "browser" @cuetsy(kind="type") 8 | 9 | // A specific timezone from https://en.wikipedia.org/wiki/Tz_database 10 | TimeZone: TimeZoneUtc | TimeZoneBrowser | string | *"browser" @cuetsy(kind="type") 11 | -------------------------------------------------------------------------------- /grafana/v11.6.x/composable/datagrid/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "DatagridPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | selectedSeries: int32 & >=0 | *0 12 | } @cuetsy(kind="interface") 13 | } 14 | }] 15 | lenses: [] 16 | } 17 | } -------------------------------------------------------------------------------- /grafana/v11.6.x/composable/news/panelcfg.cue: -------------------------------------------------------------------------------- 1 | package grafanaplugin 2 | 3 | { 4 | schemaInterface: "PanelCfg" 5 | name: "NewsPanelCfg" 6 | lineage: { 7 | schemas: [{ 8 | version: [0, 0] 9 | schema: { 10 | Options: { 11 | // empty/missing will default to grafana blog 12 | feedUrl?: string 13 | showImage?: bool | *true 14 | } @cuetsy(kind="interface") 15 | } 16 | }] 17 | lenses: [] 18 | } 19 | } --------------------------------------------------------------------------------