mirror of
https://github.com/zaphar/Heracles.git
synced 2025-07-23 12:39:50 -04:00
19 lines
1.2 KiB
YAML
19 lines
1.2 KiB
YAML
--- # A list of dashboards
|
|
- title: Invalid Dasbboard
|
|
graphs: # Each Dashboard can have 1 or more graphs in it.
|
|
- title: Node cpu # Graphs have titles
|
|
query_type: Range # The type of graph. Range for timeseries and Scalar for point in time
|
|
d3_tick_format: "~s" # Default tick format for the graph y axis
|
|
plots: # List of pluts to show on the graph
|
|
- source: http://heimdall:9001 # Prometheus source uri for this plot
|
|
query: 'sum by (instance)(irate(node_cpu_seconds_total{job="nodestats"}[5m])' # syntax error in query
|
|
meta: # metadata for this plot
|
|
name_format: "`${labels.instance}`" # javascript template literal to format the trace name
|
|
fill: tozeroy
|
|
#d3_tick_format: "~%" # d3 tick format override for this plot's yaxis
|
|
#named_axis: "y" # yaxis name to use for this subplots traces
|
|
span: # The span for this range query
|
|
end: now # Where the span ends. RFC3339 format with special handling for the now keyword
|
|
duration: 1d # duration of the span. Uses SI formatting for duration amounts.
|
|
step_duration: 10min # step size for the duration amounts.
|