├── .gitignore ├── LICENSE ├── README.md ├── doc ├── simple_explain.png └── simple_explain.svg ├── examples ├── json_to_python │ ├── README.md │ ├── input.json │ ├── output.py │ └── run.sh └── python_to_json │ ├── README.md │ ├── input_python │ ├── __init__.py │ └── dashboard-one.py │ ├── output_json │ └── dashboard-one.json │ └── run.sh ├── grafana_dashboard ├── __init__.py ├── converter │ ├── __init__.py │ ├── json_to_python.py │ └── python_to_json.py ├── extracted_generated_common_models.py ├── grafana_dashboard.py ├── manual_models.py ├── model │ ├── __init__.py │ ├── alertgroupspanelcfg_types_gen.py │ ├── annotationslistpanelcfg_types_gen.py │ ├── azuremonitordataquery_types_gen.py │ ├── barchartpanelcfg_types_gen.py │ ├── bargaugepanelcfg_types_gen.py │ ├── cloudwatchdataquery_types_gen.py │ ├── dashboard_types_gen.py │ ├── dashboardlistpanelcfg_types_gen.py │ ├── datagridpanelcfg_types_gen.py │ ├── debugpanelcfg_types_gen.py │ ├── elasticsearchdataquery_types_gen.py │ ├── gaugepanelcfg_types_gen.py │ ├── geomappanelcfg_types_gen.py │ ├── grafanapyroscopedataquery_types_gen.py │ ├── heatmappanelcfg_types_gen.py │ ├── histogrampanelcfg_types_gen.py │ ├── librarypanel_types_gen.py │ ├── logspanelcfg_types_gen.py │ ├── lokidataquery_types_gen.py │ ├── newspanelcfg_types_gen.py │ ├── nodegraphpanelcfg_types_gen.py │ ├── parcadataquery_types_gen.py │ ├── piechartpanelcfg_types_gen.py │ ├── playlist_types_gen.py │ ├── preferences_types_gen.py │ ├── prometheusdataquery_types_gen.py │ ├── publicdashboard_types_gen.py │ ├── serviceaccount_types_gen.py │ ├── statetimelinepanelcfg_types_gen.py │ ├── statpanelcfg_types_gen.py │ ├── statushistorypanelcfg_types_gen.py │ ├── tablepanelcfg_types_gen.py │ ├── team_types_gen.py │ ├── tempodataquery_types_gen.py │ ├── testdatadataquery_types_gen.py │ ├── textpanelcfg_types_gen.py │ ├── timeseriespanelcfg_types_gen.py │ └── trendpanelcfg_types_gen.py └── utils.py ├── justfile ├── misc └── model_generation │ ├── manual_patch.patch │ └── raw_generated │ ├── __init__.py │ ├── alertgroupspanelcfg_types_gen.py │ ├── annotationslistpanelcfg_types_gen.py │ ├── azuremonitordataquery_types_gen.py │ ├── barchartpanelcfg_types_gen.py │ ├── bargaugepanelcfg_types_gen.py │ ├── cloudwatchdataquery_types_gen.py │ ├── dashboard_types_gen.py │ ├── dashboardlistpanelcfg_types_gen.py │ ├── datagridpanelcfg_types_gen.py │ ├── debugpanelcfg_types_gen.py │ ├── elasticsearchdataquery_types_gen.py │ ├── gaugepanelcfg_types_gen.py │ ├── geomappanelcfg_types_gen.py │ ├── grafanapyroscopedataquery_types_gen.py │ ├── heatmappanelcfg_types_gen.py │ ├── histogrampanelcfg_types_gen.py │ ├── librarypanel_types_gen.py │ ├── logspanelcfg_types_gen.py │ ├── lokidataquery_types_gen.py │ ├── newspanelcfg_types_gen.py │ ├── nodegraphpanelcfg_types_gen.py │ ├── parcadataquery_types_gen.py │ ├── piechartpanelcfg_types_gen.py │ ├── playlist_types_gen.py │ ├── preferences_types_gen.py │ ├── prometheusdataquery_types_gen.py │ ├── publicdashboard_types_gen.py │ ├── serviceaccount_types_gen.py │ ├── statetimelinepanelcfg_types_gen.py │ ├── statpanelcfg_types_gen.py │ ├── statushistorypanelcfg_types_gen.py │ ├── tablepanelcfg_types_gen.py │ ├── team_types_gen.py │ ├── tempodataquery_types_gen.py │ ├── testdatadataquery_types_gen.py │ ├── textpanelcfg_types_gen.py │ ├── timeseriespanelcfg_types_gen.py │ └── trendpanelcfg_types_gen.py ├── scripts ├── generate_final_model.sh ├── generate_patch.sh └── generate_raw_model.py ├── setup.py ├── test └── README.md └── third_party └── grok └── jsonschema └── v10.0.0 └── kinds ├── composable ├── alertgroups │ └── panelcfg │ │ └── x │ │ └── alertgroupspanelcfg_types_gen.json ├── annotationslist │ └── panelcfg │ │ └── x │ │ └── annotationslistpanelcfg_types_gen.json ├── azuremonitor │ └── dataquery │ │ └── x │ │ └── azuremonitordataquery_types_gen.json ├── barchart │ └── panelcfg │ │ └── x │ │ └── barchartpanelcfg_types_gen.json ├── bargauge │ └── panelcfg │ │ └── x │ │ └── bargaugepanelcfg_types_gen.json ├── cloudwatch │ └── dataquery │ │ └── x │ │ └── cloudwatchdataquery_types_gen.json ├── dashboardlist │ └── panelcfg │ │ └── x │ │ └── dashboardlistpanelcfg_types_gen.json ├── datagrid │ └── panelcfg │ │ └── x │ │ └── datagridpanelcfg_types_gen.json ├── debug │ └── panelcfg │ │ └── x │ │ └── debugpanelcfg_types_gen.json ├── elasticsearch │ └── dataquery │ │ └── x │ │ └── elasticsearchdataquery_types_gen.json ├── gauge │ └── panelcfg │ │ └── x │ │ └── gaugepanelcfg_types_gen.json ├── geomap │ └── panelcfg │ │ └── x │ │ └── geomappanelcfg_types_gen.json ├── grafanapyroscope │ └── dataquery │ │ └── x │ │ └── grafanapyroscopedataquery_types_gen.json ├── heatmap │ └── panelcfg │ │ └── x │ │ └── heatmappanelcfg_types_gen.json ├── histogram │ └── panelcfg │ │ └── x │ │ └── histogrampanelcfg_types_gen.json ├── logs │ └── panelcfg │ │ └── x │ │ └── logspanelcfg_types_gen.json ├── loki │ └── dataquery │ │ └── x │ │ └── lokidataquery_types_gen.json ├── news │ └── panelcfg │ │ └── x │ │ └── newspanelcfg_types_gen.json ├── nodegraph │ └── panelcfg │ │ └── x │ │ └── nodegraphpanelcfg_types_gen.json ├── parca │ └── dataquery │ │ └── x │ │ └── parcadataquery_types_gen.json ├── piechart │ └── panelcfg │ │ └── x │ │ └── piechartpanelcfg_types_gen.json ├── prometheus │ └── dataquery │ │ └── x │ │ └── prometheusdataquery_types_gen.json ├── stat │ └── panelcfg │ │ └── x │ │ └── statpanelcfg_types_gen.json ├── statetimeline │ └── panelcfg │ │ └── x │ │ └── statetimelinepanelcfg_types_gen.json ├── statushistory │ └── panelcfg │ │ └── x │ │ └── statushistorypanelcfg_types_gen.json ├── table │ └── panelcfg │ │ └── x │ │ └── tablepanelcfg_types_gen.json ├── tempo │ └── dataquery │ │ └── x │ │ └── tempodataquery_types_gen.json ├── testdata │ └── dataquery │ │ └── x │ │ └── testdatadataquery_types_gen.json ├── text │ └── panelcfg │ │ └── x │ │ └── textpanelcfg_types_gen.json ├── timeseries │ └── panelcfg │ │ └── x │ │ └── timeseriespanelcfg_types_gen.json ├── trend │ └── panelcfg │ │ └── x │ │ └── trendpanelcfg_types_gen.json └── xychart │ └── panelcfg │ └── x │ └── xychartpanelcfg_types_gen.json └── core ├── dashboard └── x │ └── dashboard_types_gen.json ├── librarypanel └── x │ └── librarypanel_types_gen.json ├── playlist └── x │ └── playlist_types_gen.json ├── preferences └── x │ └── preferences_types_gen.json ├── publicdashboard └── x │ └── publicdashboard_types_gen.json ├── serviceaccount └── x │ └── serviceaccount_types_gen.json └── team └── x └── team_types_gen.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/README.md -------------------------------------------------------------------------------- /doc/simple_explain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/doc/simple_explain.png -------------------------------------------------------------------------------- /doc/simple_explain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/doc/simple_explain.svg -------------------------------------------------------------------------------- /examples/json_to_python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/examples/json_to_python/README.md -------------------------------------------------------------------------------- /examples/json_to_python/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/examples/json_to_python/input.json -------------------------------------------------------------------------------- /examples/json_to_python/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/examples/json_to_python/output.py -------------------------------------------------------------------------------- /examples/json_to_python/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/examples/json_to_python/run.sh -------------------------------------------------------------------------------- /examples/python_to_json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/examples/python_to_json/README.md -------------------------------------------------------------------------------- /examples/python_to_json/input_python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/python_to_json/input_python/dashboard-one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/examples/python_to_json/input_python/dashboard-one.py -------------------------------------------------------------------------------- /examples/python_to_json/output_json/dashboard-one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/examples/python_to_json/output_json/dashboard-one.json -------------------------------------------------------------------------------- /examples/python_to_json/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/examples/python_to_json/run.sh -------------------------------------------------------------------------------- /grafana_dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.1" 2 | -------------------------------------------------------------------------------- /grafana_dashboard/converter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grafana_dashboard/converter/json_to_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/converter/json_to_python.py -------------------------------------------------------------------------------- /grafana_dashboard/converter/python_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/converter/python_to_json.py -------------------------------------------------------------------------------- /grafana_dashboard/extracted_generated_common_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/extracted_generated_common_models.py -------------------------------------------------------------------------------- /grafana_dashboard/grafana_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/grafana_dashboard.py -------------------------------------------------------------------------------- /grafana_dashboard/manual_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/manual_models.py -------------------------------------------------------------------------------- /grafana_dashboard/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grafana_dashboard/model/alertgroupspanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/alertgroupspanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/annotationslistpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/annotationslistpanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/azuremonitordataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/azuremonitordataquery_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/barchartpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/barchartpanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/bargaugepanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/bargaugepanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/cloudwatchdataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/cloudwatchdataquery_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/dashboard_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/dashboard_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/dashboardlistpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/dashboardlistpanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/datagridpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/datagridpanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/debugpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/debugpanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/elasticsearchdataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/elasticsearchdataquery_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/gaugepanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/gaugepanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/geomappanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/geomappanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/grafanapyroscopedataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/grafanapyroscopedataquery_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/heatmappanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/heatmappanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/histogrampanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/histogrampanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/librarypanel_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/librarypanel_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/logspanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/logspanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/lokidataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/lokidataquery_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/newspanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/newspanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/nodegraphpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/nodegraphpanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/parcadataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/parcadataquery_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/piechartpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/piechartpanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/playlist_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/playlist_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/preferences_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/preferences_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/prometheusdataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/prometheusdataquery_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/publicdashboard_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/publicdashboard_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/serviceaccount_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/serviceaccount_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/statetimelinepanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/statetimelinepanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/statpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/statpanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/statushistorypanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/statushistorypanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/tablepanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/tablepanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/team_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/team_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/tempodataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/tempodataquery_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/testdatadataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/testdatadataquery_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/textpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/textpanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/timeseriespanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/timeseriespanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/model/trendpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/model/trendpanelcfg_types_gen.py -------------------------------------------------------------------------------- /grafana_dashboard/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/grafana_dashboard/utils.py -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/justfile -------------------------------------------------------------------------------- /misc/model_generation/manual_patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/manual_patch.patch -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/alertgroupspanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/alertgroupspanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/annotationslistpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/annotationslistpanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/azuremonitordataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/azuremonitordataquery_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/barchartpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/barchartpanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/bargaugepanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/bargaugepanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/cloudwatchdataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/cloudwatchdataquery_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/dashboard_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/dashboard_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/dashboardlistpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/dashboardlistpanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/datagridpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/datagridpanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/debugpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/debugpanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/elasticsearchdataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/elasticsearchdataquery_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/gaugepanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/gaugepanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/geomappanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/geomappanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/grafanapyroscopedataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/grafanapyroscopedataquery_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/heatmappanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/heatmappanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/histogrampanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/histogrampanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/librarypanel_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/librarypanel_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/logspanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/logspanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/lokidataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/lokidataquery_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/newspanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/newspanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/nodegraphpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/nodegraphpanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/parcadataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/parcadataquery_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/piechartpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/piechartpanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/playlist_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/playlist_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/preferences_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/preferences_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/prometheusdataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/prometheusdataquery_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/publicdashboard_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/publicdashboard_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/serviceaccount_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/serviceaccount_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/statetimelinepanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/statetimelinepanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/statpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/statpanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/statushistorypanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/statushistorypanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/tablepanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/tablepanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/team_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/team_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/tempodataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/tempodataquery_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/testdatadataquery_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/testdatadataquery_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/textpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/textpanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/timeseriespanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/timeseriespanelcfg_types_gen.py -------------------------------------------------------------------------------- /misc/model_generation/raw_generated/trendpanelcfg_types_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/misc/model_generation/raw_generated/trendpanelcfg_types_gen.py -------------------------------------------------------------------------------- /scripts/generate_final_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/scripts/generate_final_model.sh -------------------------------------------------------------------------------- /scripts/generate_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/scripts/generate_patch.sh -------------------------------------------------------------------------------- /scripts/generate_raw_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/scripts/generate_raw_model.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/setup.py -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/test/README.md -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/alertgroups/panelcfg/x/alertgroupspanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/alertgroups/panelcfg/x/alertgroupspanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/annotationslist/panelcfg/x/annotationslistpanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/annotationslist/panelcfg/x/annotationslistpanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/azuremonitor/dataquery/x/azuremonitordataquery_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/azuremonitor/dataquery/x/azuremonitordataquery_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/barchart/panelcfg/x/barchartpanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/barchart/panelcfg/x/barchartpanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/bargauge/panelcfg/x/bargaugepanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/bargauge/panelcfg/x/bargaugepanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/cloudwatch/dataquery/x/cloudwatchdataquery_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/cloudwatch/dataquery/x/cloudwatchdataquery_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/dashboardlist/panelcfg/x/dashboardlistpanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/dashboardlist/panelcfg/x/dashboardlistpanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/datagrid/panelcfg/x/datagridpanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/datagrid/panelcfg/x/datagridpanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/debug/panelcfg/x/debugpanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/debug/panelcfg/x/debugpanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/elasticsearch/dataquery/x/elasticsearchdataquery_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/elasticsearch/dataquery/x/elasticsearchdataquery_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/gauge/panelcfg/x/gaugepanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/gauge/panelcfg/x/gaugepanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/geomap/panelcfg/x/geomappanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/geomap/panelcfg/x/geomappanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/grafanapyroscope/dataquery/x/grafanapyroscopedataquery_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/grafanapyroscope/dataquery/x/grafanapyroscopedataquery_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/heatmap/panelcfg/x/heatmappanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/heatmap/panelcfg/x/heatmappanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/histogram/panelcfg/x/histogrampanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/histogram/panelcfg/x/histogrampanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/logs/panelcfg/x/logspanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/logs/panelcfg/x/logspanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/loki/dataquery/x/lokidataquery_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/loki/dataquery/x/lokidataquery_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/news/panelcfg/x/newspanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/news/panelcfg/x/newspanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/nodegraph/panelcfg/x/nodegraphpanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/nodegraph/panelcfg/x/nodegraphpanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/parca/dataquery/x/parcadataquery_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/parca/dataquery/x/parcadataquery_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/piechart/panelcfg/x/piechartpanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/piechart/panelcfg/x/piechartpanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/prometheus/dataquery/x/prometheusdataquery_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/prometheus/dataquery/x/prometheusdataquery_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/stat/panelcfg/x/statpanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/stat/panelcfg/x/statpanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/statetimeline/panelcfg/x/statetimelinepanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/statetimeline/panelcfg/x/statetimelinepanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/statushistory/panelcfg/x/statushistorypanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/statushistory/panelcfg/x/statushistorypanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/table/panelcfg/x/tablepanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/table/panelcfg/x/tablepanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/tempo/dataquery/x/tempodataquery_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/tempo/dataquery/x/tempodataquery_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/testdata/dataquery/x/testdatadataquery_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/testdata/dataquery/x/testdatadataquery_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/text/panelcfg/x/textpanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/text/panelcfg/x/textpanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/timeseries/panelcfg/x/timeseriespanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/timeseries/panelcfg/x/timeseriespanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/trend/panelcfg/x/trendpanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/trend/panelcfg/x/trendpanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/composable/xychart/panelcfg/x/xychartpanelcfg_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/composable/xychart/panelcfg/x/xychartpanelcfg_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/core/dashboard/x/dashboard_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/core/dashboard/x/dashboard_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/core/librarypanel/x/librarypanel_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/core/librarypanel/x/librarypanel_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/core/playlist/x/playlist_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/core/playlist/x/playlist_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/core/preferences/x/preferences_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/core/preferences/x/preferences_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/core/publicdashboard/x/publicdashboard_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/core/publicdashboard/x/publicdashboard_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/core/serviceaccount/x/serviceaccount_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/core/serviceaccount/x/serviceaccount_types_gen.json -------------------------------------------------------------------------------- /third_party/grok/jsonschema/v10.0.0/kinds/core/team/x/team_types_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzyzcjy/grafana_dashboard_python/HEAD/third_party/grok/jsonschema/v10.0.0/kinds/core/team/x/team_types_gen.json --------------------------------------------------------------------------------