File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -460,9 +460,17 @@ type DashboardWidgetBillboardGridOptions struct {
460460
461461// DashboardBillboardWidgetThresholdsWithSeriesOverrides represents the thresholds with series overrides configuration for billboard widgets
462462type DashboardBillboardWidgetThresholdsWithSeriesOverrides struct {
463+ Thresholds []DashboardBillboardWidgetThreshold `json:"thresholds,omitempty"`
463464 SeriesOverrides []DashboardBillboardWidgetThresholdSeriesOverride `json:"seriesOverrides,omitempty"`
464465}
465466
467+ // DashboardBillboardWidgetThreshold represents a single threshold configuration
468+ type DashboardBillboardWidgetThreshold struct {
469+ From float64 `json:"from,omitempty"`
470+ To float64 `json:"to,omitempty"`
471+ Severity string `json:"severity,omitempty"`
472+ }
473+
466474// DashboardBillboardWidgetThresholdSeriesOverride represents a single threshold series override
467475type DashboardBillboardWidgetThresholdSeriesOverride struct {
468476 From float64 `json:"from,omitempty"`
You can’t perform that action at this time.
0 commit comments