mirror of
https://github.com/grafana/grafana.git
synced 2026-08-14 07:04:57 -05:00
Storage: Dashboard summary builder cleanup (#56665)
This commit is contained in:
+19
-6
@@ -15,23 +15,36 @@ const (
|
||||
// Types: influx, prometheus, testdata, ...
|
||||
StandardKindDataSource = "ds"
|
||||
|
||||
// StandardKindPanel: currently used in two ways :( in search it defines a panel within a dashboard
|
||||
// This is also used to refer to a panel plugin with type: heatmap, timeseries, table, ...
|
||||
// StandardKindPanel: only used for searchV2 right now
|
||||
// Standalone panel is not an object kind yet -- library panel, or nested in dashboard
|
||||
StandardKindPanel = "panel"
|
||||
|
||||
// StandardKindTransform: used to show that a dashboard depends on a set of transformations
|
||||
// NOTE: this should likey be replaced with kind:system/type:transform/uid:joinByField or something like that
|
||||
StandardKindTransform = "transform"
|
||||
|
||||
// StandardKindSVG SVG file support
|
||||
StandardKindSVG = "svg"
|
||||
|
||||
// StandardKindPNG PNG file support
|
||||
StandardKindPNG = "png"
|
||||
|
||||
// StandardKindGeoJSON represents spatial data
|
||||
StandardKindGeoJSON = "geojson"
|
||||
|
||||
// StandardKindQuery early development on panel query library
|
||||
// the kind may need to change to better encapsulate { targets:[], transforms:[] }
|
||||
StandardKindQuery = "query"
|
||||
|
||||
//----------------------------------------
|
||||
// References are referenced from objects
|
||||
//----------------------------------------
|
||||
|
||||
// ExternalEntityReferencePlugin: requires a plugin to be installed
|
||||
ExternalEntityReferencePlugin = "plugin"
|
||||
|
||||
// ExternalEntityReferenceRuntime: frontend runtime requirements
|
||||
ExternalEntityReferenceRuntime = "runtime"
|
||||
|
||||
// ExternalEntityReferenceRuntime_Transformer is a "type" under runtime
|
||||
// UIDs include: joinByField, organize, seriesToColumns, etc
|
||||
ExternalEntityReferenceRuntime_Transformer = "transformer"
|
||||
)
|
||||
|
||||
// ObjectKindInfo describes information needed from the object store
|
||||
|
||||
Reference in New Issue
Block a user