mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Remove jenny_ts_resources and use jenny_ts_types for all cases
* Unify TS generated files into one jenny
* Add missing imports to versioned files
* Update Parca plugin
* Fix loki
* Use LokiQuery
* Fix pyroscope tests
* Fix prettier
* 😒 fix default pyroscope value name
* Set the LokiQuery
* Update Elasticsearch and TestData
* Missed files from testdata
* Order imports
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
// Code generated - EDITING IS FUTILE. DO NOT EDIT.
|
|
//
|
|
// Generated by:
|
|
// public/app/plugins/gen.go
|
|
// Using jennies:
|
|
// TSTypesJenny
|
|
// PluginTsTypesJenny
|
|
//
|
|
// Run 'make gen-cue' from repository root to regenerate.
|
|
|
|
export interface ArcOption {
|
|
/**
|
|
* The color of the arc.
|
|
*/
|
|
color?: string;
|
|
/**
|
|
* Field from which to get the value. Values should be less than 1, representing fraction of a circle.
|
|
*/
|
|
field?: string;
|
|
}
|
|
|
|
export interface Options {
|
|
edges?: {
|
|
/**
|
|
* Unit for the main stat to override what ever is set in the data frame.
|
|
*/
|
|
mainStatUnit?: string;
|
|
/**
|
|
* Unit for the secondary stat to override what ever is set in the data frame.
|
|
*/
|
|
secondaryStatUnit?: string;
|
|
};
|
|
nodes?: {
|
|
/**
|
|
* Unit for the main stat to override what ever is set in the data frame.
|
|
*/
|
|
mainStatUnit?: string;
|
|
/**
|
|
* Unit for the secondary stat to override what ever is set in the data frame.
|
|
*/
|
|
secondaryStatUnit?: string;
|
|
/**
|
|
* Define which fields are shown as part of the node arc (colored circle around the node).
|
|
*/
|
|
arcs?: Array<ArcOption>;
|
|
};
|
|
}
|