Skip to main content

Panels

Panels display aggregated data visualizations above the main table. Each panel runs a SQL query against the view's query results and renders the data as a chart, gauge, or summary.

Panel Definition

Panels are defined in spec.panels:

panels:
- name: Pod Count # Panel name
description: Total pods # Optional description
type: gauge # Panel type
query: SELECT COUNT(*) AS value FROM pods

Common Properties

All panel types support these properties:

PropertyTypeDescription
namestringPanel name (required)
descriptionstringOptional description
typestringPanel type (required)
querystringSQL query against view data (required)
gauge, number, piechart, bargauge, timeseriesobjectType-specific options

Panel Types