mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* AlertGroups: Generate models.gen.ts from models.cue * Update structure * Update report * Fix filenames * Add missing file
27 lines
588 B
TypeScript
27 lines
588 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 PanelOptions {
|
|
/**
|
|
* 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;
|
|
}
|