Skip to content

Unified Alerts View

The Unified Alerts View (labeled Alerts in the OpenSearch Dashboards side navigation) brings every alert in the stack into a single screen and is where you create new alert rules. Whether an alert came from an OpenSearch log query or a Prometheus metric, responders see it in one list, filter it the same way, and never have to know which engine produced it.

The Unified Alerts View Alerts tab, showing the severity-colored alert timeline and a list of active alerts from both data sources

TabWhat it showsWhere to read more
AlertsEvery currently firing (and, where available, historical) alert across the selected data sources.Explore Alerts
RulesEvery rule definition (plus the anomaly detectors and forecasters defined elsewhere), with status, severity, type, and health. Also where you create rules.Create Rules · Explore Rules
RoutingThe Prometheus Alertmanager routing tree — which receiver each metric alert is sent to.Routing

The Rules tab lists every alerting rule from both engines side by side. The Type facet classifies each by the data it runs on:

The Rules tab listing OpenSearch and Prometheus rules together, with a Type column tagging each as Log, Metric, APM, or Cluster Metrics, and a Create alert rule button

TypeRuns onWritten in
LogOpenSearch indices — logs and tracesPPL
MetricPrometheus time seriesPromQL
APMTrace/span data (classic monitors)Query DSL
Cluster MetricsOpenSearch cluster health (classic monitors)API calls

The two you create in this view are log rules and metric rules — those are the only types the Create alert rule button builds. See Create Rules to build one. APM and Cluster Metrics rules also appear here but are classic monitors created in the standalone Alerting app.

The catalog also surfaces the anomaly detectors and forecasters you define elsewhere in the stack, so their alerts sit alongside your rules. Set those up in Anomaly Detection and Forecasting.

The Unified Alerts View is the new, default alerting experience. If you’re coming from the older OpenSearch Alerting UI, choose Switch to the classic experience in the banner to return to the standalone Alerting app.

The classic app offers monitor types that the log-rule form doesn’t cover, defined with a visual editor or an extraction (query DSL) query rather than PPL:

Classic typeBest forModern equivalent
Per-queryA single threshold check on aggregation resultsLog rule: stats + custom condition
Per-bucketOne alert per group (e.g. per service)Log rule: stats ... by <field> + custom condition
Per-documentAlerting on individual matching documents, with findings— (use classic)
Per-cluster metricsWatching OpenSearch cluster health via API calls— (use classic)
CompositeChaining monitors with workflow logic to reduce noise— (use classic)

For most observability use cases a PPL log rule is faster to write and read than a per-query or per-bucket monitor. Reach for the classic app when you need per-document, per-cluster metrics, or composite monitors. Rules created either way surface together in this view, tagged by type. For the full classic reference, see the OpenSearch Alerting documentation.