mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 10:50:37 -06:00
20 lines
573 B
Cheetah
20 lines
573 B
Cheetah
// This file is autogenerated. DO NOT EDIT.
|
|
// Generated by gen.go
|
|
// Run `make gen-jsonnet` from repository root to regenerate.
|
|
|
|
local grafana = import "grizzly/grafana.libsonnet";
|
|
local resource = import "grizzly/resource.libsonnet";
|
|
local dashboard = grafana.dashboard;
|
|
|
|
{
|
|
folders: [grafana.folder.new('dev-dashboards', 'dev-dashboards')],
|
|
dashboards: [{{range .Dashboards}}
|
|
dashboard.new('{{.Name}}', import '../dev-dashboards/{{.Path}}') +
|
|
resource.addMetadata('folder', 'dev-dashboards') +
|
|
{
|
|
spec+: {
|
|
id: 0,
|
|
}
|
|
},{{end}}
|
|
],
|
|
} |