mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 20:32:12 +08:00

* kindsys: Adapt to new PanelCfg schema interface * building locally * Remove Panel prefix in cue files * Regenerate * Update imports * fixup! Merge branch 'remove-panel-prefix' into sdboyer/redundant-panelcfg-prefixes * Fix formatting --------- Co-authored-by: Ryan McKinley <ryantxu@gmail.com> Co-authored-by: Tania B <yalyna.ts@gmail.com>
27 lines
583 B
TypeScript
27 lines
583 B
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 const PanelCfgModelVersion = Object.freeze([0, 0]);
|
|
|
|
export interface Options {
|
|
/**
|
|
* Name of the alertmanager used as a source for alerts
|
|
*/
|
|
alertmanager: string;
|
|
/**
|
|
* Expand all alert groups by default
|
|
*/
|
|
expandAll: boolean;
|
|
/**
|
|
* Comma-separated list of values used to filter alert results
|
|
*/
|
|
labels: string;
|
|
}
|