Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/example/docker-compose/grafana/dashboards/template.jsonnet
4096 views
local agentDashboards = import 'grafana-agent-mixin/dashboards.libsonnet';
local agentDebugging = import 'grafana-agent-mixin/debugging.libsonnet';

local result = agentDashboards + agentDebugging {
  files: {
    [name]: $.grafanaDashboards[name] {
      // Use local timezone for local testing
      timezone: '',
    }
    for name in std.objectFields($.grafanaDashboards)
  },
};

result.files