docs/dashboards-and-charts/alerts-tab.md
Netdata provides hundreds of pre-configured health alerts to notify you when an anomaly or performance issue affects your node or its applications.
The Raised Alerts tab shows all current alerts in your Room that are in a warning or critical state.
The table provides key details about each active alert:
| Column | Description |
|---|---|
| Alert Name | The name of the alert; click to view alert details. |
| Status | Current state: Warning or Critical. |
| Class | The alert's class (e.g., Latency, Utilization). |
| Type & Component | The system type and component involved. |
| Role | The notification role assigned to the alert. |
| Node Name | The node where the alert was triggered. |
| Silencing Rule | Whether silencing rules are applied. |
| Actions | Options to create silencing rules or ask Netdata Assistant for help. |
Use the gear icon (top right) to control which columns are visible. Sort alerts by clicking on column headers.
Filter the alert list using the right-hand bar:
| Filter Option | Purpose |
|---|---|
| Alert Status | Filter by status (Warning, Critical). |
| Alert Class | Filter by class (e.g., Latency, Utilization). |
| Alert Type & Component | Filter by alert type (e.g., System, Web Server) and component (e.g., CPU, Disk). |
| Alert Role | Filter by the notification role (e.g., Sysadmin, Webmaster). |
| Host Labels | Filter by host labels (e.g., _cloud_instance_region=us-east-1). |
| Node Status | Filter by node availability (Live, Offline). |
| Netdata Version | Filter by the Netdata version. |
| Nodes | Filter by specific nodes. |
Click on an alert name to open the alert details page, which provides:
| Section | Description |
|---|---|
| Latest / Triggered Time | Shows when the alert was last triggered. |
| Description | Includes a detailed explanation of the alert. |
| Netdata Advisor Link | Links to related Netdata Advisor guidance. |
| Triggered Chart Snapshot | Visualizes the chart at the alert’s trigger time. |
| Alert Metadata | Shows node name, chart instance, type, component, and class. |
| Configuration | Displays the alert's configuration parameters. |
| Instance Values | Provides node instance details. |
At the bottom of this page, click View alert page to open a dynamic view where you can:
In the Raised Alerts tab:
From the Alerts tab, you can create new alerts or tune existing ones:
health.d/*.conf files directly for full controlThe Alert Configurations tab shows the configuration of all running alerts in your Room.
:::note
"Running alerts" are alerts attached to metrics that are actively being collected. Pre-configured alerts that do not match your setup may not appear here.
:::
| Column | Description |
|---|---|
| Alert Name | The name of the alert; click to view configuration. |
| Node Name | The node where this configuration applies. |
| Status | Whether the alert is active or silenced. |
| Silencing Rule | Indicates if silencing rules are applied. |
| Actions | Explore configuration or ask the Netdata Assistant. |
Use the gear icon to adjust which columns are displayed.
From the Actions column, click Show Configuration to:
| Action | Outcome |
|---|---|
| Explore by Node | View configurations split by node. |
| View Alert Page | See full alert details, including configuration and history. |
This allows you to investigate:
flowchart TD
A("Metric Collection") --> B("Alert Evaluation")
B --> C("Condition Met?")
C -->|"Yes"| D("Trigger Alert")
C -->|"No"| J("No Alert Triggered")
D --> E("Alert in Raised Alerts Tab")
E --> F("Details and Chart Snapshot")
E --> G("Apply Silencing Rule")
F --> H("Explore Metrics
Run Correlations")
G --> I("No Notification Sent")
%% Style definitions
classDef alert fill:#ffeb3b,stroke:#000000,stroke-width:3px,color:#000000,font-size:14px
classDef neutral fill:#f9f9f9,stroke:#000000,stroke-width:3px,color:#000000,font-size:14px
classDef complete fill:#4caf50,stroke:#000000,stroke-width:3px,color:#000000,font-size:14px
classDef database fill:#2196F3,stroke:#000000,stroke-width:3px,color:#000000,font-size:14px
%% Apply styles
class A,D alert
class B,C,E neutral
class F,H,J complete
class G,I database
:::tip
The diagram above illustrates the flow of alert detection and management, from metric collection to alert evaluation, triggering, and optional silencing.
:::