Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions content/en/api/v1/dashboards/examples.json

Large diffs are not rendered by default.

12 changes: 9 additions & 3 deletions content/en/api/v1/dashboards/widgets.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions content/en/api/v1/notebooks/examples.json

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions data/api/v1/full_spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20326,9 +20326,27 @@ components:
description: Color palette to apply to the widget.
type: string
type: object
TimeseriesWidgetAnomalyDetection:
description: Anomaly detection configuration for a timeseries widget.
properties:
detection_sensitivity:
$ref: "#/components/schemas/TimeseriesWidgetAnomalyDetectionSensitivity"
required:
- detection_sensitivity
type: object
TimeseriesWidgetAnomalyDetectionSensitivity:
description: Sensitivity level for anomaly detection. Use `never_detect` to disable anomaly detection.
enum:
- never_detect
example: never_detect
type: string
x-enum-varnames:
- NEVER_DETECT
TimeseriesWidgetDefinition:
description: The timeseries visualization allows you to display the evolution of one or more metrics, log events, or Indexed Spans over time.
properties:
anomaly_detection:
$ref: "#/components/schemas/TimeseriesWidgetAnomalyDetection"
custom_links:
description: List of custom links.
items:
Expand Down
Loading