diff --git a/docs/Alerts & Notifications/Alert Configuration Reference.mdx b/docs/Alerts & Notifications/Alert Configuration Reference.mdx index 405f1f83a8..fa1f0dd481 100644 --- a/docs/Alerts & Notifications/Alert Configuration Reference.mdx +++ b/docs/Alerts & Notifications/Alert Configuration Reference.mdx @@ -91,11 +91,12 @@ crit: $this > (($status == $CRITICAL) ? (75) : (85)) ### Task 2: Disable Unwanted Alerts -| Method | Use Case | Configuration File | How To | -| ----------------------- | ----------------------------------- | ------------------ | ---------------------------------------- | -| Disable all alerts | Testing/maintenance | netdata.conf | Set `enabled = no` in `[health]` section | -| Disable specific alerts | Remove noisy alerts | netdata.conf | Set `enabled alarms = !alert_name *` | -| Silence notifications | Keep monitoring, stop notifications | Alert config file | Change `to: silent` | +| Method | Use Case | Configuration File | How To | +|-----------------------------|-------------------------------------|--------------------|-----------------------------------------------------| +| Disable all alerts | Testing/maintenance | netdata.conf | Set `enabled = no` in `[health]` section | +| Disable specific alerts | Remove noisy alerts | netdata.conf | Set `enabled alarms = !alert_name *` | +| Enable only specific alerts | Load only a chosen set of alerts | netdata.conf | Set `enabled alarms = alert_name` (no trailing `*`) | +| Silence notifications | Keep monitoring, stop notifications | Alert config file | Change `to: silent` | ### Task 3: Create a Simple Alert @@ -148,7 +149,7 @@ sudo killall -USR2 netdata **Configuration Locations:** | Location | Purpose | Common Tasks | How to Edit | -| --------------------------------- | ---------------------------- | -------------------------------------------------------------------------------------------------------- | ---------------------------------------- | +|-----------------------------------|------------------------------|----------------------------------------------------------------------------------------------------------|------------------------------------------| | `netdata.conf` `[health]` section | Global health settings | • Disable all monitoring (`enabled = no`)
• Disable specific alerts
• Change check frequencies | Edit directly or use `edit-config` | | `health.d/*.conf` files | Individual alert definitions | • Modify thresholds
• Change notification recipients
• Silence alerts (`to: silent`) | Use `edit-config health.d/filename.conf` | @@ -227,6 +228,21 @@ Do **not** place `*` between exclusions (`!alert1 * !alert2 *` is incorrect — You can also [edit the file where the alert is defined](#how-to-edit-health-configuration-files), comment out its definition, and [reload Netdata's health configuration](#how-to-reload-health-configuration). +#### Enable Only Specific Alerts (Whitelist) + +**Use Case:** Enable only a chosen set of alerts and disable everything else + +To enable only specific alerts, list their names in `enabled alarms` **without** a trailing `*` wildcard. Because [simple patterns](/docs/developer-and-contributor-corner/libnetdata/simple-patterns) deny anything that is not explicitly matched, only the listed alerts load; every other alert is disabled. + +```conf +[health] + enabled alarms = oom_kill disk_space_usage +``` + +Because there is no trailing `*`, any alert added by a future Netdata upgrade will not be in this list and will stay disabled until you add it explicitly — unlike the exclusion form above, where the trailing `*` keeps new alerts enabled by default. + +Restart your Netdata Agent after changing `netdata.conf` (`netdatacli reload-health` reloads health configuration files, but does not reload `netdata.conf`). + #### Silence Individual Alert Notifications **Use Case:** Keep monitoring active but stop notifications @@ -248,7 +264,7 @@ This action requires that you [reload Netdata's health configuration](#how-to-re **Use Case:** Scheduled maintenance or dynamic control | Scenario | Solution | Method | -| ---------------------------------- | ------------------------------------------ | ---------------------------------- | +|------------------------------------|--------------------------------------------|------------------------------------| | Disable alerts during backups | Use health management API | API calls without config changes | | Suppress notifications temporarily | Keep checks running, silence notifications | API control of notification system | @@ -298,7 +314,7 @@ lookup: average -1m percentage of used **Step 3: Understand Each Component** | Line | Purpose | This Example | -| ----------- | ----------------------------------------- | ----------------------------------------------------- | +|-------------|-------------------------------------------|-------------------------------------------------------| | `alarm` | Entity name (alphanumeric, `.`, `_` only) | `ram_usage` | | `on` | Chart to monitor | `system.ram` | | `lookup` | How to process metrics | Average last 1 minute, percentage of `used` dimension | @@ -336,7 +352,7 @@ Complete syntax reference for all alert configuration options. Use this section ### Entity Types Overview | Type | Label | Purpose | Example Use Case | -| ------------- | ----------- | -------------------------------- | ------------------------------ | +|---------------|-------------|----------------------------------|--------------------------------| | **Alerts** | `alarm:` | Attached to specific charts | Monitor specific server's CPU | | **Templates** | `template:` | Apply to all charts of a context | Monitor all network interfaces | @@ -375,7 +391,7 @@ For complete details on configuration loading order and precedence rules, see [A ### Complete Configuration Reference | line | required | functionality | -| --------------------------------------------------- | --------------- | ------------------------------------------------------------------------------------ | +|-----------------------------------------------------|-----------------|--------------------------------------------------------------------------------------| | [`alarm`/`template`](#alert-line-alarm-or-template) | yes | Name of the alert/template | | [`on`](#alert-line-on) | yes | The chart this alert should attach to | | [`class`](#alert-line-class) | no | The general alert classification | @@ -469,7 +485,7 @@ class: Latency **Available Classes:** | Class | Use Case | -| ----------- | ------------------------------ | +|-------------|--------------------------------| | Errors | Error rate monitoring | | Latency | Response time issues | | Utilization | Resource usage monitoring | @@ -494,7 +510,7 @@ type: Database **Available Types:** | Type | Description | -| --------------- | ---------------------------------------------------------------------------------------------- | +|-----------------|------------------------------------------------------------------------------------------------| | Ad Filtering | Services related to Ad Filtering (like pi-hole) | | Certificates | Certificate monitoring related | | Cgroups | Alerts for CPU and memory usage of control groups | @@ -554,35 +570,35 @@ lookup: METHOD(GROUPING OPTIONS) AFTER [at BEFORE] [every DURATION] [OPTIONS] [o **Required Parameters:** | Parameter | Description | Example | -| --------- | ------------------------------------------------------------------ | ----------------------- | +|-----------|--------------------------------------------------------------------|-------------------------| | `METHOD` | [Grouping method](/docs/developer-and-contributor-corner/rest-api/queries#grouping-methods) | `average`, `min`, `max` | | `AFTER` | How far back to look (negative number) | `-1m`, `-1h`, `-1d` | **Optional Parameters:** -| Parameter | Purpose | Details | -| ------------------ | --------------------------- | -------------------------------------------------------------------------- | -| `GROUPING OPTIONS` | Conditional processing | `CONDITION VALUE` where condition is `!=`, `=`, `==`, `\<=`, `<`, `>`, `>=` | -| `at BEFORE` | End of lookup timeframe | Default is 0 (now) | -| `every DURATION` | Update frequency | Supports `s`, `m`, `h`, `d` units | -| `OPTIONS` | Processing modifiers | See options table below | +| Parameter | Purpose | Details | +|--------------------|-----------------------------|--------------------------------------------------------------------------------------------| +| `GROUPING OPTIONS` | Conditional processing | `CONDITION VALUE` where condition is `!=`, `=`, `==`, `\<=`, `<`, `>`, `>=` | +| `at BEFORE` | End of lookup timeframe | Default is 0 (now) | +| `every DURATION` | Update frequency | Supports `s`, `m`, `h`, `d` units | +| `OPTIONS` | Processing modifiers | See options table below | | `of DIMENSIONS` | Which dimensions to include | Comma- or pipe-separated list, supports patterns; prefer `user,system` over `user, system` | **Processing Options:** -| Option | Effect | -| ------------- | -------------------------------------------------------------------------------------------------------- | -| `percentage` | Calculate percentage of selected dimensions over total | -| `absolute` | Turn all sample values positive | -| `min` | Return minimum of all dimensions after time-aggregation | -| `max` | Return maximum of all dimensions after time-aggregation | -| `average` | Return average of all dimensions after time-aggregation | -| `sum` | Return sum of all dimensions (default) | -| `min2max` | Return delta between min and max of dimensions | -| `unaligned` | Prevent shifting query window to multiples of duration | -| `anomaly-bit` | Query anomaly-rate percentages (0-100) instead of raw values, enabling anomaly-rate-based alerting | -| `match-ids` | Match dimensions by IDs (default) | -| `match-names` | Match dimensions by names | +| Option | Effect | +|---------------|----------------------------------------------------------------------------------------------------| +| `percentage` | Calculate percentage of selected dimensions over total | +| `absolute` | Turn all sample values positive | +| `min` | Return minimum of all dimensions after time-aggregation | +| `max` | Return maximum of all dimensions after time-aggregation | +| `average` | Return average of all dimensions after time-aggregation | +| `sum` | Return sum of all dimensions (default) | +| `min2max` | Return delta between min and max of dimensions | +| `unaligned` | Prevent shifting query window to multiples of duration | +| `anomaly-bit` | Query anomaly-rate percentages (0-100) instead of raw values, enabling anomaly-rate-based alerting | +| `match-ids` | Match dimensions by IDs (default) | +| `match-names` | Match dimensions by names | When `anomaly-bit` is used, each data point returns the anomaly rate as a percentage from 0 to 100. At native resolution this is typically 0 (normal) or 100 (anomalous), while aggregated or lower-resolution data can yield intermediate values such as 12.5. For more details and practical examples, see the [ML anomaly detection documentation](/docs/netdata-ai/anomaly-detection). @@ -719,7 +735,7 @@ delay: [[[up U] [down D] multiplier M] max X] **Parameters:** | Parameter | Purpose | Default | -| -------------- | ------------------------------------------------------------ | ------------- | +|----------------|--------------------------------------------------------------|---------------| | `up U` | Delay for status increases (CLEAR→WARNING, WARNING→CRITICAL) | 0 | | `down D` | Delay for status decreases (CRITICAL→WARNING, WARNING→CLEAR) | 0 | | `multiplier M` | Multiplies U and D when alert changes state during delay | 1.0 | @@ -734,7 +750,7 @@ delay: up 10s down 15m multiplier 2 max 1h Starting at `00:00:00` with CLEAR status: | Time | New Status | Delay Applied | Notification At | Reason | -| -------- | ---------- | -------------- | --------------- | ----------------------------------------- | +|----------|------------|----------------|-----------------|-------------------------------------------| | 00:00:01 | WARNING | `up 10s` | 00:00:11 | First state switch | | 00:00:05 | CLEAR | `down 15m x2` | 00:30:05 | Alert changed during delay, so multiplied | | 00:00:06 | WARNING | `up 10s x2 x2` | 00:00:26 | Multiplied twice | @@ -750,7 +766,7 @@ repeat: [off] [warning DURATION] [critical DURATION] **Options:** | Option | Effect | -| ------------------- | -------------------------------------------------------- | +|---------------------|----------------------------------------------------------| | `off` | Turns off repeating for this alert | | `warning DURATION` | Repeat interval for WARNING state (use `0s` to disable) | | `critical DURATION` | Repeat interval for CRITICAL state (use `0s` to disable) | @@ -850,7 +866,7 @@ summary: Available Ram **Variable Support:** | Variable | Replaced With | -| --------------------- | ---------------------------- | +|-----------------------|------------------------------| | `${family}` | Family instance (e.g., eth0) | | `${label:LABEL_NAME}` | Chart label value | @@ -879,7 +895,7 @@ info: Percentage of estimated amount of RAM available for userspace processes, w **Variable Support:** | Variable | Replaced With | -| --------------------- | ---------------------------- | +|-----------------------|------------------------------| | `${family}` | Family instance (e.g., eth0) | | `${label:LABEL_NAME}` | Chart label value | @@ -920,7 +936,7 @@ How to write calculations and use variables in your alert definitions. Essential **Supported Operators:** | Type | Operators | Result | -| ---------- | -------------------------------------- | ------------------------- | +|------------|----------------------------------------|---------------------------| | Arithmetic | `+`, `-`, `*`, `/` | Numeric values | | Comparison | `<`, `==`, `\<=`, `<>`, `!=`, `>`, `>=` | `1` (true) or `0` (false) | | Logical | `&&`, `||`,`!`,`AND`,`OR`,`NOT` | `1` (true) or `0` (false) | @@ -933,7 +949,7 @@ How to write calculations and use variables in your alert definitions. Essential **Special Values:** | Value | Purpose | Example Use | -| ----- | ------------------------------------- | -------------- | +|-------|---------------------------------------|----------------| | `nan` | Not a number (database lookup failed) | `$this != nan` | | `inf` | Infinite (division by zero) | `$this != inf` | @@ -957,7 +973,7 @@ crit: $this > (($status == $CRITICAL) ? (85) : (95)) **How This Works:** | Alert State | Triggers At | Clears At | Explanation | -| ----------- | ----------- | --------- | ----------------------------------------------------------------- | +|-------------|-------------|-----------|-------------------------------------------------------------------| | Warning | 85% CPU | 75% CPU | Creates 10% buffer - CPU must drop below 75% to clear warning | | Critical | 95% CPU | 85% CPU | Creates 10% buffer - CPU must drop below 85% to return to warning | @@ -997,7 +1013,7 @@ Although the `alarm_variables` link shows variables for a particular chart, the **Special Chart Variables:** | Variable | Contains | -| ---------------------- | --------------------------------------------- | +|------------------------|-----------------------------------------------| | `$last_collected_t` | Unix timestamp of last data collection | | `$collected_total_raw` | Sum of all dimensions (last collected values) | | `$update_every` | Update frequency of the chart | @@ -1027,14 +1043,14 @@ Although the `alarm_variables` link shows variables for a particular chart, the Several stock health configurations use host variables to reference dimensions from **other charts** in their `calc`, `warn`, and `crit` expressions. -| Health entity | File | Expression | Cross-chart reference | -|---------------|------|------------|-----------------------| -| `30min_ram_swapped_out` | `health.d/swap.conf` | `calc: $this / 1024 * 100 / ( $system.ram.used + $system.ram.cached + $system.ram.free )` | `$system.ram.*` from within an alert on the `mem.swapio` chart | -| `ram_available` | `health.d/ram.conf` | `calc: $avail * 100 / ($system.ram.used + $system.ram.cached + $system.ram.free + $system.ram.buffers)` | `$system.ram.*` from within an alert on the `mem.available` chart | -| `system_clock_sync_state` | `health.d/timex.conf` | `warn: $system.uptime.uptime > 17 * 60 AND $this == 0` | `$system.uptime.uptime` from within an alert on the `system.clock_sync_state` chart | -| `audit_backlog_utilization` | `health.d/audit.conf` | `warn: $this > 50 AND $audit.failure.panic == 1` | `$audit.failure.panic` from within an alert on the `audit.backlog_utilization` chart | -| `10s_ip_tcp_resets_sent` | `health.d/tcp_resets.conf` | `warn: $netdata.uptime.uptime > (1 * 60) AND ...` | `$netdata.uptime.uptime` from within an alert on the `ip.tcphandshake` chart | -| `streaming_never_connected` | `health.d/streaming.conf` | `warn: $netdata.uptime.uptime > 30 * 60 AND $this > 0` | `$netdata.uptime.uptime` from within an alert on the `netdata.streaming_inbound` chart | +| Health entity | File | Expression | Cross-chart reference | +|-----------------------------|----------------------------|---------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------| +| `30min_ram_swapped_out` | `health.d/swap.conf` | `calc: $this / 1024 * 100 / ( $system.ram.used + $system.ram.cached + $system.ram.free )` | `$system.ram.*` from within an alert on the `mem.swapio` chart | +| `ram_available` | `health.d/ram.conf` | `calc: $avail * 100 / ($system.ram.used + $system.ram.cached + $system.ram.free + $system.ram.buffers)` | `$system.ram.*` from within an alert on the `mem.available` chart | +| `system_clock_sync_state` | `health.d/timex.conf` | `warn: $system.uptime.uptime > 17 * 60 AND $this == 0` | `$system.uptime.uptime` from within an alert on the `system.clock_sync_state` chart | +| `audit_backlog_utilization` | `health.d/audit.conf` | `warn: $this > 50 AND $audit.failure.panic == 1` | `$audit.failure.panic` from within an alert on the `audit.backlog_utilization` chart | +| `10s_ip_tcp_resets_sent` | `health.d/tcp_resets.conf` | `warn: $netdata.uptime.uptime > (1 * 60) AND ...` | `$netdata.uptime.uptime` from within an alert on the `ip.tcphandshake` chart | +| `streaming_never_connected` | `health.d/streaming.conf` | `warn: $netdata.uptime.uptime > 30 * 60 AND $this > 0` | `$netdata.uptime.uptime` from within an alert on the `netdata.streaming_inbound` chart | ##### Prometheus Collector Variables @@ -1072,7 +1088,7 @@ URL-encode the chart ID only in API query parameters. In alert expressions, use #### Special Variables | Variable | Contains | Usage | -| --------- | ---------------------- | -------------------------------------- | +|-----------|------------------------|----------------------------------------| | `$this` | Current alert value | Result of `calc` line or current alert | | `$status` | Current alert status | Compare with status constants | | `$now` | Current unix timestamp | Time-based calculations | @@ -1080,7 +1096,7 @@ URL-encode the chart ID only in API query parameters. In alert expressions, use **Alert Status Constants:** | Constant | Numeric Value | Usage | -| ---------------- | ------------- | ------------------------------ | +|------------------|---------------|--------------------------------| | `$REMOVED` | -2 | Alert deleted (SIGUSR2 reload) | | `$UNINITIALIZED` | -1 | Alert not initialized | | `$UNDEFINED` | 0 | Calculation failed | @@ -1150,7 +1166,7 @@ template: apache_last_collected_secs **How It Works:** | Component | Purpose | This Example | -| ---------- | ------------------------------- | ---------------------------- | +|------------|---------------------------------|------------------------------| | `template` | Applies to all Apache servers | `apache_last_collected_secs` | | `on` | Chart context to monitor | `apache.requests` | | `calc` | Time since last data collection | `$now - $last_collected_t` | @@ -1188,7 +1204,7 @@ template: disk_full_percent **How It Works:** | Component | Purpose | This Example | -| ----------- | -------------------------- | -------------------------------------- | +|-------------|----------------------------|----------------------------------------| | `template` | Applies to all disks | `disk_full_percent` | | `on` | Chart context | `disk.space` | | `calc` | Calculate usage percentage | `$used * 100 / ($avail + $used)` | @@ -1234,7 +1250,7 @@ template: disk_full_percent **How It Works:** | Step | Purpose | Calculation | -| ---- | -------------------- | -------------------------------------------------- | +|------|----------------------|----------------------------------------------------| | 1 | Calculate fill rate | `(space_30min_ago - current_space) / 1800_seconds` | | 2 | Predict time to full | `current_available / fill_rate / 3600` | @@ -1265,7 +1281,7 @@ template: 30min_packet_drops **How It Works:** | Component | Purpose | This Example | -| ---------- | --------------------------------- | ----------------------------- | +|------------|-----------------------------------|-------------------------------| | `template` | Applies to all network interfaces | `30min_packet_drops` | | `lookup` | Sum drops over 30 minutes | `sum -30m unaligned absolute` | | `crit` | Any drops trigger critical | `$this > 0` | @@ -1309,7 +1325,7 @@ lookup: mean -10s of user **How It Works:** | Alert | Purpose | Calculation | -| ----------------- | --------------------------- | ---------------------------------- | +|-------------------|-----------------------------|------------------------------------| | `cpu_user_mean` | Calculate average CPU usage | Mean over 60 seconds | | `cpu_user_stddev` | Calculate variability | Standard deviation over 60 seconds | | `cpu_user_zscore` | Detect anomalies | `(current - mean) / stddev` | @@ -1346,7 +1362,7 @@ template: ml_5min_cpu_chart **How It Works:** | Component | Purpose | This Example | -| ------------- | ------------------------------------------ | ----------------------------------- | +|---------------|--------------------------------------------|-------------------------------------| | `lookup` | Average anomaly rate across CPU dimensions | 5-minute rolling window | | Hysteresis | Prevent alert flapping | Warning: 20%→5%, Critical: 100%→20% | | `anomaly-bit` | ML-generated anomaly indicators | 0 (normal) or 100 (anomalous) | @@ -1403,7 +1419,7 @@ lookup: average -10s of health_status Use when the metric acts as a failure indicator — the value is 0 normally and 1 when a failure occurs. `average` over a short window naturally reflects any non-zero sample: if the metric was 1 at any point, the average will be greater than 0. This is the same pattern used by Netdata's Docker container health monitoring (`average -10s of unhealthy`, `warn: $this > 0`). -:::note +:::note Do not use `sum` for boolean 0/1 gauges. While `sum -5m unaligned absolute` would technically detect failures (any non-zero sample makes the sum positive), `sum` produces a count of seconds in state 1 rather than an intuitive threshold. Use `sum` only for counter/cumulative metrics like packet drops or error totals — see [Example 4: Network Packet Drops](#example-4-network-packet-drops) for a correct `sum` use case. @@ -1473,13 +1489,13 @@ Use to check only the current value without time-window aggregation. The `calc: **Comparison: Which Method to Use** -| Intent | Method | Lookup / Calc | Condition | Fires When | -| ------------------------------------------------------- | ------ | -------------------------- | ------------ | ----------------------------------------- | -| Any failure event (metric is 0 normally, 1 on failure) | `average` | `average -10s of health_status` | `$this > 0` | Metric was non-zero at any point in the window | -| Any downtime (metric is 1=healthy, 0=down) | `min` | `min -5m unaligned` | `$this == 0` | Metric hit 0 at any point in the window | -| Continuous outage (metric is 1=healthy, 0=down) | `max` | `max -5m unaligned` | `$this == 0` | Metric was 0 for the entire window | -| Failure rate over time | `average` | `average -5m unaligned of health_status` | `$this > 0.N` | Failure fraction exceeds threshold (0.0–1.0) | -| Current state only | `calc` | `calc: $health_status` (no lookup) | `$this == 0` | Current value is 0 (debounce with delay) | +| Intent | Method | Lookup / Calc | Condition | Fires When | +|--------------------------------------------------------|-----------|------------------------------------------|---------------|------------------------------------------------| +| Any failure event (metric is 0 normally, 1 on failure) | `average` | `average -10s of health_status` | `$this > 0` | Metric was non-zero at any point in the window | +| Any downtime (metric is 1=healthy, 0=down) | `min` | `min -5m unaligned` | `$this == 0` | Metric hit 0 at any point in the window | +| Continuous outage (metric is 1=healthy, 0=down) | `max` | `max -5m unaligned` | `$this == 0` | Metric was 0 for the entire window | +| Failure rate over time | `average` | `average -5m unaligned of health_status` | `$this > 0.N` | Failure fraction exceeds threshold (0.0–1.0) | +| Current state only | `calc` | `calc: $health_status` (no lookup) | `$this == 0` | Current value is 0 (debounce with delay) | For a full list of available lookup methods and processing options (`average`, `min`, `max`, `sum`, `percentage`, `absolute`, etc.), see the [Alert Line `lookup`](#alert-line-lookup) section. @@ -1518,7 +1534,7 @@ How to debug alert issues, understand why alerts aren't working, and get detaile You can find chart information in two places: | Method | URL | Contains | -| ------------- | --------------------------------- | ----------------- | +|---------------|-----------------------------------|-------------------| | Configuration | `http://NODE:19999/netdata.conf` | All chart details | | API | `http://NODE:19999/api/v1/charts` | JSON chart data | @@ -1640,7 +1656,7 @@ flowchart TD **Possible Causes:** | Problem | Check This | Solution | -| -------------------- | ------------------------------- | ----------------------------- | +|----------------------|---------------------------------|-------------------------------| | Wrong chart name | `on:` line matches actual chart | Use chart ID from dashboard | | Incorrect dimensions | Dimension names in `lookup` | Check available dimensions | | Missing data | Chart has recent data | Verify data collection | @@ -1651,7 +1667,7 @@ flowchart TD **Possible Causes:** | Problem | Check This | Solution | -| ------------------------- | ---------------------------------------- | ----------------------- | +|---------------------------|------------------------------------------|-------------------------| | Wrong threshold direction | `>` vs `<` in expressions | Review logic | | Units mismatch | Comparing percentages to absolute values | Check calculation units | | Variable name errors | `$this` vs `$chart.dimension` | Verify variable names | @@ -1661,7 +1677,7 @@ flowchart TD **Possible Causes:** | Problem | Solution | -| --------------------- | ------------------------------------------------------------ | +|-----------------------|--------------------------------------------------------------| | Values near threshold | Implement [hysteresis](#conditional-operator-for-hysteresis) | | Noisy data | Increase lookup time window | | Too frequent checks | Increase `every:` interval | @@ -1736,7 +1752,7 @@ warn: $this > (($status >= $WARNING) ? (75) : (80)) **Alert Impact on System:** | Factor | Impact | Optimization | -| -------------------------- | ------------------- | ---------------------------------- | +|----------------------------|---------------------|------------------------------------| | Check frequency (`every:`) | CPU usage | Use appropriate intervals | | Lookup timeframe | Memory/CPU | Don't use excessively long periods | | Number of alerts | Overall performance | Disable unused alerts | @@ -1745,7 +1761,7 @@ warn: $this > (($status >= $WARNING) ? (75) : (80)) **Recommended Frequencies:** | Alert Type | Suggested Frequency | Reason | -| ----------------------- | ------------------- | -------------------------------------- | +|-------------------------|---------------------|----------------------------------------| | Critical system metrics | 10-30s | Quick response needed | | Resource usage | 1-5m | Trends matter more than instant values | | Predictive alerts | 15m-1h | Based on longer-term patterns | @@ -1784,44 +1800,44 @@ When seeking help, include: The following variables are available in alert notification templates and custom notification scripts: -| Variable name | Description | -| :-------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------- | -| `${alarm}` | Like "name = value units" | -| `${status_message}` | Like "needs attention", "recovered", "is critical" | -| `${severity}` | Like "Escalated to CRITICAL", "Recovered from WARNING" | -| `${raised_for}` | Like "(alarm was raised for 10 minutes)" | -| `${host}` | The host generated this event | -| `${url_host}` | Same as `${host}` but URL encoded | -| `${unique_id}` | The unique id of this event | -| `${alarm_id}` | The unique id of the alarm that generated this event | -| `${event_id}` | The incremental id of the event, for this alarm id | -| `${when}` | The timestamp this event occurred | -| `${date}` | The date and time the event occurred (local timezone) | -| `${date_utc}` | The date and time the event occurred (UTC) | -| `${name}` | The name of the alarm, as given in netdata health.d entries | -| `${url_name}` | Same as `${name}` but URL encoded | -| `${chart}` | The name of the chart (type.id) | -| `${url_chart}` | Same as `${chart}` but URL encoded | -| `${status}` | The current status: REMOVED, UNINITIALIZED, UNDEFINED, CLEAR, WARNING, CRITICAL | -| `${old_status}` | The previous status: REMOVED, UNINITIALIZED, UNDEFINED, CLEAR, WARNING, CRITICAL | -| `${value}` | The current value of the alarm | -| `${old_value}` | The previous value of the alarm | -| `${src}` | The line number and file the alarm has been configured | -| `${duration}` | The duration in seconds of the previous alarm state | -| `${duration_txt}` | Same as `${duration}` for humans | -| `${non_clear_duration}` | The total duration in seconds this is/was non-clear. For repeating alerts in WARNING or CRITICAL state, Netdata sends `${duration}` instead. | +| Variable name | Description | +|:---------------------------:|:---------------------------------------------------------------------------------------------------------------------------------------------| +| `${alarm}` | Like "name = value units" | +| `${status_message}` | Like "needs attention", "recovered", "is critical" | +| `${severity}` | Like "Escalated to CRITICAL", "Recovered from WARNING" | +| `${raised_for}` | Like "(alarm was raised for 10 minutes)" | +| `${host}` | The host generated this event | +| `${url_host}` | Same as `${host}` but URL encoded | +| `${unique_id}` | The unique id of this event | +| `${alarm_id}` | The unique id of the alarm that generated this event | +| `${event_id}` | The incremental id of the event, for this alarm id | +| `${when}` | The timestamp this event occurred | +| `${date}` | The date and time the event occurred (local timezone) | +| `${date_utc}` | The date and time the event occurred (UTC) | +| `${name}` | The name of the alarm, as given in netdata health.d entries | +| `${url_name}` | Same as `${name}` but URL encoded | +| `${chart}` | The name of the chart (type.id) | +| `${url_chart}` | Same as `${chart}` but URL encoded | +| `${status}` | The current status: REMOVED, UNINITIALIZED, UNDEFINED, CLEAR, WARNING, CRITICAL | +| `${old_status}` | The previous status: REMOVED, UNINITIALIZED, UNDEFINED, CLEAR, WARNING, CRITICAL | +| `${value}` | The current value of the alarm | +| `${old_value}` | The previous value of the alarm | +| `${src}` | The line number and file the alarm has been configured | +| `${duration}` | The duration in seconds of the previous alarm state | +| `${duration_txt}` | Same as `${duration}` for humans | +| `${non_clear_duration}` | The total duration in seconds this is/was non-clear. For repeating alerts in WARNING or CRITICAL state, Netdata sends `${duration}` instead. | | `${non_clear_duration_txt}` | Same as `${non_clear_duration}` for humans | -| `${units}` | The units of the value | -| `${info}` | A short description of the alarm | -| `${value_string}` | Friendly value (with units) | -| `${old_value_string}` | Friendly old value (with units) | -| `${image}` | The URL of an image to represent the status of the alarm | -| `${color}` | A color in #AABBCC format for the alarm | -| `${goto_url}` | The URL the user can click to see the netdata dashboard | -| `${calc_expression}` | The expression evaluated to provide the value for the alarm | -| `${calc_param_values}` | The values of the variables in the evaluated expression | -| `${total_warnings}` | The total number of alarms in WARNING state on the host | -| `${total_critical}` | The total number of alarms in CRITICAL state on the host | +| `${units}` | The units of the value | +| `${info}` | A short description of the alarm | +| `${value_string}` | Friendly value (with units) | +| `${old_value_string}` | Friendly old value (with units) | +| `${image}` | The URL of an image to represent the status of the alarm | +| `${color}` | A color in #AABBCC format for the alarm | +| `${goto_url}` | The URL the user can click to see the netdata dashboard | +| `${calc_expression}` | The expression evaluated to provide the value for the alarm | +| `${calc_param_values}` | The values of the variables in the evaluated expression | +| `${total_warnings}` | The total number of alarms in WARNING state on the host | +| `${total_critical}` | The total number of alarms in CRITICAL state on the host | ## Related Pages diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/AWS SNS.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/AWS SNS.mdx index 167e8d34de..e1c13d48c4 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/AWS SNS.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/AWS SNS.mdx @@ -152,5 +152,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Alerta.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Alerta.mdx index 5ad215f364..82835f6ac0 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Alerta.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Alerta.mdx @@ -137,5 +137,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Custom.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Custom.mdx index c3d4091709..267abb22d1 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Custom.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Custom.mdx @@ -183,5 +183,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Discord.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Discord.mdx index a7195c014e..52ac756194 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Discord.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Discord.mdx @@ -125,5 +125,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Dynatrace.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Dynatrace.mdx index 87cd3f990c..ddc6eca172 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Dynatrace.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Dynatrace.mdx @@ -133,5 +133,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Email.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Email.mdx index 7cab97225e..199ae6b469 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Email.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Email.mdx @@ -134,5 +134,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Flock.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Flock.mdx index 97b4593f9a..6d493a82b7 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Flock.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Flock.mdx @@ -121,5 +121,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Gotify.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Gotify.mdx index 61e195c0cb..2812a082cc 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Gotify.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Gotify.mdx @@ -105,5 +105,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/IRC.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/IRC.mdx index b539affa63..f3c1829c1b 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/IRC.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/IRC.mdx @@ -141,5 +141,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Kavenegar.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Kavenegar.mdx index 0b42e753cf..2805c187c1 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Kavenegar.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Kavenegar.mdx @@ -128,5 +128,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Matrix.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Matrix.mdx index 715e80548d..cfd9ceadf1 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Matrix.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Matrix.mdx @@ -141,5 +141,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/MessageBird.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/MessageBird.mdx index b1e30d49d9..12a58196a0 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/MessageBird.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/MessageBird.mdx @@ -125,5 +125,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Microsoft Teams.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Microsoft Teams.mdx index 934063e110..b6570146f9 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Microsoft Teams.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Microsoft Teams.mdx @@ -126,5 +126,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/OpsGenie.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/OpsGenie.mdx index 5ab9428ec0..db10596fc8 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/OpsGenie.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/OpsGenie.mdx @@ -105,5 +105,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/PagerDuty.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/PagerDuty.mdx index 9511f00859..d49e315288 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/PagerDuty.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/PagerDuty.mdx @@ -125,5 +125,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Prowl.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Prowl.mdx index 02757bcb95..88a2835498 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Prowl.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Prowl.mdx @@ -127,5 +127,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/PushOver.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/PushOver.mdx index 8218c62683..3fbf95b6fb 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/PushOver.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/PushOver.mdx @@ -127,5 +127,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Pushbullet.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Pushbullet.mdx index 3b6c59dc44..28bb78a78a 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Pushbullet.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Pushbullet.mdx @@ -125,5 +125,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/RocketChat.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/RocketChat.mdx index c4627e657e..6eb9b19518 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/RocketChat.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/RocketChat.mdx @@ -124,5 +124,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SIGNL4.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SIGNL4.mdx index be4130e911..389c18abe5 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SIGNL4.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SIGNL4.mdx @@ -103,5 +103,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SMS.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SMS.mdx index 6e78e56ef7..beeffabec0 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SMS.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SMS.mdx @@ -135,5 +135,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SMSEagle.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SMSEagle.mdx index 8ce59db0f0..9fde8508b3 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SMSEagle.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/SMSEagle.mdx @@ -167,5 +167,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Slack.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Slack.mdx index 7a4ffaded7..049028041b 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Slack.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Slack.mdx @@ -108,5 +108,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Telegram.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Telegram.mdx index b2317d1843..22b9f50ff1 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Telegram.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Telegram.mdx @@ -126,5 +126,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Twilio.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Twilio.mdx index d61d306c98..4151ff0dc1 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Twilio.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/Twilio.mdx @@ -126,5 +126,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/ilert.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/ilert.mdx index 6ccee0fef7..6c7a3c9914 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/ilert.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/ilert.mdx @@ -103,5 +103,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/ntfy.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/ntfy.mdx index 6024046cd1..bea0192035 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/ntfy.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/ntfy.mdx @@ -146,5 +146,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/syslog.mdx b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/syslog.mdx index 26cd77ee54..02ab6b5c90 100644 --- a/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/syslog.mdx +++ b/docs/Alerts & Notifications/Notifications/Agent Dispatched Notifications/syslog.mdx @@ -141,5 +141,3 @@ export NETDATA_ALARM_NOTIFY_DEBUG=1 ``` Note that this will test _all_ alert mechanisms for the selected role. - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Amazon SNS.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Amazon SNS.mdx index 62da2c18fc..1095636933 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Amazon SNS.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Amazon SNS.mdx @@ -49,5 +49,3 @@ slug: "/alerts-&-notifications/notifications/centralized-cloud-notifications/ama - Notifications: The notification types you want to receive - **Integration configuration** - Topic ARN: The topic provided on AWS SNS (with region) for where to publish your notifications. - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Discord.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Discord.mdx index 49fde47383..53e2da407e 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Discord.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Discord.mdx @@ -46,5 +46,3 @@ slug: "/alerts-&-notifications/notifications/centralized-cloud-notifications/dis - **Integration configuration** - Webhook URL: The URL you copied from the previous section - Channel Parameters: Select the channel type which the notifications will be sent to, if it is a Forum channel, you need to specify a thread name - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Mattermost.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Mattermost.mdx index fea152f37c..dcd80fd507 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Mattermost.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Mattermost.mdx @@ -50,5 +50,3 @@ For more details please check [Incoming webhooks for Mattermost](https://develop - Notifications: The notification types you want to receive - **Integration configuration** - Webhook URL: URL provided on Mattermost for the channel you want to receive your notifications - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Microsoft Teams.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Microsoft Teams.mdx index f4d8124616..ee57ffa56a 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Microsoft Teams.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Microsoft Teams.mdx @@ -50,5 +50,3 @@ slug: "/alerts-&-notifications/notifications/centralized-cloud-notifications/mic - Notifications: The notification types you want to receive - **Integration configuration** - Microsoft Teams Incoming Webhook URL: The Incoming Webhook URL that you copied earlier. - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Netdata Mobile App.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Netdata Mobile App.mdx index f4bda4864a..3a7867077c 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Netdata Mobile App.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Netdata Mobile App.mdx @@ -37,5 +37,3 @@ In order to login to the Netdata Mobile App ### Netdata Configuration After linking your device, enable the toggle for **Mobile App Notifications** under the same settings panel. - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Opsgenie.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Opsgenie.mdx index dee844987c..d85603f412 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Opsgenie.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Opsgenie.mdx @@ -45,5 +45,3 @@ slug: "/alerts-&-notifications/notifications/centralized-cloud-notifications/ops - Notifications: The notification types you want to receive - **Integration configuration** - API Key: The key provided on Opsgenie for the channel you want to receive your notifications - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/PagerDuty.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/PagerDuty.mdx index c967276409..79fe5ff66c 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/PagerDuty.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/PagerDuty.mdx @@ -47,5 +47,3 @@ slug: "/alerts-&-notifications/notifications/centralized-cloud-notifications/pag - **Integration configuration** - Integration Key: A 32 character key provided by PagerDuty to receive events on your service. - Integration URL (Alert Events): The URL provided by PagerDuty where Netdata Cloud will send notifications. - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/RocketChat.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/RocketChat.mdx index aabc3bf253..325963233b 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/RocketChat.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/RocketChat.mdx @@ -51,5 +51,3 @@ For more details please check [Incoming webhooks for RocketChat](https://docs.ro - Notifications: The notification types you want to receive - **Integration configuration** - Webhook URL: URL provided on RocketChat for the channel you want to receive your notifications - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/ServiceNow.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/ServiceNow.mdx index 0650dac526..05e72ce1d6 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/ServiceNow.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/ServiceNow.mdx @@ -49,5 +49,3 @@ slug: "/alerts-&-notifications/notifications/centralized-cloud-notifications/ser - Instance URL: The base URL of your ServiceNow instance (for example, `https://my-instance.service-now.com/`). - Username: The username of the ServiceNow integration user you created. - Password: The password of the ServiceNow integration user you created. - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Slack.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Slack.mdx index e6f3063a85..0d61bb5263 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Slack.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Slack.mdx @@ -52,5 +52,3 @@ For more details please check [Incoming webhooks for Slack](https://slack.com/he - Notifications: The notification types you want to receive - **Integration configuration** - Webhook URL: URL provided on Slack for the channel you want to receive your notifications - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Splunk VictorOps.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Splunk VictorOps.mdx index 4d31a931b5..15b1894cff 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Splunk VictorOps.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Splunk VictorOps.mdx @@ -40,5 +40,3 @@ slug: "/alerts-&-notifications/notifications/centralized-cloud-notifications/spl - Notifications: The notification types you want to receive - **Integration configuration** - Destination URL - The URL provided by VictorOps of your REST endpoint. - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Splunk.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Splunk.mdx index 99d5c5bf85..ea184c711d 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Splunk.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Splunk.mdx @@ -41,5 +41,3 @@ slug: "/alerts-&-notifications/notifications/centralized-cloud-notifications/spl - **Integration configuration** - HTTP Event Collector URI: The URI of your HTTP event collector in Splunk - HTTP Event Collector Token: The token that Splunk provided to you when you created the HTTP Event Collector - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Telegram.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Telegram.mdx index b23f907ee8..851f6e4b9b 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Telegram.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Telegram.mdx @@ -50,5 +50,3 @@ slug: "/alerts-&-notifications/notifications/centralized-cloud-notifications/tel - Bot Token: The token of your bot - Chat ID: The chat id where your bot will deliver messages to - Topic ID: The identifier of the chat topic to which your bot will send messages. If omitted or 0, messages will be sent to the General topic. If topics are not supported, messages will be sent to the chat. - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Webhook.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Webhook.mdx index 5f41e2a898..8b56c04a25 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Webhook.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/Webhook.mdx @@ -202,5 +202,3 @@ In basic authorization, the client sends a request with an Authorization header ##### Bearer token authentication In bearer token authentication, the client sends a request with an Authorization header that includes a bearer token. The server then uses this token to authenticate the client. Bearer tokens are typically generated by an authentication service, and are passed to the client after a successful authentication. If this method is selected, the user can set the token to be used for connecting to the destination service. - - diff --git a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/ilert.mdx b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/ilert.mdx index 143e452b2d..c896d9e350 100644 --- a/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/ilert.mdx +++ b/docs/Alerts & Notifications/Notifications/Centralized Cloud Notifications/ilert.mdx @@ -52,5 +52,3 @@ slug: "/alerts-&-notifications/notifications/centralized-cloud-notifications/ile - Notifications: The notification types you want to receive - **Integration configuration** - Alert Source API key: The key you copied in the ilert configuration step. - - diff --git a/docs/Alerts & Notifications/Overriding Stock Alerts.mdx b/docs/Alerts & Notifications/Overriding Stock Alerts.mdx index 3c8bf34d18..7bc4e75811 100644 --- a/docs/Alerts & Notifications/Overriding Stock Alerts.mdx +++ b/docs/Alerts & Notifications/Overriding Stock Alerts.mdx @@ -15,12 +15,13 @@ This guide explains how to customize Netdata's stock alerts. User configurations ## Quick Reference -| Goal | Method | -|-------------------------------------|--------------------------------------| -| Change thresholds for ALL instances | Create a template with the same name | -| Change thresholds for ONE instance | Create an alarm with the same name | -| Disable an alert completely | Use `enabled alarms` in netdata.conf | -| Silence notifications only | Set `to: silent` | +| Goal | Method | +|-------------------------------------|----------------------------------------------------------------------------------------------------| +| Change thresholds for ALL instances | Create a template with the same name | +| Change thresholds for ONE instance | Create an alarm with the same name | +| Disable an alert completely | Use `enabled alarms` in netdata.conf | +| Enable only specific alerts | Use [`enabled alarms` without `*`](/docs/alerts-&-notifications/alert-configuration-reference#enable-only-specific-alerts-whitelist) | +| Silence notifications only | Set `to: silent` | ## Understanding Overrides @@ -176,6 +177,8 @@ In your `netdata.conf` (edit it with `sudo ./edit-config netdata.conf`): This disables `20min_steal_cpu` and `disk_space_usage` while keeping all other alerts (`*`). +This is a `netdata.conf` change, so restart your Netdata Agent to apply it — `netdatacli reload-health` (see [Applying Changes](#applying-changes) below) only reloads `health.d/*.conf` files, not `netdata.conf`. + ### Option B: Per-Alert Disable Create an override that never matches: diff --git a/docs/Collecting Metrics/Collectors/Applications/Active Directory Certificate Service.mdx b/docs/Collecting Metrics/Collectors/Applications/Active Directory Certificate Service.mdx index e3e9edfd5b..7acd11889d 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Active Directory Certificate Service.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Active Directory Certificate Service.mdx @@ -147,5 +147,3 @@ Metrics: | adcs.cert_signed_certificate_timestamp_lists | lists | lists/s | | adcs.cert_signed_certificate_timestamp_list_processing_time | processing_time | seconds | | adcs.cert_retrieval_processing_time | processing_time | seconds | - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Active Directory Federation Service.mdx b/docs/Collecting Metrics/Collectors/Applications/Active Directory Federation Service.mdx index 3718a25ab4..1838a32c37 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Active Directory Federation Service.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Active Directory Federation Service.mdx @@ -159,5 +159,3 @@ Metrics: | adfs.windows_integrated_authentications | authentications | authentications/s | | adfs.wsfed_token_requests_success | success | requests/s | | adfs.wstrust_token_requests_success | success | requests/s | - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Active Directory.mdx b/docs/Collecting Metrics/Collectors/Applications/Active Directory.mdx index 2b797ee6bb..844e51b667 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Active Directory.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Active Directory.mdx @@ -226,5 +226,3 @@ Metrics: | ad.sam_enumerations | enumeration | enumerations/s | | ad.sam_membership_changes | change | changes/s | | ad.sam_password_changes | change | changes/s | - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Alamos FE2 server.mdx b/docs/Collecting Metrics/Collectors/Applications/Alamos FE2 server.mdx index 7d3c209555..bb804501d7 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Alamos FE2 server.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Alamos FE2 server.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/AuthLog.mdx b/docs/Collecting Metrics/Collectors/Applications/AuthLog.mdx index 8ba6a2c127..8889779687 100644 --- a/docs/Collecting Metrics/Collectors/Applications/AuthLog.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/AuthLog.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/BOINC.mdx b/docs/Collecting Metrics/Collectors/Applications/BOINC.mdx index ba336bca7f..11407bf4c1 100644 --- a/docs/Collecting Metrics/Collectors/Applications/BOINC.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/BOINC.mdx @@ -280,5 +280,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep boinc ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/BungeeCord.mdx b/docs/Collecting Metrics/Collectors/Applications/BungeeCord.mdx index 4555e0c887..45641dd911 100644 --- a/docs/Collecting Metrics/Collectors/Applications/BungeeCord.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/BungeeCord.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/CUPS.mdx b/docs/Collecting Metrics/Collectors/Applications/CUPS.mdx index ec12fb2cb1..f3f1e6b228 100644 --- a/docs/Collecting Metrics/Collectors/Applications/CUPS.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/CUPS.mdx @@ -148,5 +148,3 @@ Metrics: |:------|:----------|:----| | cups.destination_job_num | pending, held, processing | jobs | | cups.destination_job_size | pending, held, processing | KB | - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Celery.mdx b/docs/Collecting Metrics/Collectors/Applications/Celery.mdx index e1e8c6d22e..9af67aa853 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Celery.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Celery.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Chia.mdx b/docs/Collecting Metrics/Collectors/Applications/Chia.mdx index 72d00704a6..de8c61ce7d 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Chia.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Chia.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/ClamAV daemon.mdx b/docs/Collecting Metrics/Collectors/Applications/ClamAV daemon.mdx index ba9be19967..0caf570917 100644 --- a/docs/Collecting Metrics/Collectors/Applications/ClamAV daemon.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/ClamAV daemon.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Clamscan results.mdx b/docs/Collecting Metrics/Collectors/Applications/Clamscan results.mdx index 85810d7ba2..c1db27e554 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Clamscan results.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Clamscan results.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Collectd.mdx b/docs/Collecting Metrics/Collectors/Applications/Collectd.mdx index c671c7ac4b..249c0c00b7 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Collectd.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Collectd.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Consul.mdx b/docs/Collecting Metrics/Collectors/Applications/Consul.mdx index 1de9abf598..49aa6754f3 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Consul.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Consul.mdx @@ -411,5 +411,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep consul ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Crowdsec.mdx b/docs/Collecting Metrics/Collectors/Applications/Crowdsec.mdx index c515e7f68d..2469322bec 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Crowdsec.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Crowdsec.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Cryptowatch.mdx b/docs/Collecting Metrics/Collectors/Applications/Cryptowatch.mdx index e75c4030b8..2d13419aae 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Cryptowatch.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Cryptowatch.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/DMARC.mdx b/docs/Collecting Metrics/Collectors/Applications/DMARC.mdx index 0456acec7b..26d15be2c9 100644 --- a/docs/Collecting Metrics/Collectors/Applications/DMARC.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/DMARC.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Discourse.mdx b/docs/Collecting Metrics/Collectors/Applications/Discourse.mdx index ecd133067d..c69e39d4ce 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Discourse.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Discourse.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Dovecot.mdx b/docs/Collecting Metrics/Collectors/Applications/Dovecot.mdx index 4f568f0a2d..cd9d290117 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Dovecot.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Dovecot.mdx @@ -297,5 +297,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep dovecot ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Exim.mdx b/docs/Collecting Metrics/Collectors/Applications/Exim.mdx index 4be86a7278..ab566fc62d 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Exim.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Exim.mdx @@ -241,5 +241,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep exim ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Fail2ban.mdx b/docs/Collecting Metrics/Collectors/Applications/Fail2ban.mdx index 466132a6bc..baf164d1d6 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Fail2ban.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Fail2ban.mdx @@ -256,5 +256,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep fail2ban ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Fluentd.mdx b/docs/Collecting Metrics/Collectors/Applications/Fluentd.mdx index 80a39dd850..997243affb 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Fluentd.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Fluentd.mdx @@ -312,5 +312,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep fluentd ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/FreeRADIUS.mdx b/docs/Collecting Metrics/Collectors/Applications/FreeRADIUS.mdx index 0e725d2d3f..f5462d8983 100644 --- a/docs/Collecting Metrics/Collectors/Applications/FreeRADIUS.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/FreeRADIUS.mdx @@ -287,5 +287,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep freeradius ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Gearman.mdx b/docs/Collecting Metrics/Collectors/Applications/Gearman.mdx index 3dd29babc0..19a7026eff 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Gearman.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Gearman.mdx @@ -287,5 +287,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep gearman ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/GitHub API rate limit.mdx b/docs/Collecting Metrics/Collectors/Applications/GitHub API rate limit.mdx index 8e4b7fad88..c5de8423aa 100644 --- a/docs/Collecting Metrics/Collectors/Applications/GitHub API rate limit.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/GitHub API rate limit.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/GitHub repository.mdx b/docs/Collecting Metrics/Collectors/Applications/GitHub repository.mdx index 0ff07438d9..c42550fa95 100644 --- a/docs/Collecting Metrics/Collectors/Applications/GitHub repository.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/GitHub repository.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Go applications EXPVAR.mdx b/docs/Collecting Metrics/Collectors/Applications/Go applications EXPVAR.mdx index 757c006c77..9f5004569b 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Go applications EXPVAR.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Go applications EXPVAR.mdx @@ -382,5 +382,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep go_expvar ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Go-ethereum.mdx b/docs/Collecting Metrics/Collectors/Applications/Go-ethereum.mdx index 883f987db8..a76447d328 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Go-ethereum.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Go-ethereum.mdx @@ -307,5 +307,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep geth ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Google Pagespeed.mdx b/docs/Collecting Metrics/Collectors/Applications/Google Pagespeed.mdx index a9c21c397e..72fe211b4d 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Google Pagespeed.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Google Pagespeed.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Grafana.mdx b/docs/Collecting Metrics/Collectors/Applications/Grafana.mdx index e5ff212b2e..cdb5babc23 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Grafana.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Grafana.mdx @@ -486,6 +486,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Graylog Server.mdx b/docs/Collecting Metrics/Collectors/Applications/Graylog Server.mdx index 859676aa2c..3ef0ee4db7 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Graylog Server.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Graylog Server.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Halon.mdx b/docs/Collecting Metrics/Collectors/Applications/Halon.mdx index 5b117831bf..d8a9118f14 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Halon.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Halon.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Homebridge.mdx b/docs/Collecting Metrics/Collectors/Applications/Homebridge.mdx index 1fc1f70586..7218019962 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Homebridge.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Homebridge.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Homey.mdx b/docs/Collecting Metrics/Collectors/Applications/Homey.mdx index 8679ce41c7..23e5740fed 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Homey.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Homey.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Honeypot.mdx b/docs/Collecting Metrics/Collectors/Applications/Honeypot.mdx index 1c611a8f91..122723f1e0 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Honeypot.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Honeypot.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/IBM AIX systems Njmon.mdx b/docs/Collecting Metrics/Collectors/Applications/IBM AIX systems Njmon.mdx index 444fcfe431..30ee8284a5 100644 --- a/docs/Collecting Metrics/Collectors/Applications/IBM AIX systems Njmon.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/IBM AIX systems Njmon.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/IBM MQ.mdx b/docs/Collecting Metrics/Collectors/Applications/IBM MQ.mdx index 3d6e90202c..fcdafcb490 100644 --- a/docs/Collecting Metrics/Collectors/Applications/IBM MQ.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/IBM MQ.mdx @@ -393,5 +393,3 @@ Metrics: | mq.topic.subscribers | subscribers | subscribers | | mq.topic.messages | messages | messages/s | | mq.topic.time_since_last_message | time_since_last_msg | seconds | - - diff --git a/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere JMX.mdx b/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere JMX.mdx index 8b78973724..15d1f91fd6 100644 --- a/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere JMX.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere JMX.mdx @@ -247,5 +247,3 @@ Metrics: |:------|:----------|:----| | websphere_jmx.threadpool_size | size, max | threads | | websphere_jmx.threadpool_active | active | threads | - - diff --git a/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere MicroProfile.mdx b/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere MicroProfile.mdx index 00cea209b6..4bbacacc72 100644 --- a/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere MicroProfile.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere MicroProfile.mdx @@ -192,5 +192,3 @@ Metrics: |:------|:----------|:----| | websphere_mp.threadpool_usage | active, idle | threads | | websphere_mp.threadpool_size | size | threads | - - diff --git a/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere PMI.mdx b/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere PMI.mdx index 54679c35e5..38b1f655c5 100644 --- a/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere PMI.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/IBM WebSphere PMI.mdx @@ -652,5 +652,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | websphere_pmi.web_services_gateway_requests | synchronous, synchronous_responses, asynchronous, asynchronous_responses | requests/s | - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Icecast.mdx b/docs/Collecting Metrics/Collectors/Applications/Icecast.mdx index aa1bd18582..d7f5361f50 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Icecast.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Icecast.mdx @@ -279,5 +279,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep icecast ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/JMX.mdx b/docs/Collecting Metrics/Collectors/Applications/JMX.mdx index f037833c06..21067588e8 100644 --- a/docs/Collecting Metrics/Collectors/Applications/JMX.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/JMX.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Kannel.mdx b/docs/Collecting Metrics/Collectors/Applications/Kannel.mdx index 61f3163814..0915b4773e 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Kannel.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Kannel.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Logstash.mdx b/docs/Collecting Metrics/Collectors/Applications/Logstash.mdx index bee85d3fdf..60345eebb5 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Logstash.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Logstash.mdx @@ -339,5 +339,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep logstash ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Lynis audit reports.mdx b/docs/Collecting Metrics/Collectors/Applications/Lynis audit reports.mdx index e4a68ec82d..e83b40b3cb 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Lynis audit reports.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Lynis audit reports.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/MS Exchange.mdx b/docs/Collecting Metrics/Collectors/Applications/MS Exchange.mdx index f1de6e8e77..cdf86f3635 100644 --- a/docs/Collecting Metrics/Collectors/Applications/MS Exchange.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/MS Exchange.mdx @@ -158,5 +158,3 @@ Metrics: | exchange.http_proxy_requests | requests | seconds | | exchange.autodiscover_requests | processed | requests/s | | exchange.avail_service_requests | serviced | requests/s | - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Minecraft.mdx b/docs/Collecting Metrics/Collectors/Applications/Minecraft.mdx index 938eb48d89..59bd27ab18 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Minecraft.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Minecraft.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/NET Framework.mdx b/docs/Collecting Metrics/Collectors/Applications/NET Framework.mdx index 14939d5c77..86174e30a5 100644 --- a/docs/Collecting Metrics/Collectors/Applications/NET Framework.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/NET Framework.mdx @@ -162,5 +162,3 @@ Metrics: | netframework.clrlocksandthreads_current_physical_threads | physical | threads | | netframework.clrlocksandthreads_recognized_threads | threads | threads/s | | netframework.clrlocksandthreads_contentions | contentions | contentions/s | - - diff --git a/docs/Collecting Metrics/Collectors/Applications/NRPE daemon.mdx b/docs/Collecting Metrics/Collectors/Applications/NRPE daemon.mdx index 9c74416eb0..f7e3978193 100644 --- a/docs/Collecting Metrics/Collectors/Applications/NRPE daemon.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/NRPE daemon.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Nextcloud servers.mdx b/docs/Collecting Metrics/Collectors/Applications/Nextcloud servers.mdx index 873c0aa7cc..738c749313 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Nextcloud servers.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Nextcloud servers.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/OBS Studio.mdx b/docs/Collecting Metrics/Collectors/Applications/OBS Studio.mdx index 3babdced16..27bdf8ff2b 100644 --- a/docs/Collecting Metrics/Collectors/Applications/OBS Studio.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/OBS Studio.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/OpenLDAP.mdx b/docs/Collecting Metrics/Collectors/Applications/OpenLDAP.mdx index d74f7c99f3..0126c40f72 100644 --- a/docs/Collecting Metrics/Collectors/Applications/OpenLDAP.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/OpenLDAP.mdx @@ -279,5 +279,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep openldap ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/OpenSIPS.mdx b/docs/Collecting Metrics/Collectors/Applications/OpenSIPS.mdx index 29482f5808..7ba56206fc 100644 --- a/docs/Collecting Metrics/Collectors/Applications/OpenSIPS.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/OpenSIPS.mdx @@ -239,5 +239,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep opensips ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/OpenWeatherMap.mdx b/docs/Collecting Metrics/Collectors/Applications/OpenWeatherMap.mdx index 50aeaa1957..0cc0efe77c 100644 --- a/docs/Collecting Metrics/Collectors/Applications/OpenWeatherMap.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/OpenWeatherMap.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Postfix.mdx b/docs/Collecting Metrics/Collectors/Applications/Postfix.mdx index 54d37c53b4..941f52e65f 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Postfix.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Postfix.mdx @@ -245,5 +245,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep postfix ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/ProFTPD.mdx b/docs/Collecting Metrics/Collectors/Applications/ProFTPD.mdx index 9093513324..13880a160a 100644 --- a/docs/Collecting Metrics/Collectors/Applications/ProFTPD.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/ProFTPD.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Prometheus endpoint.mdx b/docs/Collecting Metrics/Collectors/Applications/Prometheus endpoint.mdx index 3169efd2a3..3193a4cff2 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Prometheus endpoint.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Prometheus endpoint.mdx @@ -487,6 +487,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/RADIUS.mdx b/docs/Collecting Metrics/Collectors/Applications/RADIUS.mdx index d3508ccb07..f627a5eac9 100644 --- a/docs/Collecting Metrics/Collectors/Applications/RADIUS.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/RADIUS.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Rspamd.mdx b/docs/Collecting Metrics/Collectors/Applications/Rspamd.mdx index 0f12eaeff3..94fe630159 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Rspamd.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Rspamd.mdx @@ -302,5 +302,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep rspamd ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/SABnzbd.mdx b/docs/Collecting Metrics/Collectors/Applications/SABnzbd.mdx index b17f616550..c9e795a769 100644 --- a/docs/Collecting Metrics/Collectors/Applications/SABnzbd.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/SABnzbd.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Slurm.mdx b/docs/Collecting Metrics/Collectors/Applications/Slurm.mdx index 9b8a755831..7685693636 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Slurm.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Slurm.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/SpigotMC.mdx b/docs/Collecting Metrics/Collectors/Applications/SpigotMC.mdx index 38dbcf7da8..a25545d5cf 100644 --- a/docs/Collecting Metrics/Collectors/Applications/SpigotMC.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/SpigotMC.mdx @@ -274,5 +274,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep spigotmc ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/StatusPage.mdx b/docs/Collecting Metrics/Collectors/Applications/StatusPage.mdx index 87f4bd4820..2c117e48a2 100644 --- a/docs/Collecting Metrics/Collectors/Applications/StatusPage.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/StatusPage.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Steam.mdx b/docs/Collecting Metrics/Collectors/Applications/Steam.mdx index 469501ce54..19110ff210 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Steam.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Steam.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Suricata.mdx b/docs/Collecting Metrics/Collectors/Applications/Suricata.mdx index c5da859ad9..dde457f304 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Suricata.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Suricata.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Sysload.mdx b/docs/Collecting Metrics/Collectors/Applications/Sysload.mdx index 6b988e2f3b..8f448e4042 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Sysload.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Sysload.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/TACACS.mdx b/docs/Collecting Metrics/Collectors/Applications/TACACS.mdx index 38c78fc1ac..113e20fb61 100644 --- a/docs/Collecting Metrics/Collectors/Applications/TACACS.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/TACACS.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Tankerkoenig API.mdx b/docs/Collecting Metrics/Collectors/Applications/Tankerkoenig API.mdx index 25a9e10fc9..4b071fec47 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Tankerkoenig API.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Tankerkoenig API.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Twitch.mdx b/docs/Collecting Metrics/Collectors/Applications/Twitch.mdx index 998640e3c0..c17fa50ff1 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Twitch.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Twitch.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/VSCode.mdx b/docs/Collecting Metrics/Collectors/Applications/VSCode.mdx index 36a6717ed7..8043ce1a97 100644 --- a/docs/Collecting Metrics/Collectors/Applications/VSCode.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/VSCode.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/Vault PKI.mdx b/docs/Collecting Metrics/Collectors/Applications/Vault PKI.mdx index 5c629e96e9..107815f05b 100644 --- a/docs/Collecting Metrics/Collectors/Applications/Vault PKI.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/Vault PKI.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/YOURLS URL Shortener.mdx b/docs/Collecting Metrics/Collectors/Applications/YOURLS URL Shortener.mdx index b66da69b9f..3157a007a5 100644 --- a/docs/Collecting Metrics/Collectors/Applications/YOURLS URL Shortener.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/YOURLS URL Shortener.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/ZooKeeper.mdx b/docs/Collecting Metrics/Collectors/Applications/ZooKeeper.mdx index a20928cc57..06b418497d 100644 --- a/docs/Collecting Metrics/Collectors/Applications/ZooKeeper.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/ZooKeeper.mdx @@ -315,5 +315,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep zookeeper ``` - - diff --git a/docs/Collecting Metrics/Collectors/Applications/etcd.mdx b/docs/Collecting Metrics/Collectors/Applications/etcd.mdx index 6d93815356..671d0633ed 100644 --- a/docs/Collecting Metrics/Collectors/Applications/etcd.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/etcd.mdx @@ -486,6 +486,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/gpsd.mdx b/docs/Collecting Metrics/Collectors/Applications/gpsd.mdx index dcc81d6b81..b10400a1b3 100644 --- a/docs/Collecting Metrics/Collectors/Applications/gpsd.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/gpsd.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/journald.mdx b/docs/Collecting Metrics/Collectors/Applications/journald.mdx index cd49c446aa..0ecae0de60 100644 --- a/docs/Collecting Metrics/Collectors/Applications/journald.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/journald.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/loki.mdx b/docs/Collecting Metrics/Collectors/Applications/loki.mdx index 89dfaa9432..1599906342 100644 --- a/docs/Collecting Metrics/Collectors/Applications/loki.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/loki.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/mtail.mdx b/docs/Collecting Metrics/Collectors/Applications/mtail.mdx index e104642b64..3395fc4797 100644 --- a/docs/Collecting Metrics/Collectors/Applications/mtail.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/mtail.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Applications/phpDaemon.mdx b/docs/Collecting Metrics/Collectors/Applications/phpDaemon.mdx index f1acffd5e3..fb01924f87 100644 --- a/docs/Collecting Metrics/Collectors/Applications/phpDaemon.mdx +++ b/docs/Collecting Metrics/Collectors/Applications/phpDaemon.mdx @@ -389,5 +389,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep phpdaemon ``` - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/AWS EC2 Compute instances.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/AWS EC2 Compute instances.mdx index a541d52ffe..73b2fad642 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/AWS EC2 Compute instances.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/AWS EC2 Compute instances.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/AWS Quota.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/AWS Quota.mdx index 5040b23657..9bf40e689e 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/AWS Quota.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/AWS Quota.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Amazon CloudWatch.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Amazon CloudWatch.mdx index fa1e358ed6..4289237348 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Amazon CloudWatch.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Amazon CloudWatch.mdx @@ -74,14 +74,14 @@ Replace `AWS/` with the service namespace (for example `AWS/AmazonMQ`) ::: -The collector discovers available metrics with the CloudWatch `ListMetrics` API (one paginated call per selected service profile and region; the collector then keeps only the metrics whose dimension set matches each profile's instance dimensions) and queries them in batches with the `GetMetricData` API. Account identity is resolved once at startup via `sts:GetCallerIdentity`. Authentication uses the AWS SDK default credential chain, static access keys, or an assumed IAM role. +The collector discovers available metrics with the CloudWatch `ListMetrics` API (one paginated call per account, selected service profile, and region; the collector then keeps only the metrics whose dimension set matches each profile's instance dimensions) and queries them in batches with the `GetMetricData` API. Each configured identity's AWS account id is resolved via `sts:GetCallerIdentity` (one per assumed role, so a single job can monitor several accounts). Note that both discovery and query volume scale with accounts × regions × profiles, so adding many roles multiplies API calls (and `GetMetricData` cost) accordingly. Authentication uses the AWS SDK default credential chain, static access keys, or one or more assumed IAM roles. This collector is supported on all platforms. This collector supports collecting metrics from multiple instances of this integration, including remote instances. -The configured IAM identity requires `cloudwatch:ListMetrics`, `cloudwatch:GetMetricData`, and `sts:GetCallerIdentity`. When `auth.mode` is `assume_role`, it also requires `sts:AssumeRole`. +The configured IAM identity requires `cloudwatch:ListMetrics`, `cloudwatch:GetMetricData`, and `sts:GetCallerIdentity`. When `auth.mode` is `assume_role`, it also requires `sts:AssumeRole`. Resource tag enrichment (the optional `tags` option) additionally requires `tag:GetResources`. ### Default Behavior @@ -96,7 +96,7 @@ With `profiles.mode: auto` (default), the collector discovers metrics for all bu - Minimum collection interval is 60 seconds (CloudWatch's minimum metric period). - CloudWatch publishes metrics with a delay; the effective query offset is `max(query_offset, period)`, so long-period metrics (such as the daily S3 storage metrics) are inherently about one period behind. - There is no cap on discovered resources; a warning is logged at 1000 or more discovered instances (collection is never truncated). -- Resources are labeled by their identifying CloudWatch dimensions (for example EC2 `instance_id`), not by their `Name` tag or other resource tags; tag-based naming and filtering are not currently supported. (A dimension that is constant across resources, such as CloudFront's `Region=Global`, is used to match and query metrics but is not turned into a label.) +- Resources are labeled by their identifying CloudWatch dimensions (for example EC2 `instance_id`). Selected resource tags can additionally be attached as labels via the opt-in `tags` option (using the Resource Groups Tagging API); tags are enrichment only and never change a resource's identity. (A dimension that is constant across resources, such as CloudFront's `Region=Global`, is used to match and query metrics but is not turned into a label.) #### Performance Impact @@ -146,7 +146,7 @@ Attach a policy such as: } ``` -`cloudwatch:ListMetrics`, `cloudwatch:GetMetricData`, and `sts:GetCallerIdentity` do not support resource-level permissions, so `"Resource": "*"` is required -- this is already least-privilege for these read actions. In `assume_role` mode, scope `sts:AssumeRole` to the specific role ARN(s) rather than `*`. +`cloudwatch:ListMetrics`, `cloudwatch:GetMetricData`, and `sts:GetCallerIdentity` do not support resource-level permissions, so `"Resource": "*"` is required -- this is already least-privilege for these read actions. In `assume_role` mode, scope `sts:AssumeRole` to the specific role ARN(s) rather than `*`. To enable resource tag enrichment (the optional `tags` option), also grant `tag:GetResources` (it likewise requires `"Resource": "*"`). Then provide credentials with one of the `auth.mode` options: @@ -188,11 +188,13 @@ A user profile file with the same basename as a stock profile overrides it. | | auth.mode_access_key.access_key_id | AWS access key ID (used in `access_key` mode). | | no | | | auth.mode_access_key.secret_access_key | AWS secret access key (used in `access_key` mode). | | no | | | auth.mode_access_key.session_token | Optional AWS session token for temporary credentials (used in `access_key` mode). | | no | -| | auth.mode_assume_role.roles | A single-element list with the IAM role to assume (used in `assume_role` mode); each entry has `role_arn` and an optional `external_id`. Exactly one role is supported per job -- to monitor multiple accounts, run one job per account/role. | | no | +| | auth.mode_assume_role.roles | IAM roles to assume (used in `assume_role` mode) -- one per AWS account to monitor. Each entry has `role_arn` and an optional `external_id`, and each metric series is labeled with the account id its role resolves to. A role that cannot be assumed is skipped with a warning while the rest keep collecting; two roles resolving to the same account are de-duplicated. | | no | +| | auth.mode_assume_role.include_base_account | When `true`, also monitor the base identity's own account (the identity used to assume the roles) alongside the assumed-role accounts. Defaults to `false` -- with roles set, only the assumed-role accounts are monitored; to also cover the base account, enable this or run a separate `default`-mode job. | no | no | | **Profiles** | profiles.mode | Profile selection: `auto` (default service profiles), `exact` (only the profiles you list, by basename), or `combined` (default profiles plus deep-grain per-target-group / per-operation / per-request-filter profiles). | auto | no | | | profiles.mode_exact.entries | List of profiles to collect by basename (required when `profiles.mode` is `exact`). Each entry has a `name`, e.g. `ec2` or `alb_target`. | | no | | **Discovery** | discovery.refresh_every | How often (seconds) to re-discover metrics. Minimum 60. | 300 | no | | | discovery.recently_active_only | List only metrics active in the last 3 hours. Automatically disabled for metrics whose period exceeds 3 hours (such as the daily S3 storage metrics). | yes | no | +| **Tags** | tags | Optional allowlist of AWS resource tags to attach as extra labels on collected metrics, looked up via the Resource Groups Tagging API. Empty by default -- with no tags listed, no tag lookup runs and no extra IAM is needed. Each entry has a `name` (the AWS tag key, case-sensitive) and an optional `rename` (the Netdata label name; the default is the sanitized key, so `Name` becomes `name`). Use `rename` when the key is not a valid label (for example an `aws:`-prefixed key) or collides with a built-in label such as `region`. Enabling tags requires the `tag:GetResources` IAM permission. Note: tag values become label values and may contain personal data (such as owner emails), so list only tags you want exposed as labels. Tags apply only to profiles with a supported resource-ARN join; some services are not tag-enriched: Auto Scaling and Bedrock (not taggable via the Resource Groups Tagging API), and -- pending a reliable ARN join -- API Gateway, CloudFront, MSK, and ElastiCache. Tags behave as create-time chart labels: a tag that first appears or changes value after a chart already exists is reflected only when that chart is next recreated. | | no | | **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no | @@ -310,6 +312,29 @@ jobs: ``` +###### Multiple accounts (assume several roles) + +Monitor several AWS accounts from one job by assuming a role in each. Every metric is labeled with the account id its role resolves to. Enable `include_base_account` to also monitor the account the base identity itself belongs to. + +
+Config + +```yaml +jobs: + - name: multi_account + regions: + - us-east-1 + auth: + mode: assume_role + mode_assume_role: + include_base_account: false + roles: + - role_arn: "arn:aws:iam::111111111111:role/netdata-cloudwatch" + - role_arn: "arn:aws:iam::222222222222:role/netdata-cloudwatch" + +``` +
+ ###### Specific services only Collect only EC2 and RDS instead of auto-discovering all built-in services. @@ -526,6 +551,3 @@ CloudWatch publishes metrics with a delay. - Verify the credentials selected by `auth.mode` are valid and not expired. - For `assume_role`, confirm the base identity is allowed to `sts:AssumeRole` the target role and that the role's trust policy permits it. - For AWS GovCloud or China partitions, ensure every region in `regions` belongs to the same partition. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure API Management.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure API Management.mdx index 86ac2f44d6..41d602bfbd 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure API Management.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure API Management.mdx @@ -828,6 +828,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure App Service.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure App Service.mdx index 1ef4e64b2d..2a4871522b 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure App Service.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure App Service.mdx @@ -843,6 +843,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Application Gateway.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Application Gateway.mdx index 69630ec8cd..fa415a85d5 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Application Gateway.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Application Gateway.mdx @@ -834,6 +834,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Application Insights.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Application Insights.mdx index b3dc5bbd8d..3b9a30b875 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Application Insights.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Application Insights.mdx @@ -843,6 +843,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cache for Redis.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cache for Redis.mdx index de5b6a68af..70b5860783 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cache for Redis.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cache for Redis.mdx @@ -852,6 +852,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cognitive Services.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cognitive Services.mdx index e3ff39cdb4..05b7be0c48 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cognitive Services.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cognitive Services.mdx @@ -902,6 +902,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Apps.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Apps.mdx index b1985cff08..b51a628bb0 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Apps.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Apps.mdx @@ -840,6 +840,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Instances.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Instances.mdx index f8e940fe95..66a98d7236 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Instances.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Instances.mdx @@ -810,6 +810,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Registry.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Registry.mdx index 2288223ab8..349cc1dd49 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Registry.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Container Registry.mdx @@ -810,6 +810,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cosmos DB Account.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cosmos DB Account.mdx index 6815dd5451..598f044ee9 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cosmos DB Account.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Cosmos DB Account.mdx @@ -836,6 +836,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Data Explorer Cluster.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Data Explorer Cluster.mdx index 815181b262..1ec5ab2411 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Data Explorer Cluster.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Data Explorer Cluster.mdx @@ -875,6 +875,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Data Factory.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Data Factory.mdx index 7e538fd025..d9a68d078d 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Data Factory.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Data Factory.mdx @@ -882,6 +882,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Event Grid Topic.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Event Grid Topic.mdx index 53a94a8794..cb842dde98 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Event Grid Topic.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Event Grid Topic.mdx @@ -816,6 +816,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Event Hubs Namespace.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Event Hubs Namespace.mdx index fe2606b67c..c8931eb7fc 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Event Hubs Namespace.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Event Hubs Namespace.mdx @@ -830,6 +830,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure ExpressRoute Circuit.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure ExpressRoute Circuit.mdx index 157e00bba6..fb2e2711ae 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure ExpressRoute Circuit.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure ExpressRoute Circuit.mdx @@ -818,6 +818,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure ExpressRoute Gateway.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure ExpressRoute Gateway.mdx index 02cff123f5..bb38962f33 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure ExpressRoute Gateway.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure ExpressRoute Gateway.mdx @@ -820,6 +820,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Firewall.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Firewall.mdx index 84c5323318..c8ac5f4b8f 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Firewall.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Firewall.mdx @@ -816,6 +816,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Front Door.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Front Door.mdx index 8d4f5fd70f..56617d7471 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Front Door.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Front Door.mdx @@ -826,6 +826,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Functions.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Functions.mdx index 1428719319..75cfa649d1 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Functions.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Functions.mdx @@ -829,6 +829,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure IoT Hub.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure IoT Hub.mdx index 26f7b85281..2d9753fa2a 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure IoT Hub.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure IoT Hub.mdx @@ -865,6 +865,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Key Vault.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Key Vault.mdx index 434c0f590c..103b128143 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Key Vault.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Key Vault.mdx @@ -810,6 +810,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Kubernetes Service Cluster.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Kubernetes Service Cluster.mdx index bd1f50a312..28ec064a05 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Kubernetes Service Cluster.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Kubernetes Service Cluster.mdx @@ -839,6 +839,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Load Balancer.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Load Balancer.mdx index bd6f303b71..e7183c73d5 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Load Balancer.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Load Balancer.mdx @@ -816,6 +816,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Log Analytics Workspace.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Log Analytics Workspace.mdx index 2a74d06fde..de6fbca2c5 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Log Analytics Workspace.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Log Analytics Workspace.mdx @@ -855,6 +855,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Logic Apps Workflow.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Logic Apps Workflow.mdx index 72a5d77f9f..cc23b1f0a1 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Logic Apps Workflow.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Logic Apps Workflow.mdx @@ -831,6 +831,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Machine Learning Workspace.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Machine Learning Workspace.mdx index 0055029d4f..607888b570 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Machine Learning Workspace.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Machine Learning Workspace.mdx @@ -854,6 +854,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Monitor.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Monitor.mdx index 04e542f029..d0ce67acef 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Monitor.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Monitor.mdx @@ -775,6 +775,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure MySQL Flexible Server.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure MySQL Flexible Server.mdx index 842f833e62..0c8ddd795b 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure MySQL Flexible Server.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure MySQL Flexible Server.mdx @@ -861,6 +861,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure NAT Gateway.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure NAT Gateway.mdx index 2cc95d059c..2cb0f40bc0 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure NAT Gateway.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure NAT Gateway.mdx @@ -814,6 +814,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure PostgreSQL Flexible Server.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure PostgreSQL Flexible Server.mdx index b781e139ae..d2286224f5 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure PostgreSQL Flexible Server.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure PostgreSQL Flexible Server.mdx @@ -871,6 +871,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Database.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Database.mdx index 42bcdfbd36..22438413d0 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Database.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Database.mdx @@ -848,6 +848,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Elastic Pool.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Elastic Pool.mdx index 30727a1fae..da61576a1a 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Elastic Pool.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Elastic Pool.mdx @@ -838,6 +838,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Managed Instance.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Managed Instance.mdx index 65aab6ad6c..e79fc80971 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Managed Instance.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure SQL Managed Instance.mdx @@ -811,6 +811,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Service Bus Namespace.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Service Bus Namespace.mdx index 472ba25f81..d1967a9092 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Service Bus Namespace.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Service Bus Namespace.mdx @@ -836,6 +836,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Storage Account.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Storage Account.mdx index cab0c69ec2..4a2f8c842b 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Storage Account.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Storage Account.mdx @@ -816,6 +816,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Stream Analytics Job.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Stream Analytics Job.mdx index dcb24fc0d6..ed1113636a 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Stream Analytics Job.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Stream Analytics Job.mdx @@ -826,6 +826,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Synapse Analytics Workspace.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Synapse Analytics Workspace.mdx index a5e349cae7..d282fb2ffe 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Synapse Analytics Workspace.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Synapse Analytics Workspace.mdx @@ -831,6 +831,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure VPN Gateway.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure VPN Gateway.mdx index 949d70f9ed..1c0966943f 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure VPN Gateway.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure VPN Gateway.mdx @@ -861,6 +861,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Virtual Machine Scale Set.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Virtual Machine Scale Set.mdx index fb9fe69e68..b58172b9aa 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Virtual Machine Scale Set.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Virtual Machine Scale Set.mdx @@ -872,6 +872,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Virtual Machine.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Virtual Machine.mdx index eae2e3317b..abe9fbd661 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Virtual Machine.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Azure Virtual Machine.mdx @@ -868,6 +868,3 @@ For Azure Government or Azure China clouds, set the `cloud` parameter: - Azure China (21Vianet): `cloud: china` Ensure the service principal is registered in the correct cloud tenant. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/BOSH.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/BOSH.mdx index 09de46869c..416048b7aa 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/BOSH.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/BOSH.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Cloud Foundry Firehose.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Cloud Foundry Firehose.mdx index a09f65ee7a..ff6e7b5a4f 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Cloud Foundry Firehose.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Cloud Foundry Firehose.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Cloud Foundry.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Cloud Foundry.mdx index 081427e3da..31106f3051 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Cloud Foundry.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Cloud Foundry.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/CloudWatch.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/CloudWatch.mdx index cb6bed35ff..b9ce7e0fa1 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/CloudWatch.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/CloudWatch.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Concourse.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Concourse.mdx index c6159e2049..3ee3f70f0c 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Concourse.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Concourse.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Dynatrace.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Dynatrace.mdx index 16788e23b4..4fd1bcb1e7 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Dynatrace.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Dynatrace.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/GCP GCE.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/GCP GCE.mdx index 3bb23aa4e1..e58b5eccdb 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/GCP GCE.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/GCP GCE.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/GitLab Runner.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/GitLab Runner.mdx index b72eac5ded..1e95fc5311 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/GitLab Runner.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/GitLab Runner.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Google Cloud Platform.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Google Cloud Platform.mdx index b94e673584..30fe97869f 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Google Cloud Platform.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Google Cloud Platform.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Google Stackdriver.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Google Stackdriver.mdx index 30a07168e6..48bc6eb4e2 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Google Stackdriver.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Google Stackdriver.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Hubble.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Hubble.mdx index 747891a132..4da2c49333 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Hubble.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Hubble.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Jenkins.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Jenkins.mdx index cc6357eb4e..ebbc2199a7 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Jenkins.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Jenkins.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Linode.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Linode.mdx index f004ebb710..1ab60a8abd 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Linode.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Linode.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Puppet.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Puppet.mdx index f08d06097c..f5ebec2525 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Puppet.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Puppet.mdx @@ -289,5 +289,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep puppet ``` - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Spacelift.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Spacelift.mdx index 8548b25959..09ab67f197 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Spacelift.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Spacelift.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Zerto.mdx b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Zerto.mdx index 48ae468c88..fbdc269ded 100644 --- a/docs/Collecting Metrics/Collectors/Cloud and DevOps/Zerto.mdx +++ b/docs/Collecting Metrics/Collectors/Cloud and DevOps/Zerto.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/AWS ECS Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/AWS ECS Containers.mdx index b9ef5ffb88..41a30a6116 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/AWS ECS Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/AWS ECS Containers.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Agent.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Agent.mdx index dd692481f9..2d442e7643 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Agent.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Agent.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Operator.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Operator.mdx index 2ae4a2bfcf..54de6c66be 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Operator.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Operator.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Proxy.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Proxy.mdx index fb1fb1237b..44e08c7780 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Proxy.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Cilium Proxy.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Containers.mdx index 9000624d46..c00ea3afb5 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Containers.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Containers.mdx index eb57aad018..d15d1bee2f 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Containers.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Engine.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Engine.mdx index cfe4d30430..b56c4f13d3 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Engine.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Engine.mdx @@ -319,5 +319,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep docker_engine ``` - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Hub repository.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Hub repository.mdx index 2c52a2c61b..1e0708c6c8 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Hub repository.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Docker Hub repository.mdx @@ -261,5 +261,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep dockerhub ``` - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Docker.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Docker.mdx index 02f6f8eaef..315b67ad05 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Docker.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Docker.mdx @@ -348,5 +348,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep docker ``` - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Hyper-V.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Hyper-V.mdx index 9fd8ffafe8..dcea8207c0 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Hyper-V.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Hyper-V.mdx @@ -227,5 +227,3 @@ Metrics: | hyperv.vswitch_packets_flooded | flooded | packets/s | | hyperv.vswitch_learned_mac_addresses | learned | mac addresses/s | | hyperv.vswitch_purged_mac_addresses | purged | mac addresses/s | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Kubelet.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Kubelet.mdx index 4b382c3cd9..ef29a048a3 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Kubelet.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Kubelet.mdx @@ -316,5 +316,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep k8s_kubelet ``` - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Kubeproxy.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Kubeproxy.mdx index 4ab7b12e57..54e2c21050 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Kubeproxy.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Kubeproxy.mdx @@ -283,5 +283,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep k8s_kubeproxy ``` - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes API Server.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes API Server.mdx index a20f356e27..75c8ec7545 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes API Server.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes API Server.mdx @@ -418,6 +418,3 @@ Authentication failed. Verify: TLS verification failed. Options: 1. Provide the correct CA certificate path in `tls_ca` 2. Set `tls_skip_verify: yes` (not recommended for production) - - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes Cluster State.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes Cluster State.mdx index ffd2364775..ee39d127c3 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes Cluster State.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes Cluster State.mdx @@ -360,5 +360,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep k8s_state ``` - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes Containers.mdx index 1d94702418..6b16ef6204 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Kubernetes Containers.mdx @@ -211,5 +211,3 @@ Metrics: | netdata.collector.ipc.cgroups_lookup.server.requests | requests_responded, requests_error, lookup_miss_signals_sent, lookup_miss_signals_coalesced | requests/s | | netdata.collector.ipc.cgroups_lookup.server.request_duration_ms | le_1ms, le_5ms, le_10ms, le_50ms, le_100ms, le_500ms, le_1000ms, gt_1000ms | requests/s | | netdata.collector.cgroups.discovery.scans | discovery_scans_natural, discovery_scans_opportunistic | scans/s | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/LXC Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/LXC Containers.mdx index f7e5fc4280..71d22e47b1 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/LXC Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/LXC Containers.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Libvirt VMs and Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Libvirt VMs and Containers.mdx index a52bab5bde..1980b064ec 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Libvirt VMs and Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Libvirt VMs and Containers.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Mesos.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Mesos.mdx index d9bba64ab4..b08f0a5849 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Mesos.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Mesos.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Nomad Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Nomad Containers.mdx index f069bab23b..45c409970b 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Nomad Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Nomad Containers.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/OpenShift Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/OpenShift Containers.mdx index 33d3b2d824..158d3d3979 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/OpenShift Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/OpenShift Containers.mdx @@ -203,5 +203,3 @@ Metrics: | netdata.collector.ipc.cgroups_lookup.server.requests | requests_responded, requests_error, lookup_miss_signals_sent, lookup_miss_signals_coalesced | requests/s | | netdata.collector.ipc.cgroups_lookup.server.request_duration_ms | le_1ms, le_5ms, le_10ms, le_50ms, le_100ms, le_500ms, le_1000ms, gt_1000ms | requests/s | | netdata.collector.cgroups.discovery.scans | discovery_scans_natural, discovery_scans_opportunistic | scans/s | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/OpenStack VMs.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/OpenStack VMs.mdx index 4a85947c6a..2e87df5e7e 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/OpenStack VMs.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/OpenStack VMs.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Podman Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Podman Containers.mdx index 08d6b2a701..47ffd3722b 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Podman Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Podman Containers.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Podman.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Podman.mdx index 372702d4d7..e2c9e9b883 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Podman.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Podman.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VE Monitoring.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VE Monitoring.mdx index 8b9329b93b..7a8c95bfcb 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VE Monitoring.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VE Monitoring.mdx @@ -150,6 +150,3 @@ If ZFS pool metrics are not showing, ensure the `zfspool` collector is enabled a ### Missing Ceph metrics Ceph metrics require the Ceph collector to be configured with the Ceph REST API endpoint. See the Ceph integration page for details. - - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VE.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VE.mdx index 6e3ae45f01..7e6821132b 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VE.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VE.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VMs and Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VMs and Containers.mdx index fcef1420fd..bd280dd7a9 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VMs and Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Proxmox VMs and Containers.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/VMware vCenter Server.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/VMware vCenter Server.mdx index 81ac6bce7b..1cbe3a8c0b 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/VMware vCenter Server.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/VMware vCenter Server.mdx @@ -988,6 +988,3 @@ If the logs show `vsphere:periodic-discovery-error`, check vCenter reachability, ### vCenter reboot recovery The collector cannot always recover an existing session after a vCenter reboot. Restart `go.d.plugin` if collection does not resume after vCenter becomes available again. - - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Virtual Machines.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Virtual Machines.mdx index 57c9d87079..57e8f1fe94 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Virtual Machines.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Virtual Machines.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/Xen XCP-ng.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/Xen XCP-ng.mdx index 79d24263e6..4fd5f329af 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/Xen XCP-ng.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/Xen XCP-ng.mdx @@ -183,5 +183,3 @@ Metrics: | xendomain.packets_network | received, sent | packets/s | | xendomain.errors_network | received, sent | errors/s | | xendomain.drops_network | received, sent | drops/s | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/containerd Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/containerd Containers.mdx index adb746fb76..9a1cf1d705 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/containerd Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/containerd Containers.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/oVirt VMs.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/oVirt VMs.mdx index cb5d1eaae1..4a8882abe6 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/oVirt VMs.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/oVirt VMs.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/systemd-nspawn Containers.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/systemd-nspawn Containers.mdx index 05c15a8308..919065c73a 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/systemd-nspawn Containers.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/systemd-nspawn Containers.mdx @@ -179,5 +179,3 @@ Metrics: | cgroup.net_operstate | up, down, notpresent, lowerlayerdown, testing, dormant, unknown | state | | cgroup.net_carrier | up, down | state | | cgroup.net_mtu | mtu | octets | - - diff --git a/docs/Collecting Metrics/Collectors/Containers and VMs/vCenter Server Appliance.mdx b/docs/Collecting Metrics/Collectors/Containers and VMs/vCenter Server Appliance.mdx index 5d3e1d12be..52be3ba83a 100644 --- a/docs/Collecting Metrics/Collectors/Containers and VMs/vCenter Server Appliance.mdx +++ b/docs/Collecting Metrics/Collectors/Containers and VMs/vCenter Server Appliance.mdx @@ -346,5 +346,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep vcsa ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/4D Server.mdx b/docs/Collecting Metrics/Collectors/Databases/4D Server.mdx index d6dbb33fd5..7118a0d9b3 100644 --- a/docs/Collecting Metrics/Collectors/Databases/4D Server.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/4D Server.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/AWS RDS.mdx b/docs/Collecting Metrics/Collectors/Databases/AWS RDS.mdx index 0ebe9e727f..9cb4736d45 100644 --- a/docs/Collecting Metrics/Collectors/Databases/AWS RDS.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/AWS RDS.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/ActiveMQ.mdx b/docs/Collecting Metrics/Collectors/Databases/ActiveMQ.mdx index aac92d198a..78295d4cdb 100644 --- a/docs/Collecting Metrics/Collectors/Databases/ActiveMQ.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/ActiveMQ.mdx @@ -329,5 +329,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep activemq ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Apache Pulsar.mdx b/docs/Collecting Metrics/Collectors/Databases/Apache Pulsar.mdx index 50d52aa7df..33a19378d7 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Apache Pulsar.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Apache Pulsar.mdx @@ -373,5 +373,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep pulsar ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Beanstalk.mdx b/docs/Collecting Metrics/Collectors/Databases/Beanstalk.mdx index c7bb2e1d34..d4cc1cbeea 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Beanstalk.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Beanstalk.mdx @@ -305,5 +305,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep beanstalk ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Cassandra.mdx b/docs/Collecting Metrics/Collectors/Databases/Cassandra.mdx index 564b6f373d..6d86ed30ae 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Cassandra.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Cassandra.mdx @@ -371,5 +371,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep cassandra ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/ClickHouse.mdx b/docs/Collecting Metrics/Collectors/Databases/ClickHouse.mdx index aa0c8ade7e..0275dfd958 100644 --- a/docs/Collecting Metrics/Collectors/Databases/ClickHouse.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/ClickHouse.mdx @@ -512,5 +512,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep clickhouse ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/ClusterControl CMON.mdx b/docs/Collecting Metrics/Collectors/Databases/ClusterControl CMON.mdx index 7bbf5300e4..9cde58892b 100644 --- a/docs/Collecting Metrics/Collectors/Databases/ClusterControl CMON.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/ClusterControl CMON.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/CockroachDB.mdx b/docs/Collecting Metrics/Collectors/Databases/CockroachDB.mdx index daa5a3f07f..46d3e19c4e 100644 --- a/docs/Collecting Metrics/Collectors/Databases/CockroachDB.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/CockroachDB.mdx @@ -573,5 +573,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep cockroachdb ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/CouchDB.mdx b/docs/Collecting Metrics/Collectors/Databases/CouchDB.mdx index f5b1956168..b53782ad0c 100644 --- a/docs/Collecting Metrics/Collectors/Databases/CouchDB.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/CouchDB.mdx @@ -315,5 +315,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep couchdb ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Couchbase.mdx b/docs/Collecting Metrics/Collectors/Databases/Couchbase.mdx index b7f4edc140..a6b1bd09a3 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Couchbase.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Couchbase.mdx @@ -388,5 +388,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep couchbase ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Elasticsearch.mdx b/docs/Collecting Metrics/Collectors/Databases/Elasticsearch.mdx index ba989609a5..76c1472c95 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Elasticsearch.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Elasticsearch.mdx @@ -522,5 +522,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep elasticsearch ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/HANA.mdx b/docs/Collecting Metrics/Collectors/Databases/HANA.mdx index 8de2584ac6..7a855c3fed 100644 --- a/docs/Collecting Metrics/Collectors/Databases/HANA.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/HANA.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/IBM DB2.mdx b/docs/Collecting Metrics/Collectors/Databases/IBM DB2.mdx index 3e4a6e42cb..d298cc0a76 100644 --- a/docs/Collecting Metrics/Collectors/Databases/IBM DB2.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/IBM DB2.mdx @@ -485,5 +485,3 @@ Metrics: | db2.tablespace_group_size | used, free | bytes | | db2.tablespace_group_usable_size | total, usable | bytes | | db2.tablespace_group_state | state | state | - - diff --git a/docs/Collecting Metrics/Collectors/Databases/IBM MQ.mdx b/docs/Collecting Metrics/Collectors/Databases/IBM MQ.mdx index 45bfee7fb9..dc3fcf1f1b 100644 --- a/docs/Collecting Metrics/Collectors/Databases/IBM MQ.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/IBM MQ.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/InfluxDB.mdx b/docs/Collecting Metrics/Collectors/Databases/InfluxDB.mdx index 74d0500526..916303baaa 100644 --- a/docs/Collecting Metrics/Collectors/Databases/InfluxDB.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/InfluxDB.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Kafka Consumer Lag.mdx b/docs/Collecting Metrics/Collectors/Databases/Kafka Consumer Lag.mdx index 482b9c7593..d5c5108688 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Kafka Consumer Lag.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Kafka Consumer Lag.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Kafka ZooKeeper.mdx b/docs/Collecting Metrics/Collectors/Databases/Kafka ZooKeeper.mdx index ac88c628c1..8b43e429ed 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Kafka ZooKeeper.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Kafka ZooKeeper.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Kafka.mdx b/docs/Collecting Metrics/Collectors/Databases/Kafka.mdx index afb8527108..b93a8e317c 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Kafka.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Kafka.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/MariaDB.mdx b/docs/Collecting Metrics/Collectors/Databases/MariaDB.mdx index 9c375a526d..ff9f2bc994 100644 --- a/docs/Collecting Metrics/Collectors/Databases/MariaDB.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/MariaDB.mdx @@ -777,5 +777,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep mysql ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/MaxScale.mdx b/docs/Collecting Metrics/Collectors/Databases/MaxScale.mdx index 1d5227efcc..a3a04b6289 100644 --- a/docs/Collecting Metrics/Collectors/Databases/MaxScale.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/MaxScale.mdx @@ -330,5 +330,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep maxscale ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Meilisearch.mdx b/docs/Collecting Metrics/Collectors/Databases/Meilisearch.mdx index fa6f76841f..347684f3b1 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Meilisearch.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Meilisearch.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Memcached.mdx b/docs/Collecting Metrics/Collectors/Databases/Memcached.mdx index 5d8e84f055..6e3b3fca7a 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Memcached.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Memcached.mdx @@ -296,5 +296,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep memcached ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Microsoft SQL Server.mdx b/docs/Collecting Metrics/Collectors/Databases/Microsoft SQL Server.mdx index 5191c52580..b8078832fa 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Microsoft SQL Server.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Microsoft SQL Server.mdx @@ -1118,6 +1118,3 @@ Ensure SQL Server is configured for mixed mode authentication if using SQL login The monitoring user needs VIEW SERVER STATE permission. Grant it with: `GRANT VIEW SERVER STATE TO netdata_user;` - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/MongoDB.mdx b/docs/Collecting Metrics/Collectors/Databases/MongoDB.mdx index 705a495917..fa52a715b6 100644 --- a/docs/Collecting Metrics/Collectors/Databases/MongoDB.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/MongoDB.mdx @@ -562,5 +562,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep mongodb ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/MySQL.mdx b/docs/Collecting Metrics/Collectors/Databases/MySQL.mdx index 2304d55b62..41543727c2 100644 --- a/docs/Collecting Metrics/Collectors/Databases/MySQL.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/MySQL.mdx @@ -777,5 +777,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep mysql ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/NATS.mdx b/docs/Collecting Metrics/Collectors/Databases/NATS.mdx index 57841be6ca..31e61b23c2 100644 --- a/docs/Collecting Metrics/Collectors/Databases/NATS.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/NATS.mdx @@ -477,5 +477,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep nats ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/OpenSearch.mdx b/docs/Collecting Metrics/Collectors/Databases/OpenSearch.mdx index 5245f891c9..2b539f4e69 100644 --- a/docs/Collecting Metrics/Collectors/Databases/OpenSearch.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/OpenSearch.mdx @@ -522,5 +522,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep elasticsearch ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Oracle DB.mdx b/docs/Collecting Metrics/Collectors/Databases/Oracle DB.mdx index 305aa44ee6..4540a53c96 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Oracle DB.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Oracle DB.mdx @@ -535,5 +535,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep oracledb ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Pandas.mdx b/docs/Collecting Metrics/Collectors/Databases/Pandas.mdx index b9e157e614..76acf72543 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Pandas.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Pandas.mdx @@ -421,5 +421,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep pandas ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Patroni.mdx b/docs/Collecting Metrics/Collectors/Databases/Patroni.mdx index 5a45c5f0e0..ec832a8178 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Patroni.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Patroni.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Percona MySQL.mdx b/docs/Collecting Metrics/Collectors/Databases/Percona MySQL.mdx index 4a50ca8181..363b1f1662 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Percona MySQL.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Percona MySQL.mdx @@ -777,5 +777,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep mysql ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/PgBouncer.mdx b/docs/Collecting Metrics/Collectors/Databases/PgBouncer.mdx index 8313e176a8..314e25b2c5 100644 --- a/docs/Collecting Metrics/Collectors/Databases/PgBouncer.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/PgBouncer.mdx @@ -342,5 +342,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep pgbouncer ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Pgpool-II.mdx b/docs/Collecting Metrics/Collectors/Databases/Pgpool-II.mdx index f80060f1d0..2c86928f07 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Pgpool-II.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Pgpool-II.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Pika.mdx b/docs/Collecting Metrics/Collectors/Databases/Pika.mdx index 409af40dc8..2008fd9942 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Pika.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Pika.mdx @@ -309,5 +309,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep pika ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/PostgreSQL.mdx b/docs/Collecting Metrics/Collectors/Databases/PostgreSQL.mdx index f849d13d01..0e8a903c02 100644 --- a/docs/Collecting Metrics/Collectors/Databases/PostgreSQL.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/PostgreSQL.mdx @@ -762,5 +762,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep postgres ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/ProxySQL.mdx b/docs/Collecting Metrics/Collectors/Databases/ProxySQL.mdx index a3fcd6e67f..58e5afe97d 100644 --- a/docs/Collecting Metrics/Collectors/Databases/ProxySQL.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/ProxySQL.mdx @@ -451,5 +451,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep proxysql ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/RabbitMQ.mdx b/docs/Collecting Metrics/Collectors/Databases/RabbitMQ.mdx index e1f4bfe532..03c4596e5b 100644 --- a/docs/Collecting Metrics/Collectors/Databases/RabbitMQ.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/RabbitMQ.mdx @@ -420,5 +420,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep rabbitmq ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Redis Queue.mdx b/docs/Collecting Metrics/Collectors/Databases/Redis Queue.mdx index 0f5b299280..944fbb3297 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Redis Queue.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Redis Queue.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Redis.mdx b/docs/Collecting Metrics/Collectors/Databases/Redis.mdx index 8c718a7ea3..95333300a0 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Redis.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Redis.mdx @@ -402,5 +402,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep redis ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/RethinkDB.mdx b/docs/Collecting Metrics/Collectors/Databases/RethinkDB.mdx index c6d2e174d5..379b413e23 100644 --- a/docs/Collecting Metrics/Collectors/Databases/RethinkDB.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/RethinkDB.mdx @@ -388,5 +388,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep rethinkdb ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Riak KV.mdx b/docs/Collecting Metrics/Collectors/Databases/Riak KV.mdx index 68d1ecc3f4..3cd05cefb9 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Riak KV.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Riak KV.mdx @@ -338,5 +338,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep riakkv ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/SQL databases generic.mdx b/docs/Collecting Metrics/Collectors/Databases/SQL databases generic.mdx index 7336a1accd..fc1120ced1 100644 --- a/docs/Collecting Metrics/Collectors/Databases/SQL databases generic.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/SQL databases generic.mdx @@ -911,5 +911,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep sql ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/ScyllaDB.mdx b/docs/Collecting Metrics/Collectors/Databases/ScyllaDB.mdx index 9f2d961189..506503ab2a 100644 --- a/docs/Collecting Metrics/Collectors/Databases/ScyllaDB.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/ScyllaDB.mdx @@ -486,6 +486,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Sphinx.mdx b/docs/Collecting Metrics/Collectors/Databases/Sphinx.mdx index cd8f04e031..af64e7cd2e 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Sphinx.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Sphinx.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Typesense.mdx b/docs/Collecting Metrics/Collectors/Databases/Typesense.mdx index 8130013190..a3658d0123 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Typesense.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Typesense.mdx @@ -298,5 +298,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep typesense ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/VerneMQ.mdx b/docs/Collecting Metrics/Collectors/Databases/VerneMQ.mdx index 513db010da..a23a5c7763 100644 --- a/docs/Collecting Metrics/Collectors/Databases/VerneMQ.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/VerneMQ.mdx @@ -408,5 +408,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep vernemq ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Vertica.mdx b/docs/Collecting Metrics/Collectors/Databases/Vertica.mdx index af77cf8700..fc3b3cbbf0 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Vertica.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Vertica.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/Warp10.mdx b/docs/Collecting Metrics/Collectors/Databases/Warp10.mdx index 89aa422d29..0acaa30e9d 100644 --- a/docs/Collecting Metrics/Collectors/Databases/Warp10.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/Warp10.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/YugabyteDB.mdx b/docs/Collecting Metrics/Collectors/Databases/YugabyteDB.mdx index 48beec3b53..c4e7cbd878 100644 --- a/docs/Collecting Metrics/Collectors/Databases/YugabyteDB.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/YugabyteDB.mdx @@ -745,5 +745,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep yugabytedb ``` - - diff --git a/docs/Collecting Metrics/Collectors/Databases/mosquitto.mdx b/docs/Collecting Metrics/Collectors/Databases/mosquitto.mdx index 49c9d27dd4..b3ae4d06d3 100644 --- a/docs/Collecting Metrics/Collectors/Databases/mosquitto.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/mosquitto.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Databases/pgBackRest.mdx b/docs/Collecting Metrics/Collectors/Databases/pgBackRest.mdx index dadad58df0..ba27b1bac6 100644 --- a/docs/Collecting Metrics/Collectors/Databases/pgBackRest.mdx +++ b/docs/Collecting Metrics/Collectors/Databases/pgBackRest.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/1-Wire Sensors.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/1-Wire Sensors.mdx index c2f3c19e5d..d4be224c51 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/1-Wire Sensors.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/1-Wire Sensors.mdx @@ -239,5 +239,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep w1sensor ``` - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/AM2320.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/AM2320.mdx index a75ee6b2d0..9a9cbbbc29 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/AM2320.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/AM2320.mdx @@ -232,5 +232,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep am2320 ``` - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/AMD CPU & GPU.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/AMD CPU & GPU.mdx index b7cc78ec88..2aa1d86639 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/AMD CPU & GPU.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/AMD CPU & GPU.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/AMD GPU.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/AMD GPU.mdx index 42816756bb..4c45c2021e 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/AMD GPU.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/AMD GPU.mdx @@ -114,5 +114,3 @@ Metrics: | amdgpu.gpu_mem_vis_vram_usage | free, used | bytes | | amdgpu.gpu_mem_gtt_usage_perc | usage | percentage | | amdgpu.gpu_mem_gtt_usage | free, used | bytes | - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/APC UPS.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/APC UPS.mdx index a6c3566a81..1047c0267f 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/APC UPS.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/APC UPS.mdx @@ -292,5 +292,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep apcupsd ``` - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Christ Elektronik CLM5IP power panel.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Christ Elektronik CLM5IP power panel.mdx index daf8ec63c0..8101f2428f 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Christ Elektronik CLM5IP power panel.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Christ Elektronik CLM5IP power panel.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/CraftBeerPi.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/CraftBeerPi.mdx index b94597ddd8..1594829236 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/CraftBeerPi.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/CraftBeerPi.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Dutch Electricity Smart Meter.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Dutch Electricity Smart Meter.mdx index 5fc9111a39..7f376918f5 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Dutch Electricity Smart Meter.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Dutch Electricity Smart Meter.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Elgato Key Light devices..mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Elgato Key Light devices..mdx index 9ec3d592c0..b28419482f 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Elgato Key Light devices..mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Elgato Key Light devices..mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Energomera smart power meters.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Energomera smart power meters.mdx index 29374a26cd..ced9227d47 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Energomera smart power meters.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Energomera smart power meters.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Hardware information collected from kernel ring..mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Hardware information collected from kernel ring..mdx index 7d38947c72..6bf934960d 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Hardware information collected from kernel ring..mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Hardware information collected from kernel ring..mdx @@ -128,5 +128,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | cpu.temperature | a dimension per core | Celcius | - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/IBM CryptoExpress CEX cards.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/IBM CryptoExpress CEX cards.mdx index a7d7078fe1..7ac0f61520 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/IBM CryptoExpress CEX cards.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/IBM CryptoExpress CEX cards.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/IBM Z Hardware Management Console.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/IBM Z Hardware Management Console.mdx index 8e66ea928f..c6d2e711a0 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/IBM Z Hardware Management Console.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/IBM Z Hardware Management Console.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Intel GPU.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Intel GPU.mdx index 69f1e0a33c..768faf59e7 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Intel GPU.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Intel GPU.mdx @@ -263,5 +263,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep intelgpu ``` - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Intelligent Platform Management Interface IPMI.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Intelligent Platform Management Interface IPMI.mdx index af0de293bc..d3e09aa9a4 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Intelligent Platform Management Interface IPMI.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Intelligent Platform Management Interface IPMI.mdx @@ -319,6 +319,3 @@ options ipmi_si kipmid_max_busy_us=10 This instructs the kernel IPMI module to pause for a tick between checking IPMI. Querying IPMI will be a lot slower now (e.g. several seconds for IPMI to respond), but `kipmi` will not use any noticeable CPU. You can also use a higher number (this is the number of microseconds to poll IPMI for a response, before waiting for a tick). - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Jarvis Standing Desk.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Jarvis Standing Desk.mdx index 421c41a97f..aec5def35a 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Jarvis Standing Desk.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Jarvis Standing Desk.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Linux Sensors.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Linux Sensors.mdx index ea98f99e4b..1f98049c0d 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Linux Sensors.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Linux Sensors.mdx @@ -300,5 +300,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep sensors ``` - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Memory modules DIMMs.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Memory modules DIMMs.mdx index 006e66ff86..5347ecceb3 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Memory modules DIMMs.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Memory modules DIMMs.mdx @@ -150,5 +150,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | mem.edac_mc_errors | correctable, uncorrectable | errors | - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Modbus protocol.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Modbus protocol.mdx index 2b096dc2a1..3a9aec20b3 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Modbus protocol.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Modbus protocol.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nature Remo E lite devices.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nature Remo E lite devices.mdx index 1cded235ce..b857065a52 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nature Remo E lite devices.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nature Remo E lite devices.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Netatmo sensors.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Netatmo sensors.mdx index c4975f9a84..fe6909ccba 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Netatmo sensors.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Netatmo sensors.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nvidia Data Center GPU Manager DCGM.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nvidia Data Center GPU Manager DCGM.mdx index 66d6302eb1..650ec3e308 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nvidia Data Center GPU Manager DCGM.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nvidia Data Center GPU Manager DCGM.mdx @@ -593,5 +593,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep dcgm ``` - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nvidia GPU.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nvidia GPU.mdx index d596987847..1eb1f0557f 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nvidia GPU.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Nvidia GPU.mdx @@ -287,5 +287,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep nvidia_smi ``` - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Personal Weather Station.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Personal Weather Station.mdx index 3edf9e235c..39cd25a392 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Personal Weather Station.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Personal Weather Station.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Philips Hue.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Philips Hue.mdx index 3e56a871de..b26d7ea952 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Philips Hue.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Philips Hue.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Pimoroni Enviro+.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Pimoroni Enviro+.mdx index 6d0f6f17b0..ff05220986 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Pimoroni Enviro+.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Pimoroni Enviro+.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Capping.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Capping.mdx index 7995a7006c..6358f02b8f 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Capping.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Capping.mdx @@ -140,5 +140,3 @@ Metrics: |:------|:----------|:----| | cpu.powercap_intel_rapl_zone | Power | Watts | | cpu.powercap_intel_rapl_subzones | dram, core, uncore | Watts | - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Supply Win.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Supply Win.mdx index 9a5dccf142..357a2f6e71 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Supply Win.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Supply Win.mdx @@ -138,5 +138,3 @@ Metrics: |:------|:----------|:----| | powersupply.capacity | capacity | percentage | | powersupply.voltage | now | V | - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Supply.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Supply.mdx index 74dd299f35..b4c8cb2f4d 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Supply.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Power Supply.mdx @@ -112,5 +112,3 @@ Metrics: | powersupply.charge | empty_design, empty, now, full, full_design | Ah | | powersupply.energy | empty_design, empty, now, full, full_design | Wh | | powersupply.voltage | min_design, min, now, max, max_design | V | - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Powerpal devices.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Powerpal devices.mdx index f91688d0d5..1fed651421 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Powerpal devices.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Powerpal devices.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Radio Thermostat.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Radio Thermostat.mdx index 3dc318192d..89e9931b85 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Radio Thermostat.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Radio Thermostat.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Raritan PDU.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Raritan PDU.mdx index 6a7f9b58cd..204f39c021 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Raritan PDU.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Raritan PDU.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/SMA Inverters.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/SMA Inverters.mdx index 5e1c87560e..aef7b174e8 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/SMA Inverters.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/SMA Inverters.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Salicru EQX inverter.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Salicru EQX inverter.mdx index 6bf07aaa73..0506e193e0 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Salicru EQX inverter.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Salicru EQX inverter.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sense Energy.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sense Energy.mdx index c315974b7e..e83c71afe3 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sense Energy.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sense Energy.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sensors.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sensors.mdx index b8866ec269..e77707f577 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sensors.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sensors.mdx @@ -164,5 +164,3 @@ Metrics: | system.hw.sensor.acceleration.input | inputX, inputY, inputZ | g | | system.hw.sensor.state.input | ready, not_available, no_data, initializing, access_denied, error | status | | system.hw.sensor.custom | inputN | nd | - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Shelly humidity sensor.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Shelly humidity sensor.mdx index 4eabe27a04..dca2739f69 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Shelly humidity sensor.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Shelly humidity sensor.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Siemens S7 PLC.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Siemens S7 PLC.mdx index 2f366ab40a..52b109c076 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Siemens S7 PLC.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Siemens S7 PLC.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Smart meters SML.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Smart meters SML.mdx index 30af3f9ce6..f358e6732f 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Smart meters SML.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Smart meters SML.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Solar logging stick.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Solar logging stick.mdx index 147d50a330..228d5ac728 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Solar logging stick.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Solar logging stick.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Solis Ginlong 5G inverters.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Solis Ginlong 5G inverters.mdx index 3b0b773549..7f953cbf4b 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Solis Ginlong 5G inverters.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Solis Ginlong 5G inverters.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sunspec Solar Energy.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sunspec Solar Energy.mdx index 72b7178f04..4007d4f21f 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sunspec Solar Energy.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Sunspec Solar Energy.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/System thermal zone.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/System thermal zone.mdx index 3bf0a10cdc..7ccf9b0c02 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/System thermal zone.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/System thermal zone.mdx @@ -128,5 +128,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | system.thermalzone_temperature | temperature | celsius | - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tado smart heating solution.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tado smart heating solution.mdx index 870152eaa2..68a9aef7b5 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tado smart heating solution.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tado smart heating solution.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tesla Wall Connector.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tesla Wall Connector.mdx index 421643f693..b402287901 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tesla Wall Connector.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tesla Wall Connector.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tesla vehicle.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tesla vehicle.mdx index ade763e8d9..5a6e5ef402 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tesla vehicle.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Tesla vehicle.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/UPS NUT.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/UPS NUT.mdx index 7d7c822d22..d20ee37f86 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/UPS NUT.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/UPS NUT.mdx @@ -300,5 +300,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep upsd ``` - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Xiaomi Mi Flora.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Xiaomi Mi Flora.mdx index 2ff4874b4a..ccc7d8f760 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/Xiaomi Mi Flora.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/Xiaomi Mi Flora.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Hardware and Sensors/dev.cpu.temperature.mdx b/docs/Collecting Metrics/Collectors/Hardware and Sensors/dev.cpu.temperature.mdx index 08219f7db6..436db1f9a9 100644 --- a/docs/Collecting Metrics/Collectors/Hardware and Sensors/dev.cpu.temperature.mdx +++ b/docs/Collecting Metrics/Collectors/Hardware and Sensors/dev.cpu.temperature.mdx @@ -127,5 +127,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | cpu.temperature | a dimension per core | Celsius | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/8430FT modem.mdx b/docs/Collecting Metrics/Collectors/Networking/8430FT modem.mdx index 2cee1d7bc0..683153c91c 100644 --- a/docs/Collecting Metrics/Collectors/Networking/8430FT modem.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/8430FT modem.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Access Points.mdx b/docs/Collecting Metrics/Collectors/Networking/Access Points.mdx index 057c4815c8..8c574925ab 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Access Points.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Access Points.mdx @@ -251,5 +251,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep ap ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Bird Routing Daemon.mdx b/docs/Collecting Metrics/Collectors/Networking/Bird Routing Daemon.mdx index 6848d4c8bf..104e068b88 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Bird Routing Daemon.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Bird Routing Daemon.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Chrony.mdx b/docs/Collecting Metrics/Collectors/Networking/Chrony.mdx index 4eed5845e2..5dfe97291a 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Chrony.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Chrony.mdx @@ -277,5 +277,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep chrony ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Clash.mdx b/docs/Collecting Metrics/Collectors/Networking/Clash.mdx index 1f6f29251a..57cf2672f6 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Clash.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Clash.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Conntrack.mdx b/docs/Collecting Metrics/Collectors/Networking/Conntrack.mdx index 80ae53ce61..5a87094d9f 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Conntrack.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Conntrack.mdx @@ -109,5 +109,3 @@ Metrics: | netfilter.conntrack_expect | created, deleted, new | expectations/s | | netfilter.conntrack_search | searched, restarted, found | searches/s | | netfilter.conntrack_errors | icmp_error, error_failed, drop, early_drop | events/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/CoreDNS.mdx b/docs/Collecting Metrics/Collectors/Networking/CoreDNS.mdx index 549869f7a8..55bbef37e9 100644 --- a/docs/Collecting Metrics/Collectors/Networking/CoreDNS.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/CoreDNS.mdx @@ -394,5 +394,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep coredns ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/DNSBL.mdx b/docs/Collecting Metrics/Collectors/Networking/DNSBL.mdx index 490b4ab301..58bccccaef 100644 --- a/docs/Collecting Metrics/Collectors/Networking/DNSBL.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/DNSBL.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/DNSdist.mdx b/docs/Collecting Metrics/Collectors/Networking/DNSdist.mdx index fa6fc7468a..f8adf98f36 100644 --- a/docs/Collecting Metrics/Collectors/Networking/DNSdist.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/DNSdist.mdx @@ -299,5 +299,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep dnsdist ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Dnsmasq DHCP.mdx b/docs/Collecting Metrics/Collectors/Networking/Dnsmasq DHCP.mdx index 3b04d0fc8d..764e6d13a7 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Dnsmasq DHCP.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Dnsmasq DHCP.mdx @@ -293,5 +293,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep dnsmasq_dhcp ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Dnsmasq.mdx b/docs/Collecting Metrics/Collectors/Networking/Dnsmasq.mdx index dac23e9f16..bc4448181b 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Dnsmasq.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Dnsmasq.mdx @@ -283,5 +283,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep dnsmasq ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/FRRouting.mdx b/docs/Collecting Metrics/Collectors/Networking/FRRouting.mdx index 3e12ec23dc..7e21ffe7b8 100644 --- a/docs/Collecting Metrics/Collectors/Networking/FRRouting.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/FRRouting.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Fastd.mdx b/docs/Collecting Metrics/Collectors/Networking/Fastd.mdx index 1c69adb312..db8ea1a3d5 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Fastd.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Fastd.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Freifunk network.mdx b/docs/Collecting Metrics/Collectors/Networking/Freifunk network.mdx index ca91e8221c..5c109225df 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Freifunk network.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Freifunk network.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Hitron CODA Cable Modem.mdx b/docs/Collecting Metrics/Collectors/Networking/Hitron CODA Cable Modem.mdx index 91ab41aec5..701f5cc10d 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Hitron CODA Cable Modem.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Hitron CODA Cable Modem.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/IP Virtual Server.mdx b/docs/Collecting Metrics/Collectors/Networking/IP Virtual Server.mdx index 15ff2b5909..cc477518e5 100644 --- a/docs/Collecting Metrics/Collectors/Networking/IP Virtual Server.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/IP Virtual Server.mdx @@ -101,5 +101,3 @@ Metrics: | ipvs.sockets | connections | connections/s | | ipvs.packets | received, sent | packets/s | | ipvs.net | received, sent | kilobits/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/IPv6 Socket Statistics.mdx b/docs/Collecting Metrics/Collectors/Networking/IPv6 Socket Statistics.mdx index 48535383e0..9f4a14b030 100644 --- a/docs/Collecting Metrics/Collectors/Networking/IPv6 Socket Statistics.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/IPv6 Socket Statistics.mdx @@ -103,5 +103,3 @@ Metrics: | ipv6.sockstat6_udplite_sockets | inuse | sockets | | ipv6.sockstat6_raw_sockets | inuse | sockets | | ipv6.sockstat6_frag_sockets | inuse | fragments | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/ISC DHCP.mdx b/docs/Collecting Metrics/Collectors/Networking/ISC DHCP.mdx index 83b4a0963e..9127b0ae13 100644 --- a/docs/Collecting Metrics/Collectors/Networking/ISC DHCP.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/ISC DHCP.mdx @@ -282,5 +282,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep isc_dhcpd ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/InfiniBand.mdx b/docs/Collecting Metrics/Collectors/Networking/InfiniBand.mdx index 288ea21102..b4dea85f02 100644 --- a/docs/Collecting Metrics/Collectors/Networking/InfiniBand.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/InfiniBand.mdx @@ -103,5 +103,3 @@ Metrics: | ib.errors | Pkts_malformated, Pkts_rcvd_discarded, Pkts_sent_discarded, Tick_Wait_to_send, Pkts_missed_resource, Buffer_overrun, Link_Downed, Link_recovered, Link_integrity_err, Link_minor_errors, Pkts_rcvd_with_EBP, Pkts_rcvd_discarded_by_switch, Pkts_sent_discarded_by_switch | errors/s | | ib.hwerrors | Duplicated_packets, Pkt_Seq_Num_gap, Ack_timer_expired, Drop_missing_buffer, Drop_out_of_sequence, NAK_sequence_rcvd, CQE_err_Req, CQE_err_Resp, CQE_Flushed_err_Req, CQE_Flushed_err_Resp, Remote_access_err_Req, Remote_access_err_Resp, Remote_invalid_req, Local_length_err_Resp, RNR_NAK_Packets, CNP_Pkts_ignored, RoCE_ICRC_Errors | errors/s | | ib.hwpackets | RoCEv2_Congestion_sent, RoCEv2_Congestion_rcvd, IB_Congestion_handled, ATOMIC_req_rcvd, Connection_req_rcvd, Read_req_rcvd, Write_req_rcvd, RoCE_retrans_adaptive, RoCE_retrans_timeout, RoCE_slow_restart, RoCE_slow_restart_congestion, RoCE_slow_restart_count | packets/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Keepalived.mdx b/docs/Collecting Metrics/Collectors/Networking/Keepalived.mdx index 4a92f881cc..4573fe654a 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Keepalived.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Keepalived.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Libreswan.mdx b/docs/Collecting Metrics/Collectors/Networking/Libreswan.mdx index 39566172b9..9f3b07f7a6 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Libreswan.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Libreswan.mdx @@ -241,5 +241,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep libreswan ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/NSD.mdx b/docs/Collecting Metrics/Collectors/Networking/NSD.mdx index a66aad5160..d613d96190 100644 --- a/docs/Collecting Metrics/Collectors/Networking/NSD.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/NSD.mdx @@ -257,5 +257,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep nsd ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/NTPd.mdx b/docs/Collecting Metrics/Collectors/Networking/NTPd.mdx index ec529ccc9d..e064a4cbf4 100644 --- a/docs/Collecting Metrics/Collectors/Networking/NTPd.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/NTPd.mdx @@ -316,5 +316,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep ntpd ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Netfilter.mdx b/docs/Collecting Metrics/Collectors/Networking/Netfilter.mdx index e981c17287..40b658c2e0 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Netfilter.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Netfilter.mdx @@ -139,5 +139,3 @@ Metrics: | netfilter.netlink_expect | created, deleted, new | expectations/s | | netfilter.nfacct_packets | a dimension per nfacct object | packets/s | | netfilter.nfacct_bytes | a dimension per nfacct object | kilobytes/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Network Connections.mdx b/docs/Collecting Metrics/Collectors/Networking/Network Connections.mdx index b9b9c48f4e..adf6e68ae8 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Network Connections.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Network Connections.mdx @@ -5,7 +5,7 @@ learn_status: "Published" toc_max_heading_level: "6" toc_collapsible: "true" learn_rel_path: "Collecting Metrics/Collectors/Networking" -keywords: [network, connections, sockets, tcp, udp, ports, freebsd] +keywords: [network, connections, sockets, tcp, udp, ports, freebsd, macos] message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" sidebar_position: "340" learn_link: "https://learn.netdata.cloud/docs/collecting-metrics/collectors/networking/network-connections" @@ -34,15 +34,28 @@ including TCP and UDP sockets in all states, for both IPv4 and IPv6. On Linux it consumes `NETLINK_INET_DIAG` and the `/proc` socket tables; on FreeBSD it walks `KERN_PROC_FILEDESC` and consults `net.inet.tcp.pcblist` to attribute sockets to processes. +On macOS it walks process file descriptors with `libproc` and reads socket +metadata with `PROC_PIDFDSOCKETINFO`. A non-privileged or TCC-restricted +macOS run can omit protected processes; the plugin logs a warning when +permission-denied socket data or truncated process/socket list reads make +results incomplete. This collector is only supported on the following platforms: - Linux - FreeBSD +- macOS This collector only supports collecting metrics from a single instance of this integration. +The plugin needs privileged access to enumerate all process sockets. On macOS, +non-privileged or TCC-restricted runs can omit protected processes; the plugin +logs a warning when permission-denied socket data or truncated process/socket +list reads make results incomplete. +Grant the Netdata plugin its normal privileged permissions and Full Disk Access +when local policy requires it. + ### Default Behavior @@ -57,7 +70,13 @@ The default configuration for this integration does not impose any limits on dat #### Performance Impact -The default configuration for this integration is not expected to impose a significant performance impact on the system. +On macOS, the current established TCP count for `network-protocols` comes +from a cached live socket inventory because macOS does not expose a cheap +per-state TCP counter equivalent to FreeBSD's `net.inet.tcp.states`. +The cache is held for the Function response update window. Busy hosts +with many processes and file descriptors can make that path heavier than +the FreeBSD and Linux implementations. + ## Setup @@ -162,7 +181,7 @@ Metrics: ## Live Data This plugin exposes real-time functions for viewing active network connections and, -on FreeBSD, system-wide TCP and UDP stack statistics. +on FreeBSD and macOS, system-wide TCP and UDP stack statistics. ### Network Connections @@ -171,10 +190,16 @@ Shows active network connections with protocol details, states, addresses, ports Provides both aggregated and detailed views of TCP and UDP connections for IPv4 and IPv6, including connection direction (listen, inbound, outbound), process information, -cgroup/container/service enrichment when available, and TCP performance metrics (RTT, retransmissions). +cgroup/container/service enrichment when available, and TCP performance metrics (RTT, retransmissions) +on platforms that expose those TCP details. On Linux, connections are classified as system or container based on network namespace. On FreeBSD, namespaces are not exposed to userspace and the classification is omitted. +On macOS, Linux-style namespaces and cgroups are not exposed by the host APIs; sockets +are host/system scoped and container/service identity falls back to process identity. +Non-privileged macOS runs may omit protected processes and log a warning when +permission-denied socket data or truncated process/socket list reads make results +incomplete. | Aspect | Description | @@ -202,16 +227,20 @@ This function has no parameters. ### Network Protocols -Shows FreeBSD TCP and UDP stack statistics grouped by transport protocol. +Shows FreeBSD and macOS TCP and UDP stack statistics grouped by transport protocol. Each row covers one transport (TCP or UDP) and reports IPv4+IPv6 combined traffic counters (received, sent, errors), TCP-specific connection counters (active opens, currently established, passive opens, resets, total segments, retransmitted segments), and the UDP-specific datagrams-with-no-port counter. -Values are per-second deltas sampled from `net.inet.tcp.stats`, -`net.inet.tcp.states`, and `net.inet.udp.stats`. The first call after the -plugin starts returns zeros because there is no previous sample to diff against. +Values are per-second deltas sampled from `net.inet.tcp.stats` and +`net.inet.udp.stats`. The current established TCP count comes from +`net.inet.tcp.states` on FreeBSD and from cached live socket inventory on macOS. +Busy macOS hosts with many processes and file descriptors can make that inventory +path heavier than the FreeBSD counter path. +The first call after the plugin starts returns zeros for delta counters because +there is no previous sample to diff against. | Aspect | Description | @@ -220,7 +249,7 @@ plugin starts returns zeros because there is no previous sample to diff against. | Require Cloud | no | | Performance | | | Security | | -| Availability | FreeBSD only. | +| Availability | FreeBSD and macOS. | #### Prerequisites @@ -293,5 +322,3 @@ Topology payload using netdata.topology.v1. | systemd_unit_name | string | | | systemd unit name; scalar in group_by:pid and merged as actor labels in grouped views. | | systemd_unit_kind | string | | | systemd unit kind such as service, scope, or slice; scalar in group_by:pid and merged as actor labels in grouped views. | | actor_kind | string | | | Producer-derived actor kind used to classify containers, services, slices, scopes, VMs, and process fallbacks. | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Network Subsystem.mdx b/docs/Collecting Metrics/Collectors/Networking/Network Subsystem.mdx index 1b57261731..a18d6cad09 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Network Subsystem.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Network Subsystem.mdx @@ -177,5 +177,3 @@ Metrics: | net.rsc_exceptions | exceptions | exceptions/s | | net.rsc_average_packet_size | average | bytes | | net.chimney_connections | connections | connections | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Network interfaces.mdx b/docs/Collecting Metrics/Collectors/Networking/Network interfaces.mdx index dba36150f5..8e4a6a2701 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Network interfaces.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Network interfaces.mdx @@ -141,5 +141,3 @@ Metrics: | net.fifo | receive, transmit | errors | | net.compressed | received, sent | packets/s | | net.events | frames, collisions, carrier | events/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Network statistics.mdx b/docs/Collecting Metrics/Collectors/Networking/Network statistics.mdx index df8f0337cc..df55e5c7f6 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Network statistics.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Network statistics.mdx @@ -164,5 +164,3 @@ Metrics: | ipv6.ect | InNoECTPkts, InECT1Pkts, InECT0Pkts, InCEPkts | packets/s | | ipv6.fragsin | ok, failed, timeout, all | packets/s | | ipv6.fragsout | ok, failed, all | packets/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/NextDNS.mdx b/docs/Collecting Metrics/Collectors/Networking/NextDNS.mdx index 85272b691f..e596e31856 100644 --- a/docs/Collecting Metrics/Collectors/Networking/NextDNS.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/NextDNS.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Open vSwitch.mdx b/docs/Collecting Metrics/Collectors/Networking/Open vSwitch.mdx index 71c4cd320b..a2f5e6abf3 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Open vSwitch.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Open vSwitch.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/OpenROADM devices.mdx b/docs/Collecting Metrics/Collectors/Networking/OpenROADM devices.mdx index 09b2434e8f..5650183c1c 100644 --- a/docs/Collecting Metrics/Collectors/Networking/OpenROADM devices.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/OpenROADM devices.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/OpenVPN status log.mdx b/docs/Collecting Metrics/Collectors/Networking/OpenVPN status log.mdx index c0fd362924..c7ebb9a62c 100644 --- a/docs/Collecting Metrics/Collectors/Networking/OpenVPN status log.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/OpenVPN status log.mdx @@ -263,5 +263,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep openvpn_status_log ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/OpenVPN.mdx b/docs/Collecting Metrics/Collectors/Networking/OpenVPN.mdx index d1a0d6c707..990128836d 100644 --- a/docs/Collecting Metrics/Collectors/Networking/OpenVPN.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/OpenVPN.mdx @@ -311,5 +311,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep openvpn ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Optical modules.mdx b/docs/Collecting Metrics/Collectors/Networking/Optical modules.mdx index 70b63ca8e8..8322c83eeb 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Optical modules.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Optical modules.mdx @@ -251,5 +251,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep ethtool ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Pi-hole.mdx b/docs/Collecting Metrics/Collectors/Networking/Pi-hole.mdx index b2188f1107..1f3ba68af6 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Pi-hole.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Pi-hole.mdx @@ -331,5 +331,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep pihole ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/PowerDNS Authoritative Server.mdx b/docs/Collecting Metrics/Collectors/Networking/PowerDNS Authoritative Server.mdx index 1d8bf2892f..117fc15cd5 100644 --- a/docs/Collecting Metrics/Collectors/Networking/PowerDNS Authoritative Server.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/PowerDNS Authoritative Server.mdx @@ -313,5 +313,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep powerdns ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/PowerDNS Recursor.mdx b/docs/Collecting Metrics/Collectors/Networking/PowerDNS Recursor.mdx index f3815a101e..a22287de01 100644 --- a/docs/Collecting Metrics/Collectors/Networking/PowerDNS Recursor.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/PowerDNS Recursor.mdx @@ -316,5 +316,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep powerdns_recursor ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/RIPE Atlas.mdx b/docs/Collecting Metrics/Collectors/Networking/RIPE Atlas.mdx index e55f60e6ff..ef37ee0277 100644 --- a/docs/Collecting Metrics/Collectors/Networking/RIPE Atlas.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/RIPE Atlas.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/SCTP Statistics.mdx b/docs/Collecting Metrics/Collectors/Networking/SCTP Statistics.mdx index 6c3481d9c0..b9fb799db0 100644 --- a/docs/Collecting Metrics/Collectors/Networking/SCTP Statistics.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/SCTP Statistics.mdx @@ -103,5 +103,3 @@ Metrics: | sctp.packets | received, sent | packets/s | | sctp.packet_errors | invalid, checksum | packets/s | | sctp.fragmentation | reassembled, fragmented | packets/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/SONiC NOS.mdx b/docs/Collecting Metrics/Collectors/Networking/SONiC NOS.mdx index a8fd1aeff5..39071157e4 100644 --- a/docs/Collecting Metrics/Collectors/Networking/SONiC NOS.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/SONiC NOS.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Socket statistics.mdx b/docs/Collecting Metrics/Collectors/Networking/Socket statistics.mdx index 0342665c8c..a07172fc61 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Socket statistics.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Socket statistics.mdx @@ -113,5 +113,3 @@ Metrics: | ipv4.sockstat_raw_sockets | inuse | sockets | | ipv4.sockstat_frag_sockets | inuse | fragments | | ipv4.sockstat_frag_mem | mem | KiB | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/SoftEther VPN Server.mdx b/docs/Collecting Metrics/Collectors/Networking/SoftEther VPN Server.mdx index 2854a4b831..d4ba167c57 100644 --- a/docs/Collecting Metrics/Collectors/Networking/SoftEther VPN Server.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/SoftEther VPN Server.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Softnet Statistics.mdx b/docs/Collecting Metrics/Collectors/Networking/Softnet Statistics.mdx index edf06ae091..ffab42cbf2 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Softnet Statistics.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Softnet Statistics.mdx @@ -139,5 +139,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | cpu.softnet_stat | processed, dropped, squeezed, received_rps, flow_limit_count | events/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Starlink SpaceX.mdx b/docs/Collecting Metrics/Collectors/Networking/Starlink SpaceX.mdx index a9498c8336..939b296e76 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Starlink SpaceX.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Starlink SpaceX.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Synproxy.mdx b/docs/Collecting Metrics/Collectors/Networking/Synproxy.mdx index 8f366f3897..89be26f9da 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Synproxy.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Synproxy.mdx @@ -101,5 +101,3 @@ Metrics: | netfilter.synproxy_syn_received | received | packets/s | | netfilter.synproxy_conn_reopened | reopened | connections/s | | netfilter.synproxy_cookies | valid, invalid, retransmits | cookies/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Timex.mdx b/docs/Collecting Metrics/Collectors/Networking/Timex.mdx index cfb31c1f1f..ab935c0a72 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Timex.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Timex.mdx @@ -151,5 +151,3 @@ Metrics: | system.clock_sync_state | state | state | | system.clock_status | unsync, clockerr | status | | system.clock_sync_offset | offset | milliseconds | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Tor.mdx b/docs/Collecting Metrics/Collectors/Networking/Tor.mdx index 12cd56e4d3..52debd0991 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Tor.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Tor.mdx @@ -276,5 +276,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep tor ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Ubiquiti UFiber OLT.mdx b/docs/Collecting Metrics/Collectors/Networking/Ubiquiti UFiber OLT.mdx index 2c7a477e3c..1a7eba86c6 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Ubiquiti UFiber OLT.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Ubiquiti UFiber OLT.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Unbound.mdx b/docs/Collecting Metrics/Collectors/Networking/Unbound.mdx index c143139439..9180d6881d 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Unbound.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Unbound.mdx @@ -357,5 +357,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep unbound ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Windows Network Protocols.mdx b/docs/Collecting Metrics/Collectors/Networking/Windows Network Protocols.mdx index ec153f9cb5..1ff8c5ad29 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Windows Network Protocols.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Windows Network Protocols.mdx @@ -171,5 +171,3 @@ This function has no parameters. | Column | Type | Unit | Visibility | Description | |:-------|:-----|:-----|:-----------|:------------| - - diff --git a/docs/Collecting Metrics/Collectors/Networking/WireGuard.mdx b/docs/Collecting Metrics/Collectors/Networking/WireGuard.mdx index e02c8adccf..2058cc9534 100644 --- a/docs/Collecting Metrics/Collectors/Networking/WireGuard.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/WireGuard.mdx @@ -253,5 +253,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep wireguard ``` - - diff --git a/docs/Collecting Metrics/Collectors/Networking/Wireless network interfaces.mdx b/docs/Collecting Metrics/Collectors/Networking/Wireless network interfaces.mdx index 7955973e97..8103e5f26b 100644 --- a/docs/Collecting Metrics/Collectors/Networking/Wireless network interfaces.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/Wireless network interfaces.mdx @@ -104,5 +104,3 @@ Metrics: | wireless.noise_level | noise_level | dBm | | wireless.discarded_packets | nwid, crypt, frag, retry, misc | packets/s | | wireless.missed_beacons | missed_beacons | frames/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/eBPF Socket.mdx b/docs/Collecting Metrics/Collectors/Networking/eBPF Socket.mdx index 7b3eb3647e..603d1f486e 100644 --- a/docs/Collecting Metrics/Collectors/Networking/eBPF Socket.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/eBPF Socket.mdx @@ -221,5 +221,3 @@ Metrics: | services.net_tcp_retransmit | calls | calls/s | | services.net_udp_send | calls | calls/s | | services.net_udp_recv | calls | calls/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/getifaddrs.mdx b/docs/Collecting Metrics/Collectors/Networking/getifaddrs.mdx index 0dd8b3afae..948433f159 100644 --- a/docs/Collecting Metrics/Collectors/Networking/getifaddrs.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/getifaddrs.mdx @@ -168,5 +168,3 @@ Metrics: | net.errors | inbound, outbound | errors/s | | net.drops | inbound, outbound | drops/s | | net.events | collisions | events/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/ipfw.mdx b/docs/Collecting Metrics/Collectors/Networking/ipfw.mdx index 1f00fe3bf4..34054c3b36 100644 --- a/docs/Collecting Metrics/Collectors/Networking/ipfw.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/ipfw.mdx @@ -133,5 +133,3 @@ Metrics: | ipfw.bytes | a dimension per static rule | bytes/s | | ipfw.active | a dimension per dynamic rule | rules | | ipfw.expired | a dimension per dynamic rule | rules | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/net.inet.icmp.stats.mdx b/docs/Collecting Metrics/Collectors/Networking/net.inet.icmp.stats.mdx index 31ca6d5e49..0d2222ea8b 100644 --- a/docs/Collecting Metrics/Collectors/Networking/net.inet.icmp.stats.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/net.inet.icmp.stats.mdx @@ -131,5 +131,3 @@ Metrics: | ipv4.icmp | received, sent | packets/s | | ipv4.icmp_errors | InErrors, OutErrors, InCsumErrors | packets/s | | ipv4.icmpmsg | InEchoReps, OutEchoReps, InEchos, OutEchos | packets/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/net.inet.ip.stats.mdx b/docs/Collecting Metrics/Collectors/Networking/net.inet.ip.stats.mdx index 7606bf6e37..fb89d7a672 100644 --- a/docs/Collecting Metrics/Collectors/Networking/net.inet.ip.stats.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/net.inet.ip.stats.mdx @@ -133,5 +133,3 @@ Metrics: | ipv4.fragsout | ok, failed, created | packets/s | | ipv4.fragsin | ok, failed, all | packets/s | | ipv4.errors | InDiscards, OutDiscards, InHdrErrors, OutNoRoutes, InAddrErrors, InUnknownProtos | packets/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/net.inet.tcp.states.mdx b/docs/Collecting Metrics/Collectors/Networking/net.inet.tcp.states.mdx index aa2147fbed..8463ca65e5 100644 --- a/docs/Collecting Metrics/Collectors/Networking/net.inet.tcp.states.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/net.inet.tcp.states.mdx @@ -132,5 +132,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | ipv4.tcpsock | connections | active connections | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/net.inet.tcp.stats.mdx b/docs/Collecting Metrics/Collectors/Networking/net.inet.tcp.stats.mdx index eea57185fa..e935b287b7 100644 --- a/docs/Collecting Metrics/Collectors/Networking/net.inet.tcp.stats.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/net.inet.tcp.stats.mdx @@ -149,5 +149,3 @@ Metrics: | ipv4.tcpsyncookies | received, sent, failed | packets/s | | ipv4.tcplistenissues | overflows | packets/s | | ipv4.ecnpkts | InCEPkts, InECT0Pkts, InECT1Pkts, OutECT0Pkts, OutECT1Pkts | packets/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/net.inet.udp.stats.mdx b/docs/Collecting Metrics/Collectors/Networking/net.inet.udp.stats.mdx index 26ba83317c..1fae3f2198 100644 --- a/docs/Collecting Metrics/Collectors/Networking/net.inet.udp.stats.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/net.inet.udp.stats.mdx @@ -135,5 +135,3 @@ Metrics: |:------|:----------|:----| | ipv4.udppackets | received, sent | packets/s | | ipv4.udperrors | InErrors, NoPorts, RcvbufErrors, InCsumErrors, IgnoredMulti | events/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/net.inet6.icmp6.stats.mdx b/docs/Collecting Metrics/Collectors/Networking/net.inet6.icmp6.stats.mdx index 564b866fd5..01fb28dd06 100644 --- a/docs/Collecting Metrics/Collectors/Networking/net.inet6.icmp6.stats.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/net.inet6.icmp6.stats.mdx @@ -139,5 +139,3 @@ Metrics: | ipv6.icmprouter | InSolicits, OutSolicits, InAdvertisements, OutAdvertisements | messages/s | | ipv6.icmpneighbor | InSolicits, OutSolicits, InAdvertisements, OutAdvertisements | messages/s | | ipv6.icmptypes | InType1, InType128, InType129, InType136, OutType1, OutType128, OutType129, OutType133, OutType135, OutType143 | messages/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/net.inet6.ip6.stats.mdx b/docs/Collecting Metrics/Collectors/Networking/net.inet6.ip6.stats.mdx index b975eaebd6..57cf3c14a3 100644 --- a/docs/Collecting Metrics/Collectors/Networking/net.inet6.ip6.stats.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/net.inet6.ip6.stats.mdx @@ -133,5 +133,3 @@ Metrics: | ipv6.fragsout | ok, failed, all | packets/s | | ipv6.fragsin | ok, failed, timeout, all | packets/s | | ipv6.errors | InDiscards, OutDiscards, InHdrErrors, InAddrErrors, InTruncatedPkts, InNoRoutes, OutNoRoutes | packets/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/net.isr.mdx b/docs/Collecting Metrics/Collectors/Networking/net.isr.mdx index b4bc874d50..e656c5bd10 100644 --- a/docs/Collecting Metrics/Collectors/Networking/net.isr.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/net.isr.mdx @@ -147,5 +147,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | cpu.softnet_stat | dispatched, hybrid_dispatched, qdrops, queued | events/s | - - diff --git a/docs/Collecting Metrics/Collectors/Networking/strongSwan.mdx b/docs/Collecting Metrics/Collectors/Networking/strongSwan.mdx index 57cedf9f55..682d66dbf8 100644 --- a/docs/Collecting Metrics/Collectors/Networking/strongSwan.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/strongSwan.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Networking/tc QoS classes.mdx b/docs/Collecting Metrics/Collectors/Networking/tc QoS classes.mdx index 71e82c60bb..deb4bf136f 100644 --- a/docs/Collecting Metrics/Collectors/Networking/tc QoS classes.mdx +++ b/docs/Collecting Metrics/Collectors/Networking/tc QoS classes.mdx @@ -178,5 +178,3 @@ Metrics: | tc.qos_dropped | a dimension per class | packets/s | | tc.qos_tokens | a dimension per class | tokens | | tc.qos_ctokens | a dimension per class | ctokens | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Applications.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Applications.mdx index 3114a6ea59..fbe88d8be2 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Applications.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Applications.mdx @@ -141,5 +141,3 @@ Metrics: | netdata.collector.ipc.cgroups_lookup.client.queue_depth | queue_depth | paths | | netdata.collector.ipc.apps_lookup.server.requests | requests_responded, requests_error | requests/s | | netdata.collector.ipc.apps_lookup.server.request_duration_ms | le_1ms, le_5ms, le_10ms, le_50ms, le_100ms, le_500ms, le_1000ms, gt_1000ms | requests/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/CPU performance.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/CPU performance.mdx index 705975b97a..4c3c9caaf7 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/CPU performance.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/CPU performance.mdx @@ -219,6 +219,3 @@ You can run `perf.plugin` with the debug option enabled to troubleshoot issues w ```bash ./perf.plugin 1 all debug ``` - - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Entropy.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Entropy.mdx index da0470036d..10196e876b 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Entropy.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Entropy.mdx @@ -137,5 +137,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | system.entropy | entropy | entropy | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/FreeBSD RCTL-RACCT.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/FreeBSD RCTL-RACCT.mdx index 40474c724c..bdbaaede58 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/FreeBSD RCTL-RACCT.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/FreeBSD RCTL-RACCT.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/IBM i AS 400.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/IBM i AS 400.mdx index 1c9c223427..25e76bad6c 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/IBM i AS 400.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/IBM i AS 400.mdx @@ -527,5 +527,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | as400.temp_storage_bucket | current, peak | bytes | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Inter Process Communication.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Inter Process Communication.mdx index deb9bc6ff9..9d9577ae0f 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Inter Process Communication.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Inter Process Communication.mdx @@ -124,5 +124,3 @@ Metrics: | system.message_queue_bytes | a dimension per queue | bytes | | system.shared_memory_segments | segments | segments | | system.shared_memory_bytes | bytes | bytes | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Interrupts.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Interrupts.mdx index 0c7cd0a20e..e8d8621657 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Interrupts.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Interrupts.mdx @@ -145,5 +145,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | cpu.interrupts | a dimension per device | interrupts/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Kernel Same-Page Merging.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Kernel Same-Page Merging.mdx index 302660c8c4..8749493908 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Kernel Same-Page Merging.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Kernel Same-Page Merging.mdx @@ -107,5 +107,3 @@ Metrics: | mem.ksm | shared, unshared, sharing, volatile | MiB | | mem.ksm_savings | savings, offered | MiB | | mem.ksm_ratios | savings | percentage | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Linux Audit Subsystem.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Linux Audit Subsystem.mdx index 2d412353e8..e2fa881192 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Linux Audit Subsystem.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Linux Audit Subsystem.mdx @@ -149,5 +149,3 @@ Metrics: | audit.lost | lost | events/s | | audit.enabled | disabled, enabled, immutable | state | | audit.failure | silent, printk, panic | state | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Linux ZSwap.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Linux ZSwap.mdx index 7feae9c22c..4421862ef0 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Linux ZSwap.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Linux ZSwap.mdx @@ -146,5 +146,3 @@ Metrics: | system.zswap_written_back_raw_bytes | written_back | bytes/s | | system.zswap_same_filled_raw_size | same_filled | bytes | | system.zswap_duplicate_entry | duplicate | entries/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Linux kernel SLAB allocator statistics.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Linux kernel SLAB allocator statistics.mdx index a43ce1eab9..3ed35b3e82 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Linux kernel SLAB allocator statistics.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Linux kernel SLAB allocator statistics.mdx @@ -139,5 +139,3 @@ Metrics: | mem.slabmemory | a dimension per cache | B | | mem.slabfilling | a dimension per cache | % | | mem.slabwaste | a dimension per cache | B | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Memory Statistics Win.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Memory Statistics Win.mdx index 06993789ca..437dabd876 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Memory Statistics Win.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Memory Statistics Win.mdx @@ -140,5 +140,3 @@ Metrics: | mem.system_drivers | resident, total | bytes | | mem.page_faults_breakdown | cache, demand_zero, transition, write_copies | faults/s | | mem.transition_repurposed | repurposed | pages/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Memory Statistics.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Memory Statistics.mdx index 2530b830a1..fe74eb20d2 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Memory Statistics.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Memory Statistics.mdx @@ -142,5 +142,3 @@ Metrics: | mem.thp_compact | success, fail, stall | events/s | | mem.oom_kill | kills | kills/s | | mem.numa | local, foreign, interleave, other, pte_updates, huge_pte_updates, hint_faults, hint_faults_local, pages_migrated | events/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Memory Usage.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Memory Usage.mdx index 99a892bc42..faa85010bc 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Memory Usage.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Memory Usage.mdx @@ -139,5 +139,3 @@ Metrics: | mem.high_low | high_used, low_used, high_free, low_free | MiB | | mem.cma | used, free | MiB | | mem.directmaps | 4k, 2m, 4m, 1g | MiB | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/NUMA Architecture.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/NUMA Architecture.mdx index 11dbcd91b3..2ae5030d35 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/NUMA Architecture.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/NUMA Architecture.mdx @@ -132,5 +132,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | mem.numa_node_mem_usage | free, standby | bytes | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Non-Uniform Memory Access.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Non-Uniform Memory Access.mdx index 3c2b5125ad..2ca859e7eb 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Non-Uniform Memory Access.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Non-Uniform Memory Access.mdx @@ -115,5 +115,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | mem.numa_nodes | hit, miss, local, foreign, interleave, other | events/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/OpenRC.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/OpenRC.mdx index d697c3b923..6c1b0516e9 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/OpenRC.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/OpenRC.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Page types.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Page types.mdx index a348ec29d3..1de8ec68f7 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Page types.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Page types.mdx @@ -117,5 +117,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | mem.pagetype | a dimension per pagesize | B | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Pressure Stall Information.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Pressure Stall Information.mdx index 39b90d630b..cb4e3be5e5 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Pressure Stall Information.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Pressure Stall Information.mdx @@ -133,5 +133,3 @@ Metrics: | system.io_some_pressure_stall_time | time | ms | | system.io_full_pressure | some10, some60, some300 | percentage | | system.io_full_pressure_stall_time | time | ms | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Processor.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Processor.mdx index 41cb526ccf..9c0f20eaf4 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Processor.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Processor.mdx @@ -149,5 +149,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | cpu.cpu | interrupts, user, privileged, dpc | percentage | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Semaphore statistics.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Semaphore statistics.mdx index 9974d73728..50f9e192e6 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Semaphore statistics.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Semaphore statistics.mdx @@ -133,5 +133,3 @@ Metrics: |:------|:----------|:----| | system.ipc_semaphores | semaphores | semaphores | | system.ipc_mutexes | mutexes | mutexes | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/SoftIRQ statistics.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/SoftIRQ statistics.mdx index 2325d5b0f2..427e0ac986 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/SoftIRQ statistics.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/SoftIRQ statistics.mdx @@ -137,5 +137,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | cpu.softirqs | a dimension per softirq | softirqs/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Supervisor.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Supervisor.mdx index cec358fd20..886b0a9d64 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Supervisor.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Supervisor.mdx @@ -302,5 +302,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep supervisord ``` - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/System Load Average.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/System Load Average.mdx index 98a5023d3b..c8c8025c7b 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/System Load Average.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/System Load Average.mdx @@ -132,5 +132,3 @@ Metrics: |:------|:----------|:----| | system.load | load1, load5, load15 | load | | system.active_processes | active | processes | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/System Memory Fragmentation.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/System Memory Fragmentation.mdx index ce895a6ef5..09277217a9 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/System Memory Fragmentation.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/System Memory Fragmentation.mdx @@ -144,5 +144,3 @@ Metrics: | mem.fragmentation_index_dma | order0, order1, order2, order3, order4, order5, order6, order7, order8, order9, order10 | index | | mem.fragmentation_index_dma32 | order0, order1, order2, order3, order4, order5, order6, order7, order8, order9, order10 | index | | mem.fragmentation_index_normal | order0, order1, order2, order3, order4, order5, order6, order7, order8, order9, order10 | index | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/System Uptime.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/System Uptime.mdx index 75ac72ab12..1cd43d1cc4 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/System Uptime.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/System Uptime.mdx @@ -112,5 +112,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | system.uptime | uptime | seconds | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/System statistics windows-plugin.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/System statistics windows-plugin.mdx index 73ba19bd30..ff9b534206 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/System statistics windows-plugin.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/System statistics windows-plugin.mdx @@ -131,5 +131,3 @@ Metrics: | system.threads | threads | threads | | system.ctxt | switches | context switches/s | | system.processor_queue_length | threads | threads | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/System statistics.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/System statistics.mdx index 9b359b4aa6..516ebec28e 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/System statistics.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/System statistics.mdx @@ -184,5 +184,3 @@ Metrics: |:------|:----------|:----| | cpu.cpu | guest_nice, guest, steal, softirq, irq, user, system, nice, iowait, idle | percentage | | cpuidle.cpu_cstate_residency_time | a dimension per c-state | percentage | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Systemd Services.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Systemd Services.mdx index d8d9d7855b..ad360ce988 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Systemd Services.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Systemd Services.mdx @@ -122,5 +122,3 @@ Metrics: | systemd.service.cachestat_dirties | dirty | page/s | | systemd.service.cachestat_hits | hit | hits/s | | systemd.service.cachestat_misses | miss | misses/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Systemd Units.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Systemd Units.mdx index 3abebf4a1e..2a5802fa54 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Systemd Units.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Systemd Units.mdx @@ -379,5 +379,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep systemdunits ``` - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/User Groups.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/User Groups.mdx index 4e4c003e74..023914a575 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/User Groups.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/User Groups.mdx @@ -119,5 +119,3 @@ Metrics: | usergroup.fds_open | files, sockets, pipes, inotifies, event, timer, signal, eventpolls, other | fds | | usergroup.uptime | uptime | seconds | | usergroup.uptime_summary | min, avg, max | seconds | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Users.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Users.mdx index c73a4f3c5f..907a796f72 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Users.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Users.mdx @@ -119,5 +119,3 @@ Metrics: | user.fds_open | files, sockets, pipes, inotifies, event, timer, signal, eventpolls, other | fds | | user.uptime | uptime | seconds | | user.uptime_summary | min, avg, max | seconds | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Windows Services windows-plugin.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Windows Services windows-plugin.mdx index 15326fa407..5331683c4a 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Windows Services windows-plugin.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Windows Services windows-plugin.mdx @@ -132,5 +132,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | windows.service_state | running, stopped, start_pending, stop_pending, continue_pending, pause_pending, paused, unknown | state | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/Windows Services.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/Windows Services.mdx index d8308e30f0..583d6893c6 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/Windows Services.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/Windows Services.mdx @@ -113,5 +113,3 @@ Metrics: | service.threads | threads | threads | • | | service.uptime | uptime | seconds | • | | service.uptime_summary | min, avg, max | seconds | • | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/ZRAM.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/ZRAM.mdx index 6a2d673185..1931de4e7c 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/ZRAM.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/ZRAM.mdx @@ -110,5 +110,3 @@ Metrics: | mem.zram_savings | savings, original | MiB | | mem.zram_ratio | ratio | ratio | | mem.zram_efficiency | percent | percentage | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/dev.cpu.0.freq.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/dev.cpu.0.freq.mdx index bf590081e0..231c4854fb 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/dev.cpu.0.freq.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/dev.cpu.0.freq.mdx @@ -118,5 +118,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | cpu.scaling_cur_freq | frequency | MHz | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Cachestat.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Cachestat.mdx index a103273213..5054a1e4ed 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Cachestat.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Cachestat.mdx @@ -167,5 +167,3 @@ Metrics: | services.cachestat_dirties | a dimension per systemd service | page/s | | services.cachestat_hits | a dimension per systemd service | hits/s | | services.cachestat_misses | a dimension per systemd service | misses/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF DCstat.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF DCstat.mdx index c1d11f887f..67ba7752b9 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF DCstat.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF DCstat.mdx @@ -199,5 +199,3 @@ Metrics: | services.dc_reference | a dimension per systemd service | files | | services.dc_not_cache | a dimension per systemd service | files | | services.dc_not_found | a dimension per systemd service | files | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Filedescriptor.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Filedescriptor.mdx index 91c693df52..0b099aa950 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Filedescriptor.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Filedescriptor.mdx @@ -199,5 +199,3 @@ Metrics: | app.ebpf_file_open_error | calls | calls/s | | app.ebpf_file_closed | calls | calls/s | | app.ebpf_file_close_error | calls | calls/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Hardirq.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Hardirq.mdx index 5c16cda429..cd82e87cb3 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Hardirq.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Hardirq.mdx @@ -154,5 +154,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | system.hardirq_latency | hardirq names | milliseconds | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF OOMkill.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF OOMkill.mdx index be7806216c..3a8742d36d 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF OOMkill.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF OOMkill.mdx @@ -178,5 +178,3 @@ Define whether plugin will monitor the call (`entry`) for the functions or it wi ### lifetime Set default lifetime for thread when enabled by cloud. - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Process.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Process.mdx index 51841b52e7..ef131f3a1e 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Process.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Process.mdx @@ -113,5 +113,3 @@ Metrics: | netdata.ebpf_hash_tables_insert_pid_elements | thread | rows | | netdata.ebpf_hash_tables_remove_pid_elements | thread | rows | | netdata.ebpf_ipc_usage | positions | % | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Processes.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Processes.mdx index bcbc438406..5dc0684ca3 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Processes.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF Processes.mdx @@ -209,5 +209,3 @@ Metrics: | services.task_close | a dimension per systemd service | calls/s | | services.task_exit | a dimension per systemd service | calls/s | | services.task_error | a dimension per systemd service | calls/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SHM.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SHM.mdx index ca30308991..0d323d13f9 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SHM.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SHM.mdx @@ -207,5 +207,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | system.shared_memory_calls | get, at, dt, ctl | calls/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SWAP.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SWAP.mdx index 1b5930cc4c..465d519de1 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SWAP.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SWAP.mdx @@ -192,5 +192,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | mem.swapcalls | write, read | calls/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SoftIRQ.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SoftIRQ.mdx index 9991b796c7..ea31043548 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SoftIRQ.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/eBPF SoftIRQ.mdx @@ -154,5 +154,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | system.softirq_latency | soft IRQs | milliseconds | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/hw.intrcnt.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/hw.intrcnt.mdx index d6c65f4c3a..418a2a2d73 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/hw.intrcnt.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/hw.intrcnt.mdx @@ -128,5 +128,3 @@ Metrics: |:------|:----------|:----| | system.intr | interrupts | interrupts/s | | system.interrupts | a dimension per interrupt | interrupts/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/kern.cp_time.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/kern.cp_time.mdx index c53e984933..d08499ad25 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/kern.cp_time.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/kern.cp_time.mdx @@ -146,5 +146,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | cpu.cpu | nice, system, user, interrupt, idle | percentage | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.msq.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.msq.mdx index 01666e4ee3..edee8eb9e1 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.msq.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.msq.mdx @@ -129,5 +129,3 @@ Metrics: | system.ipc_msq_queues | queues | queues | | system.ipc_msq_messages | messages | messages | | system.ipc_msq_size | allocated, used | bytes | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.sem.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.sem.mdx index 8c35427929..d49e7b7578 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.sem.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.sem.mdx @@ -134,5 +134,3 @@ Metrics: |:------|:----------|:----| | system.ipc_semaphores | semaphores | semaphores | | system.ipc_semaphore_arrays | arrays | arrays | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.shm.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.shm.mdx index be4a023ad2..fec4220095 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.shm.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/kern.ipc.shm.mdx @@ -128,5 +128,3 @@ Metrics: |:------|:----------|:----| | system.ipc_shared_mem_segs | segments | segments | | system.ipc_shared_mem_size | allocated | KiB | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/macOS.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/macOS.mdx index e1d8777079..750008e22e 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/macOS.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/macOS.mdx @@ -26,12 +26,18 @@ Module: mach_smi ## Overview -Monitor macOS metrics for efficient operating system performance. +Monitor macOS metrics for efficient operating system performance, power sources, thermal pressure, sensors, fans, storage, and networking. -The plugin uses three different methods to collect data: - - The function `sysctlbyname` is called to collect network, swap, loadavg, and boot time. - - The functtion `host_statistic` is called to collect CPU and Virtual memory data; - - The function `IOServiceGetMatchingServices` to collect storage information. +The plugin uses eight different methods to collect data: + +- The function `sysctlbyname` is called to collect network, swap, loadavg, and boot time. +- The function `host_statistics` is called to collect CPU and virtual memory data. +- The function `IOServiceGetMatchingServices` is called to collect storage information. +- The function `IOPSCopyPowerSourcesInfo` is called to collect battery and UPS power source data. +- The private Apple IOReport framework is loaded at runtime to collect Apple Silicon GPU utilization, performance-state residency, clock frequency, and power draw without root privileges when macOS exposes the required channels. +- AppleSMC and IOHID are sampled directly to collect hardware temperature, fan, voltage, current, and power sensors without requiring `powermetrics`. +- The native Apple `powermetrics` command is sampled in continuous loop mode to collect thermal pressure, plus fallback SMC temperatures, fan speed, and fallback GPU power when the macOS sampler is available. +- The native IOKit NVMe SMART user client is sampled to collect NVMe health data when macOS exposes readable SMART-capable NVMe services. This collector is only supported on the following platforms: @@ -40,20 +46,21 @@ This collector is only supported on the following platforms: This collector only supports collecting metrics from a single instance of this integration. +Battery, UPS power-source, native Apple Silicon GPU, direct AppleSMC/IOHID hardware sensors, and native NVMe SMART metrics do not require external tools. Apple Silicon GPU metrics use the private IOReport framework loaded at runtime and gracefully disappear when unavailable. Exact thermal pressure and fallback GPU-power readings use the native Apple `powermetrics` command, which requires `netdata` to run with sufficient macOS privileges. The default sampler falls back through available sampler sets; without required privileges, the thermal sampler disables itself after repeated startup probe failures. ### Default Behavior #### Auto-Detection -This integration doesn't support auto-detection. +The collector auto-detects macOS power sources, Apple Silicon IOReport GPU channels, AppleSMC/IOHID hardware sensors, and readable NVMe SMART-capable services, and only creates charts for values exposed by the hardware and operating system. #### Limits -The default configuration for this integration does not impose any limits on data collection. +Power-source, AppleSMC, IOHID, and NVMe SMART enumeration are capped internally to avoid unexpected chart cardinality. IOReport GPU sampling is in-process and single-device. The `powermetrics` sampler runs as one long-lived loop process and only publishes newly received samples. #### Performance Impact -The default configuration for this integration is not expected to impose a significant performance impact on the system. +Power-source, direct IOHID sensor, and IOReport GPU collection are lightweight. AppleSMC sensor key discovery is rate-limited, and AppleSMC sensor values default to a ten-second cadence because AppleSMC reads can generate macOS CoreAnalytics log traffic. Native NVMe SMART reads default to the same ten-second cadence as the existing NVMe collector, while device discovery is rate-limited. Thermal pressure collection keeps one `powermetrics` process running in loop mode at a configurable output interval, defaulting to once per second. ## Setup @@ -66,11 +73,16 @@ No action required. #### Options -There are three sections in the file which you can configure: +There are eight sections in the file which you can configure: - `[plugin:macos:sysctl]` - Enable or disable monitoring for network, swap, loadavg, and boot time. - `[plugin:macos:mach_smi]` - Enable or disable monitoring for CPU and Virtual memory. - `[plugin:macos:iokit]` - Enable or disable monitoring for storage device. +- `[plugin:macos:power_sources]` - Enable or disable battery and UPS power-source metrics. +- `[plugin:macos:gpu]` - Enable or disable Apple Silicon IOReport GPU monitoring. +- `[plugin:macos:sensors]` - Configure direct AppleSMC and IOHID hardware sensor monitoring. +- `[plugin:macos:powermetrics]` - Configure thermal and fan sampling through native Apple `powermetrics`. +- `[plugin:macos:nvme_smart]` - Configure native IOKit NVMe SMART sampling.
@@ -118,6 +130,31 @@ There are three sections in the file which you can configure: | swap i/o | Enable or disable monitoring of SWAP I/O metrics (I/O Swap). | yes | no | | memory page faults | Enable or disable monitoring of memory page faults metrics (memory, cow, I/O page, compress, decompress, zero fill, reactivate, purge). | yes | no | | disk i/o | Enable or disable monitoring of disk I/O metrics (In, Out). | yes | no | +| battery capacity | Enable or disable monitoring of battery capacity metrics. | yes | no | +| power supply voltage | Enable or disable monitoring of battery and UPS voltage metrics. | yes | no | +| power supply current | Enable or disable monitoring of battery and UPS current metrics. | yes | no | +| battery temperature | Enable or disable monitoring of battery temperature metrics when exposed by macOS. | yes | no | +| battery cycle count | Enable or disable monitoring of battery cycle count metrics when exposed by macOS. | yes | no | +| enabled | Enable or disable Apple Silicon GPU monitoring through IOReport. The module creates charts only when macOS exposes the required IOReport GPU channels. | yes | no | +| SMC temperature sample every | How often to read AppleSMC GPU temperature keys when IOHID GPU temperature is unavailable and AppleSMC is used as the fallback source. | 10s | no | +| enabled | Enable or disable direct AppleSMC and IOHID hardware sensor monitoring. | yes | no | +| SMC sensors | Enable or disable direct AppleSMC hardware temperature, fan, voltage, current, and power sensor monitoring. | yes | no | +| IOHID sensors | Enable or disable direct IOHID temperature, current, and voltage sensor monitoring. | yes | no | +| discovery every | How often to rescan AppleSMC for available hardware sensor keys. | 300s | no | +| SMC sample every | How often to read values from discovered AppleSMC hardware sensor keys. | 10s | no | +| sample every | Output interval passed to the long-running native `powermetrics` loop sampler. | 1s | no | +| sample window | One-shot sampling window used while probing which `powermetrics` sampler set is available. | 1000ms | no | +| command timeout | Maximum extra time to wait for one `powermetrics` probe or loop sample before restarting the sampler. | 5000ms | no | +| use ndsudo | Run the native Apple `powermetrics` sampler through Netdata's setuid `ndsudo` helper. | yes | no | +| command path | Path to the native Apple `powermetrics` command when `use ndsudo` is disabled. | /usr/bin/powermetrics | no | +| thermal pressure | Enable or disable monitoring of macOS thermal pressure state. | yes | no | +| SMC fan speed | Enable or disable monitoring of SMC fan speed when available. | yes | no | +| SMC temperatures | Enable or disable monitoring of SMC CPU and GPU die temperatures when available. | yes | no | +| SMC thermal levels | Enable or disable monitoring of SMC thermal levels when available. | yes | no | +| SMC prochot | Enable or disable monitoring of SMC processor-hot assertion flags when available. | yes | no | +| GPU power | Enable or disable fallback GPU power monitoring from `powermetrics` when IOReport GPU power is unavailable and the `gpu_power` sampler exposes a value. | yes | no | +| sample every | How often to read native NVMe SMART data through IOKit. | 10s | no | +| discovery every | How often to rescan IORegistry for NVMe SMART-capable services. | 300s | no |
@@ -148,7 +185,7 @@ sudo ./edit-config netdata.conf ##### Examples -###### Disable swap monitoring. +###### Disable swap monitoring A basic example that discards swap monitoring @@ -164,7 +201,7 @@ A basic example that discards swap monitoring ``` -###### Disable complete Machine SMI section. +###### Disable complete Machine SMI section A basic example that discards swap monitoring @@ -182,6 +219,62 @@ A basic example that discards swap monitoring ``` +###### Disable thermal and fan sampling + +Disable the privileged `powermetrics` sampler while keeping the rest of `macos.plugin` enabled. + +
+Config + +```yaml +[plugin:macos] + powermetrics = no + +``` +
+ +###### Disable Apple Silicon GPU monitoring + +Disable IOReport GPU monitoring while keeping other macOS metrics enabled. + +
+Config + +```yaml +[plugin:macos] + gpu = no + +``` +
+ +###### Disable direct hardware sensor monitoring + +Disable direct AppleSMC and IOHID hardware sensor monitoring while keeping the rest of `macos.plugin` enabled. + +
+Config + +```yaml +[plugin:macos] + sensors = no + +``` +
+ +###### Disable native NVMe SMART sampling + +Disable native IOKit NVMe SMART health monitoring while keeping generic disk I/O monitoring enabled. + +
+Config + +```yaml +[plugin:macos] + nvme smart = no + +``` +
+ ## Alerts @@ -249,6 +342,108 @@ Metrics: | ipv6.icmptypes | InType1, InType128, InType129, InType136, OutType1, OutType128, OutType129, OutType133, OutType135, OutType143 | messages/s | | system.uptime | uptime | seconds | | system.io | in, out | KiB/s | +| macos.smc_thermal_level | cpu, gpu, io | level | +| macos.smc_prochot | cpu, smc | status | + +### Per gpu + +These metrics refer to macOS GPU monitoring. + + +Labels: + +| Label | Description | +|:-----------|:----------------| +| source | Data source | + +Metrics: + +| Metric | Dimensions | Unit | +|:------|:----------|:----| +| macos.gpu_utilization | utilization | percentage | +| macos.gpu_performance_state_residency | pstate_<index>_<mhz>mhz | percentage | +| macos.gpu_clock_freq | frequency | MHz | +| macos.gpu_power_draw | power_draw | W | +| macos.gpu_temperature | temperature | degrees Celsius | + +### Per power source + +These metrics refer to macOS battery and UPS power sources. + + +Labels: + +| Label | Description | +|:-----------|:----------------| +| device | Sanitized power-source name | +| source | Data source | + +Metrics: + +| Metric | Dimensions | Unit | +|:------|:----------|:----| +| powersupply.capacity | capacity | percentage | +| powersupply.voltage | voltage | V | +| powersupply.current | current | A | +| powersupply.cycles | cycles | cycles | + +### Per sensor + +These metrics refer to macOS battery, CPU, GPU, fan, voltage, current, power, and thermal sensors. + + +Labels: + +| Label | Description | +|:-----------|:----------------| +| driver | Sensor driver or macOS API source compatible with Linux hardware sensor grouping | +| subsystem | Hardware subsystem inferred from the sensor source, used with driver for Linux-compatible hardware sensor grouping | +| chip_id | Sensor chip or macOS service identifier | +| feature | Stable sensor feature identifier | +| name | Human-readable sensor name | +| path | Stable source path for the sensor | +| source | Data source | +| sensor | Sensor name | +| device | Sanitized device name when available | + +Metrics: + +| Metric | Dimensions | Unit | +|:------|:----------|:----| +| system.hw.sensor.temperature.input | input | degrees Celsius | +| system.hw.sensor.fan.input | input | rotations per minute | +| system.hw.sensor.voltage.input | input | V | +| system.hw.sensor.current.input | input | A | +| system.hw.sensor.power.input | input | W | +| system.hw.sensor.state.input | nominal, moderate, heavy, sleeping, trapping, undefined | status | + +### Per nvme device + +These metrics refer to native macOS NVMe SMART-capable devices. + + +Labels: + +| Label | Description | +|:-----------|:----------------| +| device | Sanitized NVMe device name | +| model_number | NVMe model number | +| source | Data source | + +Metrics: + +| Metric | Dimensions | Unit | +|:------|:----------|:----| +| nvme.device_estimated_endurance_perc | used | percentage | +| nvme.device_available_spare_perc | spare | percentage | +| nvme.device_composite_temperature | temperature | celsius | +| nvme.device_io_transferred_count | read, written | bytes | +| nvme.device_power_cycles_count | power | cycles | +| nvme.device_power_on_time | power-on | seconds | +| nvme.device_unsafe_shutdowns_count | unsafe | shutdowns | +| nvme.device_critical_warnings_state | available_spare, temp_threshold, nvm_subsystem_reliability, read_only, volatile_mem_backup_failed, persistent_memory_read_only | state | +| nvme.device_media_errors_rate | media | errors/s | +| nvme.device_error_log_entries_rate | error_log | entries/s | ### Per disk @@ -298,3 +493,27 @@ Metrics: | net.events | frames, collisions, carrier | events/s | + +## Troubleshooting + +### GPU charts are missing + +Apple Silicon GPU utilization, performance-state residency, clock frequency, and power draw charts require IOReport GPU channels. These channels are exposed by Apple Silicon GPU drivers and are not available on Intel Macs. The collector loads IOReport at runtime and disables the GPU module cleanly when the framework, DVFS table, or GPU channels are unavailable. + +GPU power may still appear from `powermetrics` on systems where the `gpu_power` sampler exposes a plist `gpu_power` value and IOReport GPU power is unavailable. GPU temperature uses direct SMC/IOHID reads from the GPU module when available; otherwise, the `powermetrics` SMC path can still provide the same GPU temperature metric. + + +### Thermal and fan charts are missing + +Direct AppleSMC and IOHID hardware sensor charts do not depend on `powermetrics`. If temperature, fan, voltage, current, or power sensor charts are missing, the hardware or macOS driver may not expose readable AppleSMC or IOHID sensor values, or the `[plugin:macos:sensors]` module may be disabled. + +The thermal pressure state chart depends on the native Apple `powermetrics` command. On macOS, `powermetrics` requires superuser privileges, so the default installation runs it through Netdata's setuid `ndsudo` helper with hard-coded allow-list entries for the probed sampler sets. Some Macs expose hardware sensors through AppleSMC while refusing `powermetrics`; in that case, hardware sensor charts can still appear while thermal pressure remains absent. If `ndsudo` is missing, not setuid root, or the allow-list rejects all startup probe commands, the sampler disables itself after repeated startup failures to avoid log noise. If the running loop exits later, Netdata probes again and restarts loop mode. + +Battery, UPS power-source, and IOReport GPU charts do not depend on `powermetrics` and should still appear when macOS exposes their data. + + +### NVMe health charts are missing + +Native NVMe health charts appear only when macOS exposes NVMe SMART-capable services through IOKit and allows the native SMART user client to open them. The collector does not use `nvme-cli` or any external NVMe tool on macOS. + +If generic disk I/O charts are present but NVMe health charts are absent, the device, controller, or macOS driver may not expose a readable native NVMe SMART user client. Some Apple internal Apple Fabric SSDs expose disk I/O and filesystem metrics but not detailed public NVMe health fields. diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/system.ram.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/system.ram.mdx index ce73bcff11..2dc94bac54 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/system.ram.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/system.ram.mdx @@ -136,5 +136,3 @@ Metrics: |:------|:----------|:----| | system.ram | free, active, inactive, wired, cache, laundry, buffers | MiB | | mem.available | avail | MiB | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/systemd-logind users.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/systemd-logind users.mdx index aaf7b5c1f3..6538b805ef 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/systemd-logind users.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/systemd-logind users.mdx @@ -217,5 +217,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep logind ``` - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/uptime.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/uptime.mdx index fb1844bb35..a31f198aab 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/uptime.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/uptime.mdx @@ -127,5 +127,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | system.uptime | uptime | seconds | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/vm.loadavg.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/vm.loadavg.mdx index 4471447b5a..0a1b2d7cb5 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/vm.loadavg.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/vm.loadavg.mdx @@ -135,5 +135,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | system.load | load1, load5, load15 | load | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_intr.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_intr.mdx index 9e9b24a97b..409e1eb88a 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_intr.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_intr.mdx @@ -127,5 +127,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | system.dev_intr | interrupts | interrupts/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_soft.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_soft.mdx index 031cd2bcdb..e77d7c4a81 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_soft.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_soft.mdx @@ -127,5 +127,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | system.soft_intr | interrupts | interrupts/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_swtch.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_swtch.mdx index ccc6650ab4..3a28bbca23 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_swtch.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.sys.v_swtch.mdx @@ -128,5 +128,3 @@ Metrics: |:------|:----------|:----| | system.ctxt | switches | context switches/s | | system.forks | started | processes/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.vm.v_pgfaults.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.vm.v_pgfaults.mdx index 0602e42552..ae55ff4fd4 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.vm.v_pgfaults.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.vm.v_pgfaults.mdx @@ -127,5 +127,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | mem.pgfaults | memory, io_requiring, cow, cow_optimized, in_transit | page faults/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.vm.v_swappgs.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.vm.v_swappgs.mdx index b26ca822f4..ad9e038d2a 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.vm.v_swappgs.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/vm.stats.vm.v_swappgs.mdx @@ -132,5 +132,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | mem.swapio | io, out | KiB/s | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/vm.swap_info.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/vm.swap_info.mdx index f96310b563..a7ecdc167e 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/vm.swap_info.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/vm.swap_info.mdx @@ -132,5 +132,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | mem.swap | free, used | MiB | - - diff --git a/docs/Collecting Metrics/Collectors/Operating Systems/vm.vmtotal.mdx b/docs/Collecting Metrics/Collectors/Operating Systems/vm.vmtotal.mdx index 45f5a686f4..1b8c1e8665 100644 --- a/docs/Collecting Metrics/Collectors/Operating Systems/vm.vmtotal.mdx +++ b/docs/Collecting Metrics/Collectors/Operating Systems/vm.vmtotal.mdx @@ -136,5 +136,3 @@ Metrics: | system.active_processes | active | processes | | system.processes | running, blocked | processes | | mem.real | used | MiB | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Adaptec RAID.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Adaptec RAID.mdx index 7587a42af8..3e08167a17 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Adaptec RAID.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Adaptec RAID.mdx @@ -282,5 +282,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep adaptec_raid ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/BCache.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/BCache.mdx index 6b65af264e..38fb1534fd 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/BCache.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/BCache.mdx @@ -140,5 +140,3 @@ Metrics: | disk.bcache_cache_read_races | races, errors | operations/s | | disk.bcache | hits, misses, collisions, readaheads | operations/s | | disk.bcache_bypass | hits, misses | operations/s | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/BTRFS.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/BTRFS.mdx index 0566617aa8..c198ba9486 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/BTRFS.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/BTRFS.mdx @@ -141,5 +141,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | btrfs.device_errors | write_errs, read_errs, flush_errs, corruption_errs, generation_errs | errors | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Ceph.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Ceph.mdx index f529341588..b5fe4aeec9 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Ceph.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Ceph.mdx @@ -359,5 +359,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep ceph ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/DMCache devices.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/DMCache devices.mdx index 4deea9a613..b85caf862e 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/DMCache devices.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/DMCache devices.mdx @@ -248,5 +248,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep dmcache ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell EMC ScaleIO.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell EMC ScaleIO.mdx index 750fe74111..7fbd81acae 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell EMC ScaleIO.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell EMC ScaleIO.mdx @@ -344,5 +344,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep scaleio ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell PowerStore.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell PowerStore.mdx index 13a3abbf96..8e09fb20fd 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell PowerStore.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell PowerStore.mdx @@ -577,6 +577,3 @@ If the collector reports that a vnode does not exist: in vnodes.conf — the match is case-sensitive. 3. Confirm the vnodes.conf file uses valid YAML format with correct `guid` values (a valid UUID string). - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell PowerVault ME4 ME5.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell PowerVault ME4 ME5.mdx index 7fddbc1652..06900d953d 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell PowerVault ME4 ME5.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Dell PowerVault ME4 ME5.mdx @@ -517,6 +517,3 @@ PowerVault controllers ship with self-signed certificates. If you see TLS errors 1. Set `tls_skip_verify: yes` in the configuration (most common solution). 2. Alternatively, export the controller's certificate and provide it via `tls_ca`. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Disk Statistics.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Disk Statistics.mdx index 38ada70e57..d8633dbf43 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Disk Statistics.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Disk Statistics.mdx @@ -118,9 +118,9 @@ Labels: | Label | Description | |:-----------|:----------------| -| device | TBD | -| mount_point | TBD | -| device_type | TBD | +| device | Kernel-assigned name of the block device (for example sda, nvme0n1, or fd0). This is a device name, not a mount-point path. | +| mount_point | Directory where the device's filesystem is mounted (for example /, /run, /dev, or /dev/shm). Shows [none] for devices that are not mounted. | +| device_type | How Netdata classifies the device: physical (a real disk), partition (a slice of a physical disk), virtual (a logical or software-backed device such as LVM or device-mapper), or unknown. | Metrics: @@ -143,5 +143,3 @@ Metrics: | disk.avgsz | reads, writes | KiB/operation | | disk_ext.avgsz | discards | KiB/operation | | disk.svctm | svctm | milliseconds/operation | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Disk space.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Disk space.mdx index a9912b0ec2..8fcc6b3acb 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Disk space.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Disk space.mdx @@ -152,5 +152,3 @@ Metrics: |:------|:----------|:----| | disk.space | avail, used, reserved_for_root | GiB | | disk.inodes | avail, used, reserved_for_root | inodes | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/EOS.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/EOS.mdx index cb05af8573..08eecc0bd7 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/EOS.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/EOS.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/FreeBSD NFS.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/FreeBSD NFS.mdx index 27b10fa8c4..12752c55d1 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/FreeBSD NFS.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/FreeBSD NFS.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Generic storage enclosure tool.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Generic storage enclosure tool.mdx index a674119b10..191fc4d0b9 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Generic storage enclosure tool.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Generic storage enclosure tool.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/HDD temperature.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/HDD temperature.mdx index 878dcf4172..24a87d2d4a 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/HDD temperature.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/HDD temperature.mdx @@ -275,5 +275,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep hddtemp ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/HPE Smart Arrays.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/HPE Smart Arrays.mdx index 2541136675..5baaca2854 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/HPE Smart Arrays.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/HPE Smart Arrays.mdx @@ -321,5 +321,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep hpssa ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Hadoop Distributed File System HDFS.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Hadoop Distributed File System HDFS.mdx index 73b5f93f47..f6be4dcc85 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Hadoop Distributed File System HDFS.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Hadoop Distributed File System HDFS.mdx @@ -341,5 +341,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep hfs ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/IBM Spectrum Virtualize.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/IBM Spectrum Virtualize.mdx index 4d5dbd89ef..75cb30e73f 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/IBM Spectrum Virtualize.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/IBM Spectrum Virtualize.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/IBM Spectrum.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/IBM Spectrum.mdx index 16e0ff2e32..50bfb4412f 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/IBM Spectrum.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/IBM Spectrum.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/IPFS.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/IPFS.mdx index 71bf78e476..7e10b327b6 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/IPFS.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/IPFS.mdx @@ -299,5 +299,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep ipfs ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/LVM logical volumes.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/LVM logical volumes.mdx index 0bf5663b1b..f10ab783d8 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/LVM logical volumes.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/LVM logical volumes.mdx @@ -255,5 +255,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep lvm ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Lustre metadata.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Lustre metadata.mdx index 17a09c43ef..c47b6e4ae8 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Lustre metadata.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Lustre metadata.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/MD RAID.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/MD RAID.mdx index e80358f554..4e839846af 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/MD RAID.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/MD RAID.mdx @@ -129,5 +129,3 @@ Metrics: | md.expected_time_until_operation_finish | finish_in | seconds | | md.operation_speed | speed | KiB/s | | md.nonredundant | available | boolean | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/MegaCLI MegaRAID.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/MegaCLI MegaRAID.mdx index ee41d992dc..c905f8ff2a 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/MegaCLI MegaRAID.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/MegaCLI MegaRAID.mdx @@ -303,5 +303,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep megacli ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/MogileFS.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/MogileFS.mdx index 33ed8fc78f..2c5d75432d 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/MogileFS.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/MogileFS.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/NFS Client.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/NFS Client.mdx index efd69e8054..caa2ab4798 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/NFS Client.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/NFS Client.mdx @@ -103,5 +103,3 @@ Metrics: | nfs.proc2 | a dimension per proc2 call | calls/s | | nfs.proc3 | a dimension per proc3 call | calls/s | | nfs.proc4 | a dimension per proc4 call | calls/s | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/NFS Server.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/NFS Server.mdx index b5a4e64eee..90268c8920 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/NFS Server.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/NFS Server.mdx @@ -108,5 +108,3 @@ Metrics: | nfsd.proc3 | a dimension per proc3 call | calls/s | | nfsd.proc4 | a dimension per proc4 call | calls/s | | nfsd.proc4ops | a dimension per proc4 operation | operations/s | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/NVMe devices.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/NVMe devices.mdx index a84ccb641b..2f853aedf6 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/NVMe devices.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/NVMe devices.mdx @@ -296,5 +296,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep nvme ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/NetApp Solidfire.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/NetApp Solidfire.mdx index dc467bf696..8391286eee 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/NetApp Solidfire.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/NetApp Solidfire.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Netapp ONTAP API.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Netapp ONTAP API.mdx index a723fca331..b50ad203e3 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Netapp ONTAP API.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Netapp ONTAP API.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Physical and Logical Disk Performance Metrics.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Physical and Logical Disk Performance Metrics.mdx index 2c95b7af7d..ea42e43b7f 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Physical and Logical Disk Performance Metrics.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Physical and Logical Disk Performance Metrics.mdx @@ -175,5 +175,3 @@ Metrics: | disk.busy | busy | milliseconds | | disk.iotime | reads, writes | milliseconds/s | | disk.qops | operations | operations | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/S.M.A.R.T..mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/S.M.A.R.T..mdx index 909cb7829a..bd71d3ddd2 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/S.M.A.R.T..mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/S.M.A.R.T..mdx @@ -27,7 +27,7 @@ Module: smartctl ## Overview This collector monitors the health status of storage devices by analyzing S.M.A.R.T. (Self-Monitoring, Analysis, and Reporting Technology) counters. -It relies on the [`smartctl`](https://linux.die.net/man/8/smartctl) CLI tool but avoids directly executing the binary. +It relies on the `smartctl` CLI tool from smartmontools but avoids directly executing the binary. Instead, it utilizes `ndsudo`, a Netdata helper specifically designed to run privileged commands securely within the Netdata environment. This approach eliminates the need to use `sudo`, improving security and potentially simplifying permission management. @@ -43,6 +43,7 @@ This collector is only supported on the following platforms: - Linux - BSD - Windows +- macOS This collector only supports collecting metrics from a single instance of this integration. @@ -82,7 +83,9 @@ UI configuration requires paid Netdata Cloud plan. #### Install smartmontools (v7.0+) -Install `smartmontools` version 7.0 or later. Version 7.0 introduced the `--json` output mode, which is required for this collector to function properly. +Install `smartmontools` version 7.0 or later using your operating system's package manager. Version 7.0 introduced the `--json` output mode, which is required for this collector to function properly. + +On macOS, Netdata runs `smartctl` through the setuid `ndsudo` helper. The `smartctl` binary must be found in `ndsudo`'s search PATH (`/bin`, `/sbin`, `/usr/bin`, `/usr/sbin`, `/usr/local/bin`, `/usr/local/sbin`, `/opt/homebrew/bin`, `/opt/homebrew/sbin`); install it via a package manager that places it in one of those directories. Apple internal NVMe/Apple Fabric storage may still not expose detailed SMART data through smartmontools even when the tool is installed. #### For Netdata running in a Docker container @@ -112,7 +115,7 @@ Netdata requires the `SYS_RAWIO` capability and access to the storage devices to > **Multiple Devices**: These examples only show mapping of one device (/dev/sda). You'll need to add additional `--device` options (in docker run) or entries in the `devices` list (in docker-compose.yml) for each storage device you want Netdata's smartctl collector to monitor. -> **NVMe Devices**: Do not map NVMe devices using this method. Netdata uses a [dedicated collector](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nvme#readme) to monitor NVMe devices. +> **NVMe Devices**: Do not map NVMe devices using this method. Netdata uses a [dedicated collector](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nvme#readme) to monitor NVMe devices on Linux/BSD. On macOS, `macos.plugin` provides native NVMe health metrics when IOKit exposes readable SMART-capable NVMe services. @@ -353,5 +356,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep smartctl ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/SMB Server Shares.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/SMB Server Shares.mdx index 85012e6b01..6edcf11482 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/SMB Server Shares.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/SMB Server Shares.mdx @@ -136,5 +136,3 @@ Metrics: | smb.server_shares_read_requests | reads | requests/s | | smb.server_shares_metadata_requests | metadata | requests/s | | smb.server_shares_files_opened | opened | files/s | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Samba.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Samba.mdx index 0b1cfc0cc8..9c880040ba 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Samba.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Samba.mdx @@ -290,5 +290,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep samba ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/StoreCLI RAID.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/StoreCLI RAID.mdx index ee2a330f89..fc9d4bf791 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/StoreCLI RAID.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/StoreCLI RAID.mdx @@ -306,5 +306,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep storcli ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Storidge.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Storidge.mdx index 14bf08aa1d..d29395513b 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Storidge.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Storidge.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Synology ActiveBackup.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Synology ActiveBackup.mdx index 46cbc874b4..5d717cce5b 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/Synology ActiveBackup.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/Synology ActiveBackup.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/ZFS Adaptive Replacement Cache.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/ZFS Adaptive Replacement Cache.mdx index b969bfdc01..873946d2bf 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/ZFS Adaptive Replacement Cache.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/ZFS Adaptive Replacement Cache.mdx @@ -129,5 +129,3 @@ Metrics: | zfs.prefetch_data_hits_rate | hits, misses | events/s | | zfs.hash_elements | current, max | elements | | zfs.hash_chains | current, max | chains | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/ZFS Pools.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/ZFS Pools.mdx index 1dc85dbaa5..116041b555 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/ZFS Pools.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/ZFS Pools.mdx @@ -275,5 +275,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep zfspool ``` - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/devstat.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/devstat.mdx index 7c17f23d8f..7ad95a65ec 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/devstat.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/devstat.mdx @@ -162,5 +162,3 @@ Metrics: | disk.await | reads, writes, other, frees | milliseconds/operation | | disk.avgsz | reads, writes, frees | KiB/operation | | disk.svctm | svctm | milliseconds/operation | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Disk.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Disk.mdx index 4d64ce011e..56b93e92d4 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Disk.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Disk.mdx @@ -154,5 +154,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | disk.latency_io | latency | calls/s | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Filesystem.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Filesystem.mdx index ef9f7f22b7..c31b6420de 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Filesystem.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Filesystem.mdx @@ -180,5 +180,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | filesystem.attributte_latency | latency period | calls/s | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF MDflush.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF MDflush.mdx index b054be0fcf..d058b329ce 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF MDflush.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF MDflush.mdx @@ -149,5 +149,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | mdstat.mdstat_flush | disk | flushes | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Mount.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Mount.mdx index 7746fb6647..eed7a465fe 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Mount.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Mount.mdx @@ -157,5 +157,3 @@ Metrics: |:------|:----------|:----| | mount_points.call | mount, umount | calls/s | | mount_points.error | mount, umount | calls/s | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Sync.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Sync.mdx index bb616b08fa..a218c6e7f6 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Sync.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF Sync.mdx @@ -174,5 +174,3 @@ Metrics: | mem.memory_map | msync | calls/s | | mem.sync | sync, syncfs | calls/s | | mem.file_segment | sync_file_range | calls/s | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF VFS.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF VFS.mdx index 383c0d66bf..28ccc72e8c 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF VFS.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/eBPF VFS.mdx @@ -234,5 +234,3 @@ Metrics: | app.ebpf_call_vfs_open_error | calls | calls/s | | app.ebpf_call_vfs_create | calls | calls/s | | app.ebpf_call_vfs_create_error | calls | calls/s | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/getmntinfo.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/getmntinfo.mdx index 8c50572968..5877bb039c 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/getmntinfo.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/getmntinfo.mdx @@ -138,5 +138,3 @@ Metrics: |:------|:----------|:----| | disk.space | avail, used, reserved_for_root | GiB | | disk.inodes | avail, used, reserved_for_root | inodes | - - diff --git a/docs/Collecting Metrics/Collectors/Storage and Filesystems/zfs.mdx b/docs/Collecting Metrics/Collectors/Storage and Filesystems/zfs.mdx index 02a56ae410..48886ba9b0 100644 --- a/docs/Collecting Metrics/Collectors/Storage and Filesystems/zfs.mdx +++ b/docs/Collecting Metrics/Collectors/Storage and Filesystems/zfs.mdx @@ -159,5 +159,3 @@ Metrics: | zfs.hash_chains | current, max | chains | | zfs.trim_bytes | TRIMmed | bytes | | zfs.trim_requests | successful, failed, unsupported | requests | - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/Blackbox.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/Blackbox.mdx index 030924d83f..a8a5421d7e 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/Blackbox.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/Blackbox.mdx @@ -491,6 +491,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/DNS query.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/DNS query.mdx index 96c3553b35..c79763edad 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/DNS query.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/DNS query.mdx @@ -288,5 +288,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep dns_query ``` - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/Domain expiration date.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/Domain expiration date.mdx index 4bedd75c0d..d703d97a54 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/Domain expiration date.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/Domain expiration date.mdx @@ -274,5 +274,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep whoisquery ``` - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/Files and directories.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/Files and directories.mdx index 4fe844b87d..69f56215cc 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/Files and directories.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/Files and directories.mdx @@ -333,5 +333,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep filecheck ``` - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/HTTP Endpoints.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/HTTP Endpoints.mdx index 848d947165..7e2747e542 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/HTTP Endpoints.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/HTTP Endpoints.mdx @@ -433,5 +433,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep httpcheck ``` - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/IOPing.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/IOPing.mdx index 3e76bddeb2..6019c20a1d 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/IOPing.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/IOPing.mdx @@ -146,5 +146,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | ioping.latency | latency | microseconds | - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/Idle OS Jitter.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/Idle OS Jitter.mdx index 9c62a83b67..33838b11c5 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/Idle OS Jitter.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/Idle OS Jitter.mdx @@ -125,5 +125,3 @@ Metrics: | Metric | Dimensions | Unit | |:------|:----------|:----| | system.idlejitter | min, max, average | microseconds lost/s | - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/MQTT Blackbox.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/MQTT Blackbox.mdx index 6434c966c4..a45da21e5c 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/MQTT Blackbox.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/MQTT Blackbox.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/Monit.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/Monit.mdx index d69abad711..0c564823df 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/Monit.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/Monit.mdx @@ -310,5 +310,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep monit ``` - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/Nagios Plugins and Custom Scripts.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/Nagios Plugins and Custom Scripts.mdx index 0d71e33ded..7f21697634 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/Nagios Plugins and Custom Scripts.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/Nagios Plugins and Custom Scripts.mdx @@ -639,6 +639,3 @@ The Netdata Agent runs as the `netdata` user. If a check needs to read protected ### Windows script support On Windows, point `plugin` directly to a `.ps1`, `.bat`, or `.cmd` script. Netdata automatically invokes `.ps1` scripts through `powershell.exe` and `.bat`/`.cmd` scripts through `cmd.exe`. Ensure scripts are stored in directories with appropriate ACLs. - - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/Ping.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/Ping.mdx index 4932d30b4a..5be470b032 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/Ping.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/Ping.mdx @@ -334,5 +334,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep ping ``` - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/Site 24x7.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/Site 24x7.mdx index 4025fff05f..2d47bc817f 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/Site 24x7.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/Site 24x7.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/TCP UDP Endpoints.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/TCP UDP Endpoints.mdx index fa58445d6b..abf25e61d4 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/TCP UDP Endpoints.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/TCP UDP Endpoints.mdx @@ -381,5 +381,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep portcheck ``` - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/Uptimerobot.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/Uptimerobot.mdx index cca094eca8..91851b5fc5 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/Uptimerobot.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/Uptimerobot.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Synthetic Testing/X.509 certificate.mdx b/docs/Collecting Metrics/Collectors/Synthetic Testing/X.509 certificate.mdx index 189070ea62..e458d9099c 100644 --- a/docs/Collecting Metrics/Collectors/Synthetic Testing/X.509 certificate.mdx +++ b/docs/Collecting Metrics/Collectors/Synthetic Testing/X.509 certificate.mdx @@ -315,5 +315,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep x509check ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/APIcast.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/APIcast.mdx index 00ff37c540..330b1b2a50 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/APIcast.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/APIcast.mdx @@ -490,6 +490,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/ASP.NET.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/ASP.NET.mdx index 77333bb6e0..4ebf4065b7 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/ASP.NET.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/ASP.NET.mdx @@ -173,5 +173,3 @@ Metrics: | aspnet.form_authentication_success | success | auth | | aspnet.form_authentication_success | success | auth | | aspnet.form_authentication_failure | failure | auth | - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Apache.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Apache.mdx index d24eee8a1a..7e71f87ec9 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Apache.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Apache.mdx @@ -334,5 +334,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep apache ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Envoy.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Envoy.mdx index c8b21ea6cf..3b3e74721b 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Envoy.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Envoy.mdx @@ -365,5 +365,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep envoy ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Gobetween.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Gobetween.mdx index 1af780947a..92527ddd17 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Gobetween.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Gobetween.mdx @@ -486,6 +486,3 @@ docker logs netdata 2>&1 | grep prometheus ### Disappearing or sparse metrics not clearing alerts When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. - - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/HAProxy.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/HAProxy.mdx index 4cfe89c1b5..2530ecf672 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/HAProxy.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/HAProxy.mdx @@ -331,5 +331,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep haproxy ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/HTTPD.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/HTTPD.mdx index 7ddbb4358a..e11afbb0e7 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/HTTPD.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/HTTPD.mdx @@ -334,5 +334,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep apache ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/IIS.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/IIS.mdx index 44e4166e4b..31473d5b63 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/IIS.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/IIS.mdx @@ -194,5 +194,3 @@ Metrics: | iis.w3svc_w3wp_output_cache_active_flushed_items | used | items | | iis.w3svc_w3wp_output_cache_memory_usage | used | bytes | | iis.w3svc_w3wp_output_cache_flushed_total | output_cache_entries | flushes | - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Lighttpd.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Lighttpd.mdx index 8754b2763c..37f97c1d95 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Lighttpd.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Lighttpd.mdx @@ -327,5 +327,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep lighttpd ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Litespeed.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Litespeed.mdx index f2a3015394..d81a5a2b57 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Litespeed.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Litespeed.mdx @@ -245,5 +245,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep litespeed ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX Plus.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX Plus.mdx index 1d5f44069a..fcc7350467 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX Plus.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX Plus.mdx @@ -504,5 +504,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep nginxplus ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX Unit.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX Unit.mdx index 2660945983..abae922e5e 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX Unit.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX Unit.mdx @@ -317,5 +317,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep nginxunit ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX VTS.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX VTS.mdx index a720019c76..660c3693c8 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX VTS.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX VTS.mdx @@ -329,5 +329,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep nginxvts ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX.mdx index 5144aa4414..20b87ddc0a 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/NGINX.mdx @@ -366,5 +366,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep nginx ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/PHP-FPM.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/PHP-FPM.mdx index 34b25cd931..e06845576b 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/PHP-FPM.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/PHP-FPM.mdx @@ -320,5 +320,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep phpfpm ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Squid log files.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Squid log files.mdx index b59db3b64f..1dd60e8017 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Squid log files.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Squid log files.mdx @@ -279,5 +279,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep squidlog ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Squid.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Squid.mdx index 4a4e73d1de..a18135a665 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Squid.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Squid.mdx @@ -280,5 +280,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep squid ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Tengine.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Tengine.mdx index 7030fb88ae..453643f2a5 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Tengine.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Tengine.mdx @@ -323,5 +323,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep tengine ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Tomcat.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Tomcat.mdx index 17eebb28f9..4402ae6870 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Tomcat.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Tomcat.mdx @@ -328,5 +328,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep tomcat ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Traefik.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Traefik.mdx index 6d4277572e..522aa3f1bb 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Traefik.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Traefik.mdx @@ -301,5 +301,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep traefik ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Varnish.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Varnish.mdx index efa740e891..259ee4849b 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Varnish.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Varnish.mdx @@ -280,5 +280,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep varnish ``` - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Web server log files.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Web server log files.mdx index d683cd76a2..82abb4f779 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Web server log files.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/Web server log files.mdx @@ -526,6 +526,3 @@ The web_log_1m_unmatched alert fires continuously but the unmatched lines are in **Resolution:** Customize the alert threshold in `health.d/web_log.conf` by copying the web_log_1m_unmatched template and adjusting the warn condition, or silence notifications via Netdata Cloud alert configuration. - - - diff --git a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/uWSGI.mdx b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/uWSGI.mdx index dacbd7cf88..ef7fdbeecf 100644 --- a/docs/Collecting Metrics/Collectors/Web Servers and Proxies/uWSGI.mdx +++ b/docs/Collecting Metrics/Collectors/Web Servers and Proxies/uWSGI.mdx @@ -300,5 +300,3 @@ If your Netdata runs in a Docker container named "netdata" (replace if different ```bash docker logs netdata 2>&1 | grep uwsgi ``` - - diff --git a/docs/Collecting Metrics/OpenTelemetry/OpenTelemetry Metrics.mdx b/docs/Collecting Metrics/OpenTelemetry/OpenTelemetry Metrics.mdx index 0d69b2d172..8aeb115bbf 100644 --- a/docs/Collecting Metrics/OpenTelemetry/OpenTelemetry Metrics.mdx +++ b/docs/Collecting Metrics/OpenTelemetry/OpenTelemetry Metrics.mdx @@ -272,5 +272,3 @@ There are no alerts configured by default for this integration. Metrics are dynamically created based on the OpenTelemetry data received. The specific metrics depend on the OTLP sources sending data to the plugin. - - diff --git a/docs/Collecting Metrics/Secrets Management/Secret Stores/AWS Secrets Manager.mdx b/docs/Collecting Metrics/Secrets Management/Secret Stores/AWS Secrets Manager.mdx index 634919a3ec..38c48ca7fe 100644 --- a/docs/Collecting Metrics/Secrets Management/Secret Stores/AWS Secrets Manager.mdx +++ b/docs/Collecting Metrics/Secrets Management/Secret Stores/AWS Secrets Manager.mdx @@ -234,6 +234,3 @@ Confirm the configured `region` and make sure the AWS identity used by Netdata c ### JSON key lookup fails If you use `secret-name#key`, the secret must be stored as a JSON `SecretString`, and the requested key must exist as a top-level field in that JSON object. - - - diff --git a/docs/Collecting Metrics/Secrets Management/Secret Stores/Azure Key Vault.mdx b/docs/Collecting Metrics/Secrets Management/Secret Stores/Azure Key Vault.mdx index de94f47494..aba43926cb 100644 --- a/docs/Collecting Metrics/Secrets Management/Secret Stores/Azure Key Vault.mdx +++ b/docs/Collecting Metrics/Secrets Management/Secret Stores/Azure Key Vault.mdx @@ -250,6 +250,3 @@ Check the operand format. It must be `vault-name/secret-name`, and both names mu ### Access denied Make sure the Azure identity used by Netdata can read secret values from the target vault. - - - diff --git a/docs/Collecting Metrics/Secrets Management/Secret Stores/Google Secret Manager.mdx b/docs/Collecting Metrics/Secrets Management/Secret Stores/Google Secret Manager.mdx index dc62ac08fa..ce335e0afd 100644 --- a/docs/Collecting Metrics/Secrets Management/Secret Stores/Google Secret Manager.mdx +++ b/docs/Collecting Metrics/Secrets Management/Secret Stores/Google Secret Manager.mdx @@ -222,6 +222,3 @@ Check the file path, the JSON contents, and that the `netdata` user can read the ### Permission denied or secret not found Make sure the Google identity used by Netdata can access the referenced secret, and confirm that the operand uses the correct `project/secret` or `project/secret/version` format. - - - diff --git a/docs/Collecting Metrics/Secrets Management/Secret Stores/Vault.mdx b/docs/Collecting Metrics/Secrets Management/Secret Stores/Vault.mdx index 7421388c70..7c23966475 100644 --- a/docs/Collecting Metrics/Secrets Management/Secret Stores/Vault.mdx +++ b/docs/Collecting Metrics/Secrets Management/Secret Stores/Vault.mdx @@ -273,6 +273,3 @@ Make sure the Netdata host trusts the CA that signed the Vault certificate. Use ### Token file cannot be read Check the file path, file contents, and that the `netdata` user can read the file. - - - diff --git a/docs/Collecting Metrics/Service Discovery/Discoverer/Docker.mdx b/docs/Collecting Metrics/Service Discovery/Discoverer/Docker.mdx index 9b3e17edf8..6a708a3526 100644 --- a/docs/Collecting Metrics/Service Discovery/Discoverer/Docker.mdx +++ b/docs/Collecting Metrics/Service Discovery/Discoverer/Docker.mdx @@ -320,6 +320,3 @@ Stock rules match on `.Image` patterns. Custom forks or in-house image names won ### Generated jobs fail to start Common causes: the rendered URL is not reachable from the agent (different network, firewall); credentials baked into the template are wrong; the module's port is not the one Docker reported. Check the rendered job YAML in the agent's debug output. - - - diff --git a/docs/Collecting Metrics/Service Discovery/Discoverer/HTTP endpoint.mdx b/docs/Collecting Metrics/Service Discovery/Discoverer/HTTP endpoint.mdx index 67f8d52b24..a56256cf4d 100644 --- a/docs/Collecting Metrics/Service Discovery/Discoverer/HTTP endpoint.mdx +++ b/docs/Collecting Metrics/Service Discovery/Discoverer/HTTP endpoint.mdx @@ -360,6 +360,3 @@ Use `tls_skip_verify: yes` to bypass for testing, then mount the issuing CA and ### Bearer token file not found When Netdata runs **outside** Kubernetes and the configured `bearer_token_file` points under `/var/run/secrets/`, missing tokens are silently ignored — this is intentional so the same config works in dev and in Helm. If you are inside k8s, the file must exist. - - - diff --git a/docs/Collecting Metrics/Service Discovery/Discoverer/Kubernetes.mdx b/docs/Collecting Metrics/Service Discovery/Discoverer/Kubernetes.mdx index 6f42ebe24c..cf04583d16 100644 --- a/docs/Collecting Metrics/Service Discovery/Discoverer/Kubernetes.mdx +++ b/docs/Collecting Metrics/Service Discovery/Discoverer/Kubernetes.mdx @@ -338,6 +338,3 @@ When `pod.local_mode: true` is set but `MY_NODE_NAME` is missing, the discoverer ### Generated jobs fail to start The Address resolves to the pod's CNI IP — the Netdata Agent must be able to reach pod IPs. Most CNIs allow this from a pod running in the same cluster, but flat-network requirements differ. For service-role targets, the cluster-internal DNS name (`..svc`) is used and should always resolve from inside the cluster. - - - diff --git a/docs/Collecting Metrics/Service Discovery/Discoverer/Local listening processes.mdx b/docs/Collecting Metrics/Service Discovery/Discoverer/Local listening processes.mdx index 7864386d23..3041a835d0 100644 --- a/docs/Collecting Metrics/Service Discovery/Discoverer/Local listening processes.mdx +++ b/docs/Collecting Metrics/Service Discovery/Discoverer/Local listening processes.mdx @@ -293,6 +293,3 @@ The stock `exporter` catch-all rule (last in the file) is greedy by design — a ### Generated jobs fail to start The discoverer creates jobs but does not run them. Common causes: the rendered template assumes credentials the local service rejects (e.g. RabbitMQ default `guest:guest`); `0.0.0.0` listeners produce `0.0.0.0:port` addresses that the collector cannot connect to (use `127.0.0.1` in the template if appropriate); the service has TLS but the template uses HTTP. - - - diff --git a/docs/Collecting Metrics/Service Discovery/Discoverer/SNMP.mdx b/docs/Collecting Metrics/Service Discovery/Discoverer/SNMP.mdx index a39577978b..87d4708bd5 100644 --- a/docs/Collecting Metrics/Service Discovery/Discoverer/SNMP.mdx +++ b/docs/Collecting Metrics/Service Discovery/Discoverer/SNMP.mdx @@ -458,6 +458,3 @@ The discoverer creates jobs but does not run them — the `snmp` collector does. - The rendered `config_template` produces invalid YAML for some discovered field values (for example, unescaped colons in `sysName`). YAML-quote dynamic values when in doubt. - Module name mismatch — the rule `id` (or explicit `module:` field) does not match `snmp`. - SNMPv3 credentials succeeded for `system` MIB during discovery but the collector cannot read other OIDs (different VACM view); confirm with `snmpwalk` against the device. - - - diff --git a/docs/Dashboards and Charts/Tabs/Logs.mdx b/docs/Dashboards and Charts/Tabs/Logs.mdx index 2ffaa49887..38307afb8b 100644 --- a/docs/Dashboards and Charts/Tabs/Logs.mdx +++ b/docs/Dashboards and Charts/Tabs/Logs.mdx @@ -19,6 +19,7 @@ The Logs tab displays log entries from the following sources: - **systemd-journal** — reads logs from `systemd` journald on Linux Nodes. See the [Systemd Journal Plugin Reference](/docs/logs/systemd-journal-logs/systemd-journal-plugin-reference) for details on journal sources, fields, and query performance. - **otel-logs** — displays logs received via OpenTelemetry (OTLP) log ingestion. See the [OpenTelemetry Signal Viewer plugin](https://github.com/netdata/netdata/blob/master/src/crates/netdata-log-viewer/otel-signal-viewer-plugin/README.md) for setup and configuration. - **Windows Event Logs** — reads Windows event logs on Windows Nodes. See the [Windows Events Plugin Reference](/docs/logs/windows-event-logs/windows-events-plugin-reference) for supported event channels and configuration. +- **macOS Unified Logs** — reads native macOS unified logs through Apple's OSLog framework. See the [macOS Logs Plugin Reference](https://github.com/netdata/netdata/blob/master/src/collectors/macos-logs.plugin/README.md) for supported fields and query behavior. :::note diff --git a/docs/Dashboards and Charts/Tabs/Metrics.mdx b/docs/Dashboards and Charts/Tabs/Metrics.mdx index b31a6f4ad2..292b90d8c2 100644 --- a/docs/Dashboards and Charts/Tabs/Metrics.mdx +++ b/docs/Dashboards and Charts/Tabs/Metrics.mdx @@ -55,7 +55,7 @@ The diagram above shows how the Metrics tab connects to related features and sin ## How the Dashboard is Organized -The dashboard displays various charts organized by their [context](/docs/dashboards-and-charts/charts#contexts). At the beginning of each section, there is a predefined arrangement of charts that provides an overview for that particular group of metrics. +The dashboard displays various charts organized by their [context](/docs/dashboards-and-charts/charts#contexts). At the beginning of each section, there is a predefined arrangement of charts that provides an overview for that particular group of metrics — including the first section, which summarizes the node's overall system resources such as CPU, memory, disk, and network. The exact charts and gauges shown depend on the node's hardware and enabled collectors. The available chart types and grouping options allow flexible data visualization for troubleshooting and analysis. diff --git a/docs/Developer and Contributor Corner/Build the Netdata Agent Yourself/Compile from source code.mdx b/docs/Developer and Contributor Corner/Build the Netdata Agent Yourself/Compile from source code.mdx index 91b59faec5..ffced41ddb 100644 --- a/docs/Developer and Contributor Corner/Build the Netdata Agent Yourself/Compile from source code.mdx +++ b/docs/Developer and Contributor Corner/Build the Netdata Agent Yourself/Compile from source code.mdx @@ -46,6 +46,30 @@ Additionally, the following build time features require additional dependencies: - Netdata Go collectors: - Go (the minimum required version is determined by the `go` directive in `src/go/go.mod`) +:::note + +The build only downloads and compiles Abseil and Protobuf from GitHub when bundling is +explicitly requested — either by passing `-DENABLE_BUNDLED_PROTOBUF=True` to `cmake` when +configuring the build (see [Building Netdata](#building-netdata) below), or by using +[`netdata-installer.sh`](/docs/developer-and-contributor-corner/install-the-netdata-agent-from-a-git-checkout) or `kickstart.sh`, which +enable it by default unless you pass `--use-system-protobuf`. This happens regardless of +whether protobuf is already installed on the system, requires an internet connection, and +can take several minutes on slower connections, during which the build may appear to hang +at messages such as `Preparing bundled Abseil (required by bundled Protobuf)` or `Preparing +bundled Protobuf`. + +Without bundling requested, CMake uses the system protobuf directly, or fails immediately +with a clear error if it can't find one — it does not download anything on its own. + +To avoid the bundled download: + +- Install a system protobuf package: Debian/Ubuntu `libprotobuf-dev protobuf-compiler`, + Fedora/RHEL `protobuf-devel protobuf-compiler`. +- Do not pass `-DENABLE_BUNDLED_PROTOBUF=True` when configuring with `cmake`, or, if you are + using `netdata-installer.sh`/`kickstart.sh` instead, pass `--use-system-protobuf`. + +::: + ## Preparing the source tree Netdata uses Git submodules for some of it’s components, which must be fetched prior to building Netdata. If you diff --git a/docs/Exporting Metrics/Connectors/AWS Kinesis.mdx b/docs/Exporting Metrics/Connectors/AWS Kinesis.mdx index a642527445..83edb6637a 100644 --- a/docs/Exporting Metrics/Connectors/AWS Kinesis.mdx +++ b/docs/Exporting Metrics/Connectors/AWS Kinesis.mdx @@ -182,4 +182,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto stream name = your_stream_name ``` - diff --git a/docs/Exporting Metrics/Connectors/AppOptics.mdx b/docs/Exporting Metrics/Connectors/AppOptics.mdx index 943ad6ae08..f634f780a3 100644 --- a/docs/Exporting Metrics/Connectors/AppOptics.mdx +++ b/docs/Exporting Metrics/Connectors/AppOptics.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Azure Data Explorer.mdx b/docs/Exporting Metrics/Connectors/Azure Data Explorer.mdx index ac0449994c..b823237cc4 100644 --- a/docs/Exporting Metrics/Connectors/Azure Data Explorer.mdx +++ b/docs/Exporting Metrics/Connectors/Azure Data Explorer.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Azure Event Hub.mdx b/docs/Exporting Metrics/Connectors/Azure Event Hub.mdx index dde88ac137..98586c4df5 100644 --- a/docs/Exporting Metrics/Connectors/Azure Event Hub.mdx +++ b/docs/Exporting Metrics/Connectors/Azure Event Hub.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Blueflood.mdx b/docs/Exporting Metrics/Connectors/Blueflood.mdx index f8ee4ba999..af535248f0 100644 --- a/docs/Exporting Metrics/Connectors/Blueflood.mdx +++ b/docs/Exporting Metrics/Connectors/Blueflood.mdx @@ -181,4 +181,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto # send hosts matching = localhost * ``` - diff --git a/docs/Exporting Metrics/Connectors/Chronix.mdx b/docs/Exporting Metrics/Connectors/Chronix.mdx index 5b871cdf5f..1c4562c0fa 100644 --- a/docs/Exporting Metrics/Connectors/Chronix.mdx +++ b/docs/Exporting Metrics/Connectors/Chronix.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Cortex.mdx b/docs/Exporting Metrics/Connectors/Cortex.mdx index 11cc767f83..ea1b6e1123 100644 --- a/docs/Exporting Metrics/Connectors/Cortex.mdx +++ b/docs/Exporting Metrics/Connectors/Cortex.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/CrateDB.mdx b/docs/Exporting Metrics/Connectors/CrateDB.mdx index 4a7dbfbb99..4f7500256f 100644 --- a/docs/Exporting Metrics/Connectors/CrateDB.mdx +++ b/docs/Exporting Metrics/Connectors/CrateDB.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/ElasticSearch.mdx b/docs/Exporting Metrics/Connectors/ElasticSearch.mdx index 7ca36bc1cc..5991890b30 100644 --- a/docs/Exporting Metrics/Connectors/ElasticSearch.mdx +++ b/docs/Exporting Metrics/Connectors/ElasticSearch.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Gnocchi.mdx b/docs/Exporting Metrics/Connectors/Gnocchi.mdx index 512181fc79..a493588a78 100644 --- a/docs/Exporting Metrics/Connectors/Gnocchi.mdx +++ b/docs/Exporting Metrics/Connectors/Gnocchi.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Google BigQuery.mdx b/docs/Exporting Metrics/Connectors/Google BigQuery.mdx index 1b94304323..892ba2e198 100644 --- a/docs/Exporting Metrics/Connectors/Google BigQuery.mdx +++ b/docs/Exporting Metrics/Connectors/Google BigQuery.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Google Cloud Pub Sub.mdx b/docs/Exporting Metrics/Connectors/Google Cloud Pub Sub.mdx index 18159613cf..1a4ba3e2ed 100644 --- a/docs/Exporting Metrics/Connectors/Google Cloud Pub Sub.mdx +++ b/docs/Exporting Metrics/Connectors/Google Cloud Pub Sub.mdx @@ -159,4 +159,3 @@ sudo ./edit-config exporting.conf topic id = my_topic ``` - diff --git a/docs/Exporting Metrics/Connectors/Graphite.mdx b/docs/Exporting Metrics/Connectors/Graphite.mdx index 4a5c3117fa..efd6c8b24e 100644 --- a/docs/Exporting Metrics/Connectors/Graphite.mdx +++ b/docs/Exporting Metrics/Connectors/Graphite.mdx @@ -182,4 +182,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto # send hosts matching = localhost * ``` - diff --git a/docs/Exporting Metrics/Connectors/GreptimeDB.mdx b/docs/Exporting Metrics/Connectors/GreptimeDB.mdx index 7f2f33b1c6..ca2cb114f5 100644 --- a/docs/Exporting Metrics/Connectors/GreptimeDB.mdx +++ b/docs/Exporting Metrics/Connectors/GreptimeDB.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/IRONdb.mdx b/docs/Exporting Metrics/Connectors/IRONdb.mdx index 3b0f2805a9..afa2c18e8b 100644 --- a/docs/Exporting Metrics/Connectors/IRONdb.mdx +++ b/docs/Exporting Metrics/Connectors/IRONdb.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/JSON.mdx b/docs/Exporting Metrics/Connectors/JSON.mdx index 49dcaa4bf7..c5e4a1bcaf 100644 --- a/docs/Exporting Metrics/Connectors/JSON.mdx +++ b/docs/Exporting Metrics/Connectors/JSON.mdx @@ -161,4 +161,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Kafka.mdx b/docs/Exporting Metrics/Connectors/Kafka.mdx index 419d79b47f..6abd0eddf9 100644 --- a/docs/Exporting Metrics/Connectors/Kafka.mdx +++ b/docs/Exporting Metrics/Connectors/Kafka.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/KairosDB.mdx b/docs/Exporting Metrics/Connectors/KairosDB.mdx index 8a69cacc94..4b2192b10a 100644 --- a/docs/Exporting Metrics/Connectors/KairosDB.mdx +++ b/docs/Exporting Metrics/Connectors/KairosDB.mdx @@ -181,4 +181,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto # send hosts matching = localhost * ``` - diff --git a/docs/Exporting Metrics/Connectors/M3DB.mdx b/docs/Exporting Metrics/Connectors/M3DB.mdx index 1d5752a027..d09c84a626 100644 --- a/docs/Exporting Metrics/Connectors/M3DB.mdx +++ b/docs/Exporting Metrics/Connectors/M3DB.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/MetricFire.mdx b/docs/Exporting Metrics/Connectors/MetricFire.mdx index 8a8ad89d13..8856f4a086 100644 --- a/docs/Exporting Metrics/Connectors/MetricFire.mdx +++ b/docs/Exporting Metrics/Connectors/MetricFire.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/MongoDB.mdx b/docs/Exporting Metrics/Connectors/MongoDB.mdx index 562fd6c67c..a45c2098ec 100644 --- a/docs/Exporting Metrics/Connectors/MongoDB.mdx +++ b/docs/Exporting Metrics/Connectors/MongoDB.mdx @@ -159,4 +159,3 @@ The timeout is 500 ms shorter than the interval (but not less than 1000 ms). You collection = your_collection_name ``` - diff --git a/docs/Exporting Metrics/Connectors/New Relic.mdx b/docs/Exporting Metrics/Connectors/New Relic.mdx index 75c7eadef5..e9503922a1 100644 --- a/docs/Exporting Metrics/Connectors/New Relic.mdx +++ b/docs/Exporting Metrics/Connectors/New Relic.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/OpeanSearch.mdx b/docs/Exporting Metrics/Connectors/OpeanSearch.mdx index 939f499079..74048f79b6 100644 --- a/docs/Exporting Metrics/Connectors/OpeanSearch.mdx +++ b/docs/Exporting Metrics/Connectors/OpeanSearch.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/OpenTSDB.mdx b/docs/Exporting Metrics/Connectors/OpenTSDB.mdx index 488accde6f..479433ac0f 100644 --- a/docs/Exporting Metrics/Connectors/OpenTSDB.mdx +++ b/docs/Exporting Metrics/Connectors/OpenTSDB.mdx @@ -189,4 +189,3 @@ For example: `opentsdb:http:my_opentsdb_instance`, `opentsdb:https:my_opentsdb_i send charts matching = * ``` - diff --git a/docs/Exporting Metrics/Connectors/PostgreSQL.mdx b/docs/Exporting Metrics/Connectors/PostgreSQL.mdx index e6abafe6c3..98f8c996a6 100644 --- a/docs/Exporting Metrics/Connectors/PostgreSQL.mdx +++ b/docs/Exporting Metrics/Connectors/PostgreSQL.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Prometheus Remote Write.mdx b/docs/Exporting Metrics/Connectors/Prometheus Remote Write.mdx index d61742348d..fa91e995c3 100644 --- a/docs/Exporting Metrics/Connectors/Prometheus Remote Write.mdx +++ b/docs/Exporting Metrics/Connectors/Prometheus Remote Write.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/QuasarDB.mdx b/docs/Exporting Metrics/Connectors/QuasarDB.mdx index 8c99195a88..669d5193fb 100644 --- a/docs/Exporting Metrics/Connectors/QuasarDB.mdx +++ b/docs/Exporting Metrics/Connectors/QuasarDB.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Splunk SignalFx.mdx b/docs/Exporting Metrics/Connectors/Splunk SignalFx.mdx index ec63ed9076..62ca9fb3cd 100644 --- a/docs/Exporting Metrics/Connectors/Splunk SignalFx.mdx +++ b/docs/Exporting Metrics/Connectors/Splunk SignalFx.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Thanos.mdx b/docs/Exporting Metrics/Connectors/Thanos.mdx index d8749a5a7b..0e5520e540 100644 --- a/docs/Exporting Metrics/Connectors/Thanos.mdx +++ b/docs/Exporting Metrics/Connectors/Thanos.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/TiKV.mdx b/docs/Exporting Metrics/Connectors/TiKV.mdx index 91ccbe16c6..28ee3076d9 100644 --- a/docs/Exporting Metrics/Connectors/TiKV.mdx +++ b/docs/Exporting Metrics/Connectors/TiKV.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/TimescaleDB.mdx b/docs/Exporting Metrics/Connectors/TimescaleDB.mdx index a8e7f5d55d..a3b4ab00f0 100644 --- a/docs/Exporting Metrics/Connectors/TimescaleDB.mdx +++ b/docs/Exporting Metrics/Connectors/TimescaleDB.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/VMware Aria.mdx b/docs/Exporting Metrics/Connectors/VMware Aria.mdx index 515f304a08..1645732b51 100644 --- a/docs/Exporting Metrics/Connectors/VMware Aria.mdx +++ b/docs/Exporting Metrics/Connectors/VMware Aria.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/VictoriaMetrics.mdx b/docs/Exporting Metrics/Connectors/VictoriaMetrics.mdx index f25bc12400..ef630a840d 100644 --- a/docs/Exporting Metrics/Connectors/VictoriaMetrics.mdx +++ b/docs/Exporting Metrics/Connectors/VictoriaMetrics.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Connectors/Wavefront.mdx b/docs/Exporting Metrics/Connectors/Wavefront.mdx index 15667b9665..582f1b4f44 100644 --- a/docs/Exporting Metrics/Connectors/Wavefront.mdx +++ b/docs/Exporting Metrics/Connectors/Wavefront.mdx @@ -172,4 +172,3 @@ Add `:https` modifier to the connector type if you need to use the TLS/SSL proto password = my_password ``` - diff --git a/docs/Exporting Metrics/Enable an exporting connector.mdx b/docs/Exporting Metrics/Enable an exporting connector.mdx index 49bb445cef..a7c0d7e086 100644 --- a/docs/Exporting Metrics/Enable an exporting connector.mdx +++ b/docs/Exporting Metrics/Enable an exporting connector.mdx @@ -71,3 +71,29 @@ Replace `netdata` with an instance name of your choice, and change the `destinat Any further configuration is optional, based on your needs and the configuration of your Graphite database. See the [Graphite connector doc](/docs/exporting-metrics/connectors/graphite) and [exporting engine reference](/docs/exporting-metrics/exporting-reference#configuration-structure) for details. + +
+Export to Multiple Databases Simultaneously + +You can export metrics to more than one external database at the same time. To do this, add a separate connector section for each destination in the same `exporting.conf` file. Every section that has `enabled = yes` exports independently to its own destination, so by default all enabled destinations receive the same metrics from your Agent, unless you configure different settings per section, as described below. + +For example, to export to both a Graphite database and an OpenTSDB HTTP database, combine the two connector sections in a single `exporting.conf`: + +```text +[exporting:global] + enabled = yes + +[graphite:my_graphite_instance] + enabled = yes + destination = localhost:2003 + +[opentsdb:http:my_opentsdb_http_instance] + enabled = yes + destination = localhost:4242 +``` + +Replace the instance names and `destination` values with those of your own databases. [Restart your Agent](/docs/netdata-agent/maintenance/service-control) to start exporting. As with a single connector, all enabled destinations begin receiving metrics **starting from the Agent restart time**, not the historical database. + +You can add as many connector sections as you need, even mixing different connector types in the same file. Each section can also define its own settings, such as its own `destination`, export interval, and metric filters. See the [exporting engine reference](/docs/exporting-metrics/exporting-reference#configuration-structure) for the full set of per-section options. + +
diff --git a/docs/Exporting Metrics/Prometheus.mdx b/docs/Exporting Metrics/Prometheus.mdx index ff7bf2e03c..6c64200c05 100644 --- a/docs/Exporting Metrics/Prometheus.mdx +++ b/docs/Exporting Metrics/Prometheus.mdx @@ -20,6 +20,18 @@ Netdata exports metrics to Prometheus through two methods: Before configuring either method, understand how Netdata structures its exported metrics and available capabilities. These concepts apply to both scraping and remote write methods. +:::note + +The metric naming rules below apply to the [remote write exporter](/docs/exporting-metrics/connectors/prometheus-remote-write) as well as the scraping endpoint — both use the same prefix, context, units, and suffix rules. To preview the exact metric names that remote write will send, query the `allmetrics` endpoint using the same prefix and data source configured for your remote write exporter in `exporting.conf`: + +``` +http://your.netdata.ip:19999/api/v1/allmetrics?format=prometheus&source=as-collected&prefix=netdata +``` + +Replace `as-collected` with `average` or `sum`, and `netdata` with your configured `prefix`, to match your remote write exporter's settings — the endpoint defaults to the scraping exporter's prefix, which may differ from a remote write instance configured with a custom `prefix`. The data source controls whether units appear in the metric name and which suffix is appended, exactly as described in [Netdata Data Source](#netdata-data-source). + +::: + ### Understanding Netdata Metrics #### Charts @@ -216,7 +228,7 @@ Control the default in `exporting.conf`: ```text [prometheus:exporter] - send names instead of ids = yes | no + send names instead of ids = yes | no ``` Override via URL: @@ -230,7 +242,7 @@ Filter metrics with this setting: ```text [prometheus:exporter] - send charts matching = * + send charts matching = * ``` This accepts space-separated [simple patterns](/docs/developer-and-contributor-corner/libnetdata/simple-patterns) to match charts. Pattern rules: @@ -246,7 +258,7 @@ Netdata prefixes all metrics with `netdata_`. Change in `netdata.conf`: ```text [prometheus:exporter] - prefix = netdata + prefix = netdata ``` Or append `&prefix=netdata` to the URL. @@ -264,10 +276,11 @@ Or append `&prefix=netdata` to the URL. When using `average` or `sum` sources, Netdata remembers each client's last access time to calculate values for the period since last access. This prevents data loss regardless of scrape frequency. Server identification: -| Scenario | Method | -|:---------|:-------| -| Direct connection | Client IP (default) | -| Behind proxy or NAT | Append `&server=NAME` to URL | + +| Scenario | Method | +|:--------------------------|:--------------------------------| +| Direct connection | Client IP (default) | +| Behind proxy or NAT | Append `&server=NAME` to URL | | Multiple servers, same IP | Each uses unique `&server=NAME` | ### Host Labels diff --git a/docs/Getting Started.mdx b/docs/Getting Started.mdx index 627b1342b2..93d21d8837 100644 --- a/docs/Getting Started.mdx +++ b/docs/Getting Started.mdx @@ -134,7 +134,7 @@ Within seconds of connection, you'll experience the power of real-time observabi - **Your node appears live in your Space** - **Charts immediately start streaming real-time data** -- **System Overview dashboard populates automatically** +- **Overview charts populate automatically for every section** - **All metrics update with 1-second granularity** - **Zero additional configuration required** @@ -142,7 +142,7 @@ Within seconds of connection, you'll experience the power of real-time observabi **Automatic Dashboards:** -- **System Overview** - Fully automated dashboard showing all your nodes +- **[Overview charts](/docs/dashboards-and-charts/tabs/metrics#how-the-dashboard-is-organized)** - Automatically arranged at the start of every dashboard section to summarize its metrics - **Nodes Tab** - Unified view of all infrastructure with key metrics - **Composite Charts** - Data from multiple nodes combined intelligently - **Real-Time Updates** - Every metric updates with 1-second granularity diff --git a/docs/Logs/Logs.mdx b/docs/Logs/Logs.mdx index 1ea99af4ef..8ffc14bcf6 100644 --- a/docs/Logs/Logs.mdx +++ b/docs/Logs/Logs.mdx @@ -13,6 +13,10 @@ import { Grid, Box } from '@site/src/components/Grid_integrations'; + + + + diff --git a/docs/Logs/OpenTelemetry Logs/OpenTelemetry Logs.mdx b/docs/Logs/OpenTelemetry Logs/OpenTelemetry Logs.mdx index 2bf6b306a8..ba571d42e9 100644 --- a/docs/Logs/OpenTelemetry Logs/OpenTelemetry Logs.mdx +++ b/docs/Logs/OpenTelemetry Logs/OpenTelemetry Logs.mdx @@ -5,12 +5,14 @@ learn_status: "Published" learn_rel_path: "Logs/OpenTelemetry Logs" keywords: [opentelemetry, otel, otlp, logs] message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE LOGS' metadata.yaml FILE" -sidebar_position: "60" +sidebar_position: "70" learn_link: "https://learn.netdata.cloud/docs/logs/opentelemetry-logs" slug: "/logs/opentelemetry-logs" --- + + # OpenTelemetry Logs @@ -36,7 +38,7 @@ You can start exploring OpenTelemetry logs on the "Logs" tab of the Netdata UI. - Views logs ingested via **OpenTelemetry OTLP/gRPC** protocol. - Allows filtering on **any log field** or **field value**, for any time-frame. - Allows **full text search** (`grep`) on all log fields, for any time-frame. -- Provides a **histogram** for log entries over time, with a break down per field-value, for any field and any time-frame. +- Provides a **histogram** for log entries over time, with a breakdown per field-value, for any field and any time-frame. - Uses **fast indexed lookups** with pre-built indexes for performance. - Supports **faceted search** across log fields (severity, hostname, service, etc.). - In PLAY mode shows new log entries immediately after they are received. diff --git a/docs/Logs/Systemd Journal Logs/Systemd Journal Logs.mdx b/docs/Logs/Systemd Journal Logs/Systemd Journal Logs.mdx index 2b93f0d4a9..8e8aa22ea1 100644 --- a/docs/Logs/Systemd Journal Logs/Systemd Journal Logs.mdx +++ b/docs/Logs/Systemd Journal Logs/Systemd Journal Logs.mdx @@ -11,6 +11,8 @@ slug: "/logs/systemd-journal-logs" --- + + # Systemd Journal Logs @@ -38,7 +40,7 @@ You can start exploring `systemd` journal logs on the "Logs" tab of the Netdata - Supports `system`, `user`, `namespaces` and `remote` journals. - Allows filtering on **any journal field** or **field value**, for any time-frame. - Allows **full text search** (`grep`) on all journal fields, for any time-frame. -- Provides a **histogram** for log entries over time, with a break down per field-value, for any field and any time-frame. +- Provides a **histogram** for log entries over time, with a breakdown per field-value, for any field and any time-frame. - Works directly on journal files, without any other third-party components. - Supports coloring log entries, the same way `journalctl` does. - In PLAY mode provides the same experience as `journalctl -f`, showing new log entries immediately after they are received. diff --git a/docs/Logs/Windows Event Logs/Windows Event Logs.mdx b/docs/Logs/Windows Event Logs/Windows Event Logs.mdx index 39e8f3c423..6ba328d2c4 100644 --- a/docs/Logs/Windows Event Logs/Windows Event Logs.mdx +++ b/docs/Logs/Windows Event Logs/Windows Event Logs.mdx @@ -11,6 +11,8 @@ slug: "/logs/windows-event-logs" --- + + # Windows Event Logs @@ -38,7 +40,7 @@ You can start exploring Windows event logs on the "Logs" tab of the Netdata UI. - Supports **Event Tracing for Windows (ETW)** and **TraceLogging (TL)**, when events are routed to Event Log. - Allows filtering on all System Events fields. - Allows **full text search** (`grep`) on all System and User fields. -- Provides a **histogram** for log entries over time, with a break down per field-value, for any System Event field and any +- Provides a **histogram** for log entries over time, with a breakdown per field-value, for any System Event field and any time-frame. - Supports coloring log entries based on severity. - In PLAY mode it "tails" all the Events, showing new log entries immediately after they are received. diff --git a/docs/Logs/macOS Unified Logs/macOS Unified Logs.mdx b/docs/Logs/macOS Unified Logs/macOS Unified Logs.mdx new file mode 100644 index 0000000000..bcc9219f6e --- /dev/null +++ b/docs/Logs/macOS Unified Logs/macOS Unified Logs.mdx @@ -0,0 +1,57 @@ +--- +custom_edit_url: "https://github.com/netdata/netdata/edit/master/integrations/logs/metadata.yaml" +sidebar_label: "macOS Unified Logs" +learn_status: "Published" +learn_rel_path: "Logs/macOS Unified Logs" +keywords: [macos, macos logs, unified logs, oslog, logs] +message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE LOGS' metadata.yaml FILE" +sidebar_position: "60" +learn_link: "https://learn.netdata.cloud/docs/logs/macos-unified-logs" +slug: "/logs/macos-unified-logs" +--- + + + + +# macOS Unified Logs + + + + + +The macOS Logs plugin by Netdata makes viewing, exploring and analyzing macOS unified logs simple and efficient. + +It queries Apple's native OSLog framework directly and does not invoke `log show`, `log stream`, or other external log-query commands during normal query execution. + +The plugin exposes the local macOS unified log store as a structured, searchable Logs tab source. + + + + +## Visualization + +You can start exploring macOS unified logs on the "Logs" tab of the Netdata UI. + + +## Key features + +- Supports the native **macOS unified log** store. +- Uses Apple's public **OSLog** framework. +- Allows filtering on macOS log fields for any selected time frame. +- Allows full-text search across collected log fields. +- Provides a histogram for log entries over time, with a breakdown per field-value. +- Supports severity coloring based on the OSLog level. +- Supports PLAY mode through repeated bounded native queries, without running `log stream`. + +## Setup + +### Prerequisites + +- macOS with the OSLog framework available +- Access to the local unified log store; Apple's OSLog API requires elevated privileges for local system logs, so Netdata installs `macos-logs.plugin` as a root-owned setuid Function plugin +- A Netdata Cloud account + + +### Configuration + +There is no configuration needed for this integration. diff --git a/docs/Netdata Agent/Configuration/Daemon.mdx b/docs/Netdata Agent/Configuration/Daemon.mdx index 9ef9ba38c7..8374fc58c8 100644 --- a/docs/Netdata Agent/Configuration/Daemon.mdx +++ b/docs/Netdata Agent/Configuration/Daemon.mdx @@ -59,12 +59,14 @@ After you modify `netdata.conf`, you need to [restart Netdata](/docs/netdata-age To override the auto-detected hostname and control how your node appears in Dashboards, Netdata Cloud, alert notifications, and streaming Parent nodes: 1. Edit your `netdata.conf` file: + ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata sudo ./edit-config netdata.conf ``` 2. Add or modify the `hostname` in the `[global]` section: + ```ini [global] hostname = YOUR_CUSTOM_NODE_NAME @@ -89,7 +91,7 @@ To override the auto-detected hostname and control how your node appears in Dash | timezone | auto-detected | The timezone retrieved from the environment variable | | run as user | `netdata` | The user Netdata will run as. | | pthread stack size | auto-detected | | -| crash reports | `all` or `off` | `all` when anonymous telemetry is enabled, or the agent is claimed or connected to Netdata Cloud (directly or via a Netdata Parent). When it is `all` Netdata reports restarts and crashes. It can also be `crashes` to report only crashes. When it is `off` nothing is reported. Each kind of event is deduplicated and reported at most once per day. [Read more at this blog post](https://www.netdata.cloud/blog/2025-03-06-monitoring-netdata-restarts/). | +| crash reports | `all` or `off` | `all` when anonymous telemetry is enabled, or the agent is claimed or connected to Netdata Cloud (directly or via a Netdata Parent). When it is `all` Netdata reports restarts and crashes. It can also be `crashes` to report only crashes. When it is `off` nothing is reported. Each kind of event is deduplicated and reported at most once per day. [Read more at this blog post](https://www.netdata.cloud/blog/2025-03-06-monitoring-netdata-restarts/). | **Profiles**: @@ -118,22 +120,22 @@ A few of these settings can be individually configured in `netdata.conf`, like t
Database Section Options -| setting | default | info | -|:---------------------------------------------:|:------------------------------:|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| mode | `dbengine` | `dbengine`: The default for long-term metrics storage with efficient RAM and disk usage. Can be extended with `dbengine page cache size` and `dbengine tier X retention size`.
`ram`: The round-robin database will be temporary and it will be lost when Netdata exits.
`alloc`: Similar to `ram`, but can significantly reduce memory usage, when combined with a low retention and does not support KSM.
`none`: Disables the database at this host, and disables Health monitoring entirely, as that requires a database of metrics. Not to be used together with streaming. | -| retention | `3600` | Used with `mode = ram/alloc`, not the default `mode = dbengine`. This number reflects the number of entries the `netdata` daemon will by default keep in memory for each chart dimension. Check [Memory Requirements](/docs/netdata-agent/resource-utilization/disk-&-retention) for more information. | -| storage tiers | `3` | The number of storage tiers you want to have in your dbengine. Check the tiering mechanism in the [dbengine's reference](/docs/developer-and-contributor-corner/database-engine#tiers). You can have up to 5 tiers of data (including the _Tier 0_). This number ranges between 1 and 5. | -| dbengine page cache size | `32MiB` | Determines the amount of RAM in MiB that is dedicated to caching for _Tier 0_ Netdata metric values. | -| dbengine tier **`N`** retention size | `1GiB` | The disk space dedicated to metrics storage, per tier. Can be used in single-node environments as well.
`N belongs to [1..4]` | -| dbengine tier **`N`** retention time | `14d`, `3mo`, `1y`, `1y`, `1y` | The database retention, expressed in time. Can be used in single-node environments as well.
`N belongs to [1..4]` | -| update every | `1` | The frequency in seconds, for data collection. For more information see the [performance guide](/docs/netdata-agent/configuration/performance-optimization). These metrics stored as _Tier 0_ data. Explore the tiering mechanism in the [dbengine's reference](/docs/developer-and-contributor-corner/database-engine#tiers). | -| dbengine tier **`N`** update every iterations | `60` | The down sampling value of each tier from the previous one. For each Tier, the greater by one Tier has N (equal to 60 by default) less data points of any metric it collects. This setting can take values from `2` up to `255`.
`N belongs to [1..4]` | -| dbengine tier back fill | `new` | Specifies the strategy of recreating missing data on higher database Tiers.
`new`: Sees the latest point on each Tier and save new points to it only if the exact lower Tier has available points for it's observation window (`dbengine tier N update every iterations` window).
`none`: No back filling is applied.
`N belongs to [1..4]` | -| memory deduplication (ksm) | `yes` | When set to `yes`, Netdata will offer its in-memory round robin database and the dbengine page cache to kernel same page merging (KSM) for deduplication. | -| cleanup obsolete charts after | `1h` | See [monitoring ephemeral containers](/docs/collecting-metrics/containers-and-cgroups#monitoring-ephemeral-containers), also sets the timeout for cleaning up obsolete dimensions | -| gap when lost iterations above | `1` | | -| cleanup orphan hosts after | `1h` | How long to wait until automatically removing from the DB a remote Netdata host (child) that is no longer sending data. | -| enable zero metrics | `no` | Set to `yes` to show charts when all their metrics are zero. | +| setting | default | info | +|:---------------------------------------------:|:------------------------------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| db | `dbengine` | `dbengine`: The default for long-term metrics storage with efficient RAM and disk usage. Can be extended with `dbengine page cache size` and `dbengine tier X retention size`.
`ram`: The round-robin database will be temporary and it will be lost when Netdata exits.
`alloc`: Similar to `ram`, but can significantly reduce memory usage, when combined with a low retention and does not support KSM.
`none`: Disables the database at this host, and disables Health monitoring entirely, as that requires a database of metrics. Not to be used together with streaming. `mode` is also accepted for backwards compatibility. | +| retention | `3600` | Used with `db = ram/alloc`, not the default `db = dbengine`. This number reflects the number of entries the `netdata` daemon will by default keep in memory for each chart dimension. Check [Memory Requirements](/docs/netdata-agent/resource-utilization/disk-&-retention) for more information. | +| storage tiers | `3` | The number of storage tiers you want to have in your dbengine. Check the tiering mechanism in the [dbengine's reference](/docs/developer-and-contributor-corner/database-engine#tiers). You can have up to 5 tiers of data (including the _Tier 0_). This number ranges between 1 and 5. | +| dbengine page cache size | `32MiB` | Determines the amount of RAM in MiB that is dedicated to caching for _Tier 0_ Netdata metric values. | +| dbengine tier **`N`** retention size | `1GiB` | The disk space dedicated to metrics storage, per tier. Can be used in single-node environments as well.
`N belongs to [1..4]` | +| dbengine tier **`N`** retention time | `14d`, `3mo`, `1y`, `1y`, `1y` | The database retention, expressed in time. Can be used in single-node environments as well.
`N belongs to [1..4]` | +| update every | `1` | The frequency in seconds, for data collection. For more information see the [performance guide](/docs/netdata-agent/configuration/performance-optimization). These metrics stored as _Tier 0_ data. Explore the tiering mechanism in the [dbengine's reference](/docs/developer-and-contributor-corner/database-engine#tiers). | +| dbengine tier **`N`** update every iterations | `60` | The down sampling value of each tier from the previous one. For each Tier, the greater by one Tier has N (equal to 60 by default) less data points of any metric it collects. This setting can take values from `2` up to `255`.
`N belongs to [1..4]` | +| dbengine tier back fill | `new` | Specifies the strategy of recreating missing data on higher database Tiers.
`new`: Sees the latest point on each Tier and save new points to it only if the exact lower Tier has available points for it's observation window (`dbengine tier N update every iterations` window).
`none`: No back filling is applied.
`N belongs to [1..4]` | +| memory deduplication (ksm) | `yes` | When set to `yes`, Netdata will offer its in-memory round robin database and the dbengine page cache to kernel same page merging (KSM) for deduplication. | +| cleanup obsolete charts after | `1h` | See [monitoring ephemeral containers](/docs/collecting-metrics/containers-and-cgroups#monitoring-ephemeral-containers), also sets the timeout for cleaning up obsolete dimensions | +| gap when lost iterations above | `1` | | +| cleanup orphan hosts after | `1h` | How long to wait until automatically removing from the DB a remote Netdata host (child) that is no longer sending data. | +| enable zero metrics | `no` | Set to `yes` to show charts when all their metrics are zero. | :::info Storage Tiers The multiplication of all the **enabled** tiers `dbengine tier N update every iterations` values must be less than `65535`. @@ -148,7 +150,7 @@ The multiplication of all the **enabled** tiers `dbengine tier N update every it |:-------------------:|:------------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | config | `/etc/netdata` | The directory configuration files are kept. | | stock config | `/usr/lib/netdata/conf.d` | | -| stock data | `/usr/share/netdata` | The directory Netdata uses for immutable stock data files shipped with the installation. | +| stock data | `/usr/share/netdata` | The directory Netdata uses for immutable stock data files shipped with the installation. | | log | `/var/log/netdata` | The directory in which the [log files](/docs/netdata-agent/daemon#logging) are kept. | | web | `/usr/share/netdata/web` | The directory the web static files are kept. | | cache | `/var/cache/netdata` | The directory the memory database will be stored if and when Netdata exits. Netdata will re-read the database when it will start again, to continue from the same point. | @@ -217,16 +219,16 @@ Specific Alerts are configured in per-collector config files under the `health.d [Alert notifications](/docs/alerts-&-notifications/notifications/agent-dispatched-notifications/agent-notifications-reference) are configured in `health_alarm_notify.conf`. -| setting | default | info | -|:--------------------------------------:|:------------------------------------------------:|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| enabled | `yes` | Set to `no` to disable all Alerts and notifications | -| in memory max Health log entries | 1000 | Size of the Alert history held in RAM | -| script to execute on alarm | `/usr/libexec/netdata/plugins.d/alarm-notify.sh` | The script that sends Alert notifications. Note that in versions before 1.16, the plugins.d directory may be installed in a different location in certain OSs (e.g. under `/usr/lib/netdata`). | -| run at least every | `10s` | Controls how often all Alert conditions should be evaluated. | -| notification execution timeout | `2m` | How long a notification command (e.g. `alarm-notify.sh`) may run before it is killed. Protects Alert evaluation from hung notification processes. Set to `0` to wait forever. | -| postpone alarms during hibernation for | `1m` | Prevents false Alerts. May need to be increased if you get Alerts during hibernation. | -| Health log retention | `5d` | Specifies the history of Alert events (in seconds) kept in the Agent's sqlite database. | -| enabled alarms | * | Defines which Alerts to load from both user and stock directories. This is a [simple pattern](/docs/developer-and-contributor-corner/libnetdata/simple-patterns) list of Alert or template names. Can be used to disable specific Alerts. For example, `enabled alarms = !oom_kill *` will load all Alerts except `oom_kill`. | +| setting | default | info | +|:--------------------------------------:|:------------------------------------------------:|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| enabled | `yes` | Set to `no` to disable all Alerts and notifications | +| in memory max Health log entries | 1000 | Size of the Alert history held in RAM | +| script to execute on alarm | `/usr/libexec/netdata/plugins.d/alarm-notify.sh` | The script that sends Alert notifications. Note that in versions before 1.16, the plugins.d directory may be installed in a different location in certain OSs (e.g. under `/usr/lib/netdata`). | +| run at least every | `10s` | Controls how often all Alert conditions should be evaluated. | +| notification execution timeout | `2m` | How long a notification command (e.g. `alarm-notify.sh`) may run before it is killed. Protects Alert evaluation from hung notification processes. Set to `0` to wait forever. | +| postpone alarms during hibernation for | `1m` | Prevents false Alerts. May need to be increased if you get Alerts during hibernation. | +| Health log retention | `5d` | Specifies the history of Alert events (in seconds) kept in the Agent's sqlite database. | +| enabled alarms | * | Defines which Alerts to load from both user and stock directories. This is a [simple pattern](/docs/developer-and-contributor-corner/libnetdata/simple-patterns) list of Alert or template names. Can be used to disable specific Alerts. For example, `enabled alarms = !oom_kill *` will load all Alerts except `oom_kill`. Omitting the trailing `*` turns this into a whitelist that loads only the listed Alerts — see [Enable Only Specific Alerts](/docs/alerts-&-notifications/alert-configuration-reference#enable-only-specific-alerts-whitelist). |
@@ -269,9 +271,9 @@ Use `yes` instead of `auto` in plugin configuration sections to enable these cha External plugins will have only two options at `netdata.conf`: -| setting | default | info | -|:---------------:|:--------------------------------------------:|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| setting | default | info | +|:---------------:|:----------------------------------------:|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | update every | the value of `[db].update every` setting | The frequency in seconds the plugin should collect values. For more information check the [performance guide](/docs/netdata-agent/configuration/performance-optimization). | -| command options | - | Additional command line options to pass to the plugin. | +| command options | - | Additional command line options to pass to the plugin. | External plugins that need additional configuration may support a dedicated file in `/etc/netdata`. Check their documentation. diff --git a/docs/Netdata Agent/Configuration/Database.mdx b/docs/Netdata Agent/Configuration/Database.mdx index b911bad02c..40151c69ad 100644 --- a/docs/Netdata Agent/Configuration/Database.mdx +++ b/docs/Netdata Agent/Configuration/Database.mdx @@ -20,9 +20,11 @@ Use [`edit-config`](/docs/netdata-agent/configuration#edit-configuration-files) ```text [db] # dbengine, ram, none - mode = dbengine + db = dbengine ``` +`mode` is also accepted for backwards compatibility. + ## Tiers ### Retention Settings @@ -33,7 +35,7 @@ In a Parent-Child setup, these settings control the Parent's total storage for m Child and Parent storage are independent: -- A Child can keep local history based on its own `[db].mode`. +- A Child can keep local history based on its own `[db].db`. - Streamed metrics can also be persisted on the Parent, in the Parent's own dbengine files. Retention size is enforced **per-tier**, not per Child, so all streaming Children share the Parent's tier quota. For Parent sizing guidance, see [Parent Retention Sizing](/docs/netdata-agent/resource-utilization/disk-&-retention#parent-retention-sizing). @@ -58,7 +60,7 @@ You can change these limits using [`edit-config`](/docs/netdata-agent/configurat ```text [db] - mode = dbengine + db = dbengine storage tiers = 3 # Tier 0, per second data. Set to 0 for no limit. diff --git a/docs/Netdata Agent/Configuration/Organize systems metrics and alerts.mdx b/docs/Netdata Agent/Configuration/Organize systems metrics and alerts.mdx index e1644fb267..21ebae3de5 100644 --- a/docs/Netdata Agent/Configuration/Organize systems metrics and alerts.mdx +++ b/docs/Netdata Agent/Configuration/Organize systems metrics and alerts.mdx @@ -92,12 +92,14 @@ Netdata automatically generates host labels when it starts, capturing: | Label Category | Information Captured | |----------------|-----------------------------------------------------| | System Info | Kernel version, OS name and version | -| Hardware | CPU architecture, cores, frequency, RAM, disk space | +| Hardware | CPU architecture, cores, frequency, RAM, disk space, product ID, product name, product type | | Environment | Container details, Kubernetes node status | | Infrastructure | Virtualization layer, Parent-child streaming status | View your automatic labels at `http://HOST-IP:19999/api/v1/info`: +Host-label values use Netdata's label sanitizer. For example, commas in hardware model identifiers are exposed as dots in host labels. + ```json { "host_labels": { diff --git a/docs/Netdata Agent/Installation/Kubernetes Helm chart reference.mdx b/docs/Netdata Agent/Installation/Kubernetes Helm chart reference.mdx index 3d3757c1f2..9f4e7eeb62 100644 --- a/docs/Netdata Agent/Installation/Kubernetes Helm chart reference.mdx +++ b/docs/Netdata Agent/Installation/Kubernetes Helm chart reference.mdx @@ -12,7 +12,7 @@ slug: "/netdata-agent/installation/kubernetes-helm-chart-reference" Artifact HUB -![Version: 3.7.168](https://img.shields.io/badge/Version-3.7.168-informational?style=flat-square) +![Version: 3.7.169](https://img.shields.io/badge/Version-3.7.169-informational?style=flat-square) ![AppVersion: v2.10.3](https://img.shields.io/badge/AppVersion-v2.10.3-informational?style=flat-square) @@ -468,6 +468,15 @@ true The name of the service account to use. If not set and create is true, a name is generated using the fullname template + + serviceAccount.annotations + object +
+\{}
+
+ + Annotations to add to the service account (e.g. an AWS IRSA `eks.amazonaws.com/role-arn`) + restarter.enabled bool diff --git a/docs/Netdata Agent/Installation/Linux/Linux.mdx b/docs/Netdata Agent/Installation/Linux/Linux.mdx index 950c77b232..3c9b2ffa6d 100644 --- a/docs/Netdata Agent/Installation/Linux/Linux.mdx +++ b/docs/Netdata Agent/Installation/Linux/Linux.mdx @@ -143,6 +143,8 @@ If the script is valid, this command will return `OK, VALID`. We recommend verif If `curl` fails to download the install script with `curl: (60) SSL certificate OpenSSL verify result: unable to get local issuer certificate (20)`, this is an OS-level certificate-trust issue: the host's CA certificate store is missing or outdated. Update your system CA certificates using your package manager (for example `sudo apt-get install --reinstall ca-certificates` on Debian/Ubuntu or `sudo dnf reinstall ca-certificates` on RHEL/Fedora), then re-run the install command. +If you see a message like `File not found when checking for remote file at https://repository.netdata.cloud/repos/repoconfig` while running `kickstart.sh`, it is an informational notice. It means a remote file check during installation did not succeed, but this does not stop or break the installation — the installer continues automatically to the next step. The message is not specific to any particular Linux distribution and can appear on any supported system. + ## Related Docs - [Connect to Netdata Cloud](/docs/netdata-cloud/connect-agent) diff --git a/docs/Netdata Agent/Installation/Windows/Windows.mdx b/docs/Netdata Agent/Installation/Windows/Windows.mdx index ce8262b848..11c39f9d3f 100644 --- a/docs/Netdata Agent/Installation/Windows/Windows.mdx +++ b/docs/Netdata Agent/Installation/Windows/Windows.mdx @@ -258,10 +258,15 @@ On Windows, `edit-config` opens files with the `nano` editor. | Exit | `Ctrl + X` | | Exit with save prompt | `Ctrl + X`, then `Y` to save or `N` to discard | +## Uninstalling Netdata on Windows + +The MSI uninstall removes the Netdata binaries and the Windows service, but it does **not** remove your metric database, cache, or edited configuration files. To uninstall the Agent and completely delete the data it leaves behind, see [Uninstall Netdata](/docs/netdata-agent/maintenance/uninstall). + ## Related Windows documentation - [Service Control](/docs/netdata-agent/maintenance/service-control#windows) — Start, stop, restart, and check status of the Netdata Agent - [Switching Install Types and Release Channels on Windows](/docs/netdata-agent/installation/windows/switching-install-types-and-release-channels) +- [Uninstall Netdata](/docs/netdata-agent/maintenance/uninstall) — Remove Netdata from Windows, including the metric database and configuration the MSI uninstall leaves behind ## FAQ diff --git a/docs/Netdata Agent/Maintenance/Uninstall.mdx b/docs/Netdata Agent/Maintenance/Uninstall.mdx index 6a1c61ab6e..0617524850 100644 --- a/docs/Netdata Agent/Maintenance/Uninstall.mdx +++ b/docs/Netdata Agent/Maintenance/Uninstall.mdx @@ -139,5 +139,32 @@ You can also use PowerShell: msiexec /qn /x netdata-x64.msi ``` +### What the MSI uninstall removes + +The standard MSI uninstall removes the Netdata binaries and stops and removes the Netdata Windows service. It does **not** remove your metric database, the local cache, or the configuration files you have edited. Those files stay on disk so that reinstalling Netdata keeps your history and settings. + +### Completely remove Netdata data from Windows + +:::note + +The directories below contain your historical monitoring data and your custom configuration. + +::: + +To delete the data the MSI uninstall leaves behind, run the following commands in an elevated (Administrator) PowerShell session **after** uninstalling Netdata through the MSI. The paths below assume Netdata is installed in the default location; if you chose a different install directory, adjust the path accordingly. + +```powershell +# Remove the auto-updater scheduled task, if you set one up. The task name is whatever +# you chose when creating it in Task Scheduler - adjust the pattern below if it doesn't +# contain "Netdata". +Get-ScheduledTask -TaskName *Netdata* -ErrorAction SilentlyContinue | Unregister-ScheduledTask -Confirm:$false + +# Remove the install directory, including the metric database, cache, and edited configuration +Remove-Item "C:\Program Files\Netdata" -Recurse -Force -ErrorAction SilentlyContinue + +# Remove the auto-updater directory (present only if you configured automatic updates) +Remove-Item "$env:PROGRAMDATA\Netdata" -Recurse -Force -ErrorAction SilentlyContinue +``` +
diff --git a/docs/Netdata Agent/Resource Utilization/Disk & Retention.mdx b/docs/Netdata Agent/Resource Utilization/Disk & Retention.mdx index 060e22957e..a0829f45d5 100644 --- a/docs/Netdata Agent/Resource Utilization/Disk & Retention.mdx +++ b/docs/Netdata Agent/Resource Utilization/Disk & Retention.mdx @@ -21,6 +21,12 @@ Netdata offers two database modes to suit your needs for performance and data pe ## `dbengine` +:::note + +By default, `dbengine` stores its metrics database files on disk. The exact location depends on your installation method, operating system, and whether you run Netdata in Docker or Kubernetes — see [Backing up a Netdata Agent](/docs/netdata-agent/maintenance/backup-and-restore-an-agent) for the default path and other Netdata data locations. + +::: + Netdata's `dbengine` mode efficiently stores data on disk using compression. The actual disk space used depends on how well the data compresses. This mode uses a tiered storage approach: data is saved in multiple tiers on disk. Each tier retains data at a different resolution (detail level). Higher tiers store a down-sampled (less detailed) version of the data found in lower tiers. @@ -69,12 +75,12 @@ For details about how dbengine enforces retention size limits, see [Retention Si Child and Parent storage are independent: -- **On the Child (local):** Controlled by the Child's `[db].mode`. +- **On the Child (local):** Controlled by the Child's `[db].db`. - **On the Parent (received stream):** Controlled by the Parent's settings. Metrics streamed from Children can be persisted on the Parent and count against the Parent's per-tier retention limits. **Configuring dbengine mode and retention**: -- Enable dbengine mode: The dbengine mode is already the default, so no configuration change is necessary. For reference, the dbengine mode can be configured by setting `[db].mode` to `dbengine` in `netdata.conf`. +- Enable dbengine mode: The dbengine mode is already the default, so no configuration change is necessary. For reference, the dbengine mode can be configured by setting `[db].db` to `dbengine` in `netdata.conf`. - Adjust retention (optional): see [Change how long Netdata stores metrics](/docs/netdata-agent/configuration/database#tiers). ## `ram` @@ -87,5 +93,5 @@ The memory required per sample in these modes, is four bytes: `ram` mode uses `m **Configuring ram mode and retention**: -- Enable ram mode: To use in-memory storage, set `[db].mode` to ram in your `netdata.conf` file. Remember, this mode won't retain historical data after restarts. +- Enable ram mode: To use in-memory storage, set `[db].db` to ram in your `netdata.conf` file. Remember, this mode won't retain historical data after restarts. - Adjust retention (optional): While ram mode focuses on real-time data, you can optionally control the number of samples stored in memory. Set `[db].retention` in `netdata.conf` to the desired number in seconds. Note: If the value you choose isn't a multiple of 1024, Netdata will automatically round it up to the nearest multiple. diff --git a/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/OIDC.mdx b/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/OIDC.mdx index 8c0ba64442..163d2cacbf 100644 --- a/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/OIDC.mdx +++ b/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/OIDC.mdx @@ -61,5 +61,3 @@ If you start your authentication flow from Netdata sign-in page please check [th ### Reference https://openid.net/developers/how-connect-works/ - - diff --git a/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/Okta SSO.mdx b/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/Okta SSO.mdx index c36337d70a..bb73f83811 100644 --- a/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/Okta SSO.mdx +++ b/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/Okta SSO.mdx @@ -55,5 +55,3 @@ Steps needed to be done on Okta Admin Portal: ### SP-initiated SSO If you start your authentication flow from Netdata sign-in page please check [these steps](/docs/netdata-cloud/authentication-&-authorization/enterprise-sso-authentication). - - diff --git a/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/SCIM.mdx b/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/SCIM.mdx index 80b396cedc..c5830af1e2 100644 --- a/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/SCIM.mdx +++ b/docs/Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations/SCIM.mdx @@ -146,5 +146,3 @@ See Setting Up Membership Rules section above for setup instructions. ### Reference [SCIM Specification](https://scim.org) - - diff --git a/docs/Netdata Parents/Configuration Examples.mdx b/docs/Netdata Parents/Configuration Examples.mdx index d7ac628003..215540db29 100644 --- a/docs/Netdata Parents/Configuration Examples.mdx +++ b/docs/Netdata Parents/Configuration Examples.mdx @@ -45,7 +45,7 @@ Edit `netdata.conf` on the Child using the [edit-config](/docs/netdata-agent/con [db] # https://github.com/netdata/netdata/blob/master/src/database/README.md # none = no retention, ram = some retention in ram - mode = ram + db = ram # The retention in seconds. # This provides some tolerance to the time the child has to find a parent # to transfer the data. For IoT, this can be lowered to 120. @@ -81,7 +81,6 @@ Edit `stream.conf` on the Child using the [edit-config](/docs/netdata-agent/conf **Perfect for:** IoT devices, containers, or any resource-constrained system. - ### Parent with Tiered Storage This example helps you configure a Parent with multiple [tiers of metrics storage](/docs/netdata-agent/database#tiers) to store different time ranges at different resolutions, for 10 Children with about 2k metrics each. Retention in each tier is restricted both in time and storage space, whichever is met first. See [retention settings](/docs/netdata-agent/configuration/database#retention-settings) for fine-tuning retention. @@ -101,7 +100,7 @@ Edit `netdata.conf` on the Parent using the [edit-config](/docs/netdata-agent/co ```ini [db] - mode = dbengine + db = dbengine dbengine tier backfill = new storage tiers = 3 dbengine page cache size = 1.4GiB @@ -142,7 +141,6 @@ Edit `stream.conf` on the Parent using the [edit-config](/docs/netdata-agent/con **Perfect for:** Central monitoring servers with enough storage for historical data. - ### Active-Active Parents This example guides you through setting up active-active Parents that sync with each other for high availability. @@ -196,7 +194,6 @@ This example guides you through setting up active-active Parents that sync with api key = API_KEY ``` - ## Further Reading We strongly recommend the following configuration changes for production deployments: diff --git a/docs/Netdata Parents/Parent Configuration Best Practices.mdx b/docs/Netdata Parents/Parent Configuration Best Practices.mdx index de7d4a5fab..c1a353293d 100644 --- a/docs/Netdata Parents/Parent Configuration Best Practices.mdx +++ b/docs/Netdata Parents/Parent Configuration Best Practices.mdx @@ -123,49 +123,13 @@ Retention size limits are soft targets, not hard caps. Actual disk usage can exc ::: -## Estimating Disk Retention by Metric Volume on Parent Nodes +## Planning Parent Disk Space -Parent nodes are the central long-term storage layer in a Netdata infrastructure. They receive all metrics streamed from children and store them according to tiered retention settings. +Parent disk usage scales with the total number of metrics streamed from all Child nodes and the retention tiers you configure. The disk you need depends on how many Children you stream from, how many metrics each collects, and how long you retain each tier. -| Tier | Sample Resolution | Typical Compressed Size per Sample | -|--------|------------------------------------|------------------------------------| -| Tier 0 | per second (native) | ~0.6 B / sample | -| Tier 1 | per minute (60× aggregate) | ~6 B / sample | -| Tier 2 | per hour (60× aggregate of Tier 1) | ~18 B / sample | +For example, a Parent configured with 30 days of Tier 0, 6 months of Tier 1, and 5 years of Tier 2 retention uses approximately **3.7 MB per metric** across all tiers. For **1,000,000 metrics streamed to the Parent**, that's **≈ 3.7 TB**. Add 5-15% overhead for replication buffers, indexes, and metadata, so plan for **≈ 4 TB per million metrics** under this retention policy. -### Example Calculation - -Assume a Parent configured with: - -- **Tier 0:** 30 days retention (per-second resolution) -- **Tier 1:** 6 months retention (per-minute resolution) -- **Tier 2:** 5 years retention (per-hour resolution) - -One metric would consume approximately **3.7 MB** across tiers. -For **1,000,000 metrics streamed to the Parent**, this equals **≈ 3.7 TB**. - -Adding 5–15% overhead for replication buffers, indexes, and metadata, plan for **≈ 4 TB per million metrics** under this retention policy. - -### Configuration Example for Production Deployments - -```ini -[db] - mode = dbengine - update every = 1 - storage tiers = 3 - - # Tier 0: per-second data for 30 days - dbengine tier 0 retention time = 30d - # No size limit - let time control retention - - # Tier 1: per-minute data for 6 months - dbengine tier 1 update every iterations = 60 - dbengine tier 1 retention time = 6mo - - # Tier 2: per-hour data for 5 years - dbengine tier 2 update every iterations = 60 - dbengine tier 2 retention time = 5y -``` +Your own numbers will differ based on your retention settings. See [Disk Requirements & Retention](/docs/netdata-agent/resource-utilization/disk-&-retention) for the per-tier sample sizes this example is based on, and the [Resource utilization](/docs/netdata-agent/resource-utilization) guide for the full sizing picture. ## Cost Optimization Strategies @@ -216,15 +180,15 @@ flowchart TB Netdata provides several benefits over other observability solutions: -| Advantage | Description | Value | -|-----------------------------------|--------------------------------------------|-----------------------------------------------------------------------| -| **Scalability & Flexibility** | Multiple independent Parents | Customized observability by region, service, or team | -| **Resilience & Reliability** | Built-in replication | Observability continues even if a Parent fails | -| **Optimized Cost & Performance** | Distributed workloads | Prevents bottlenecks and improves resource efficiency | -| **Ease of Use** | Minimal setup and maintenance | Reduces complexity and operational overhead | -| **On-Prem Control** | Data remains within your infrastructure | Enhanced security and compliance, even when using Netdata Cloud. For a fully self-hosted control plane, see [Netdata Cloud On-Prem](/docs/netdata-cloud-on-prem) | -| **Comprehensive Observability** | Segmented infrastructure with unified view | Deep visibility with tailored retention, alerts, and machine learning | -| **Predictable Capacity Planning** | Published per-metric storage cost | Allows accurate disk and hardware sizing for Parents | +| Advantage | Description | Value | +|-----------------------------------|--------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **Scalability & Flexibility** | Multiple independent Parents | Customized observability by region, service, or team | +| **Resilience & Reliability** | Built-in replication | Observability continues even if a Parent fails | +| **Optimized Cost & Performance** | Distributed workloads | Prevents bottlenecks and improves resource efficiency | +| **Ease of Use** | Minimal setup and maintenance | Reduces complexity and operational overhead | +| **On-Prem Control** | Data remains within your infrastructure | Enhanced security and compliance, even when using Netdata Cloud. For a fully self-hosted control plane, see [Netdata Cloud On-Prem](/docs/netdata-cloud-on-prem) | +| **Comprehensive Observability** | Segmented infrastructure with unified view | Deep visibility with tailored retention, alerts, and machine learning | +| **Predictable Capacity Planning** | Published per-metric storage cost | Allows accurate disk and hardware sizing for Parents | :::tip diff --git a/docs/Netdata Parents/Streaming Routing Reference.mdx b/docs/Netdata Parents/Streaming Routing Reference.mdx index 1bfc36f985..93fce9b843 100644 --- a/docs/Netdata Parents/Streaming Routing Reference.mdx +++ b/docs/Netdata Parents/Streaming Routing Reference.mdx @@ -90,10 +90,10 @@ Once connected, the child maintains a persistent connection: Netdata automatically replicates missing historical data when reconnection occurs. Data is only lost if: - Child restarts during disconnection AND -- Child uses `memory mode = ram` (metrics stored in memory) AND +- Child uses `[db].db = ram` (metrics stored in memory) AND - Disconnection exceeds retention period (default: 1 hour for RAM mode) -For persistent data, use `memory mode = dbengine`. +For persistent data, use `[db].db = dbengine`. ::: @@ -201,8 +201,8 @@ The **Netdata Streaming** function (under the "Functions" tab) provides: - Comprehensive overview of all streaming connections - Status, replication completion time, and connection details - Works on both parent and child nodes: - - **On child**: Shows outgoing connections - - **On parent**: Shows incoming connections (InHops = 1 for direct children, >1 for proxied connections) + - **On child**: Shows outgoing connections + - **On parent**: Shows incoming connections (InHops = 1 for direct children, >1 for proxied connections) #### Viewing Logs diff --git a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Alcatel-Lucent BGP.mdx b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Alcatel-Lucent BGP.mdx index 95550a2a50..8712bfc32e 100644 --- a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Alcatel-Lucent BGP.mdx +++ b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Alcatel-Lucent BGP.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Arista BGP.mdx b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Arista BGP.mdx index c6ed46831b..3eaa3d6df3 100644 --- a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Arista BGP.mdx +++ b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Arista BGP.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Cisco BGP.mdx b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Cisco BGP.mdx index 57ef7d7078..40aabd6eb3 100644 --- a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Cisco BGP.mdx +++ b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Cisco BGP.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Dell BGP.mdx b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Dell BGP.mdx index 08596646d3..4c3f320b45 100644 --- a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Dell BGP.mdx +++ b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Dell BGP.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/F5 BGP.mdx b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/F5 BGP.mdx index abef666311..fda70c08ea 100644 --- a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/F5 BGP.mdx +++ b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/F5 BGP.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Generic BGP BGP4-MIB.mdx b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Generic BGP BGP4-MIB.mdx index e01eb89d77..1da062a3b0 100644 --- a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Generic BGP BGP4-MIB.mdx +++ b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Generic BGP BGP4-MIB.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Huawei BGP.mdx b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Huawei BGP.mdx index e004876691..4a8d54686f 100644 --- a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Huawei BGP.mdx +++ b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Huawei BGP.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Juniper BGP.mdx b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Juniper BGP.mdx index e749c25af3..ab50d3e210 100644 --- a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Juniper BGP.mdx +++ b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Juniper BGP.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/NEC BGP.mdx b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/NEC BGP.mdx index 0e378eeb0d..d8d46894ab 100644 --- a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/NEC BGP.mdx +++ b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/NEC BGP.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/NVIDIA BGP.mdx b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/NVIDIA BGP.mdx index c068dc0c4a..13faa17a6e 100644 --- a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/NVIDIA BGP.mdx +++ b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/NVIDIA BGP.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Nokia BGP.mdx b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Nokia BGP.mdx index 040f75d739..803aa93a5d 100644 --- a/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Nokia BGP.mdx +++ b/docs/Network Performance Monitoring/BGP Monitoring/Integrations/Nokia BGP.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/3Com Huawei.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/3Com Huawei.mdx index 4d694f941c..12e20e5423 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/3Com Huawei.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/3Com Huawei.mdx @@ -179,5 +179,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/3Com.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/3Com.mdx index de29749531..b8024332af 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/3Com.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/3Com.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/A10 Thunder.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/A10 Thunder.mdx index 3d43d93d2c..1c6b097815 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/A10 Thunder.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/A10 Thunder.mdx @@ -306,5 +306,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/A10.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/A10.mdx index 09004ad602..f7366724eb 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/A10.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/A10.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/APC Netbotz.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/APC Netbotz.mdx index 065a856137..7103e4ef92 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/APC Netbotz.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/APC Netbotz.mdx @@ -181,5 +181,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/APC PDU.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/APC PDU.mdx index ab6564aa38..51878a760c 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/APC PDU.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/APC PDU.mdx @@ -221,5 +221,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/APC UPS.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/APC UPS.mdx index 600d145b58..45422ba983 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/APC UPS.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/APC UPS.mdx @@ -236,5 +236,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/APC.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/APC.mdx index a00d0ef6cf..3b05a243c0 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/APC.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/APC.mdx @@ -170,5 +170,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent ENT.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent ENT.mdx index b07c97ea55..1ef7853519 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent ENT.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent ENT.mdx @@ -229,5 +229,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent IND.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent IND.mdx index e8558056a0..a25f18fc4c 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent IND.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent IND.mdx @@ -168,5 +168,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent Omni Access WLC.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent Omni Access WLC.mdx index 5cd8e6b9d5..bb7d0f1e97 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent Omni Access WLC.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent Omni Access WLC.mdx @@ -200,5 +200,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent.mdx index e60c877715..35d7d61b3a 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Alcatel Lucent.mdx @@ -168,5 +168,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Anue.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Anue.mdx index 4d0d11bab8..6a87eee717 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Anue.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Anue.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Arista Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Arista Switch.mdx index 0cc5346ec2..45977619a1 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Arista Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Arista Switch.mdx @@ -194,5 +194,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Arista.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Arista.mdx index b3fd51e130..ff35a7de1a 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Arista.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Arista.mdx @@ -302,5 +302,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Access Point.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Access Point.mdx index 9bf2d922a1..bdc097cf26 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Access Point.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Access Point.mdx @@ -184,5 +184,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba CX Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba CX Switch.mdx index ce60825d46..e50b2a40ae 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba CX Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba CX Switch.mdx @@ -224,5 +224,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Clearpass.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Clearpass.mdx index e640af4312..51bd82c22f 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Clearpass.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Clearpass.mdx @@ -277,5 +277,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Mobility Controller.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Mobility Controller.mdx index ba768542c7..a6fe8cb56f 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Mobility Controller.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Mobility Controller.mdx @@ -168,5 +168,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Switch.mdx index 21a8b332ae..8992ef8e57 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Switch.mdx @@ -221,5 +221,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Wireless Controller.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Wireless Controller.mdx index 948569dd88..043482324e 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Wireless Controller.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba Wireless Controller.mdx @@ -256,5 +256,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba.mdx index 08c64b7833..71efe735a9 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Aruba.mdx @@ -184,5 +184,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Audiocodes Mediant SBC.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Audiocodes Mediant SBC.mdx index 71ec8323b7..f91d4a6844 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Audiocodes Mediant SBC.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Audiocodes Mediant SBC.mdx @@ -173,5 +173,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Aura Media Server.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Aura Media Server.mdx index 8989507149..58d7fbacf6 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Aura Media Server.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Aura Media Server.mdx @@ -184,5 +184,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Cajun Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Cajun Switch.mdx index 22a1bf265f..87786f1c5c 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Cajun Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Cajun Switch.mdx @@ -199,5 +199,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Media Gateway.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Media Gateway.mdx index 65d27af350..9264dd25fd 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Media Gateway.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Media Gateway.mdx @@ -226,5 +226,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_avaya_cmgVoipDspStatus` | `{status}` | per avaya_cmg_voip_current_ip_address | Status of the DSP complex | | `snmp.device_prof_avaya_cmgVoipHyperactivity` | `{status}` | per avaya_cmg_voip_current_ip_address | Indicates whether hyperactivity has been detected | | `snmp.device_prof_avaya_cmgVoipTotalChannels` | `{channel}` | per avaya_cmg_voip_current_ip_address | Total number of channels available to the VoIP engine | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Nortel Ethernet Routing Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Nortel Ethernet Routing Switch.mdx index a8cde96fcb..e019918081 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Nortel Ethernet Routing Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya Nortel Ethernet Routing Switch.mdx @@ -185,5 +185,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya.mdx index dd31225e05..d2d2908eb5 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avaya.mdx @@ -158,5 +158,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avocent ACS.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avocent ACS.mdx index 2b9ea40d38..cfa99ad1ac 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avocent ACS.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avocent ACS.mdx @@ -218,5 +218,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 32S.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 32S.mdx index 59d39f3ae5..c440a96237 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 32S.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 32S.mdx @@ -151,5 +151,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 3E.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 3E.mdx index 2d46e196f6..a7f062e4b9 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 3E.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 3E.mdx @@ -167,5 +167,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 3S.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 3S.mdx index 8da3c1140c..176b320386 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 3S.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech Roomalert 3S.mdx @@ -153,5 +153,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech.mdx index 2e4282925a..c1aa15fe04 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Avtech.mdx @@ -140,5 +140,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Barracuda Cloudgen.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Barracuda Cloudgen.mdx index 9bb3191d68..3089cddf7a 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Barracuda Cloudgen.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Barracuda Cloudgen.mdx @@ -231,5 +231,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Barracuda.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Barracuda.mdx index 49d7a1e07e..6b3585f828 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Barracuda.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Barracuda.mdx @@ -196,5 +196,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Bluecat Server.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Bluecat Server.mdx index 96543f66d0..7f1a39643c 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Bluecat Server.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Bluecat Server.mdx @@ -223,5 +223,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Bluecoat Proxysg.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Bluecoat Proxysg.mdx index 47c64219bb..1ff820b0b9 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Bluecoat Proxysg.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Bluecoat Proxysg.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Brocade FC Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Brocade FC Switch.mdx index 908edb55ee..9a5265a291 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Brocade FC Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Brocade FC Switch.mdx @@ -190,5 +190,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Brocade.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Brocade.mdx index 81792e3e39..e8e3585336 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Brocade.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Brocade.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Brother NET Printer.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Brother NET Printer.mdx index d5be3073f4..1317441857 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Brother NET Printer.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Brother NET Printer.mdx @@ -157,5 +157,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Brother.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Brother.mdx index a4d5e21fca..b27c1cc2c4 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Brother.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Brother.mdx @@ -140,5 +140,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cato Networks.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cato Networks.mdx index f3899f18bf..6ea82b5031 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cato Networks.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cato Networks.mdx @@ -356,6 +356,3 @@ Increase `update_every` or narrow `site_selector` if the Cato API reports rate l ### Connection, TLS, or proxy failures Check DNS, firewall egress, TLS inspection, proxy settings, endpoint region, and the collector logs. - - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Chatsworth PDU.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Chatsworth PDU.mdx index 395ea37dea..e1edacb941 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Chatsworth PDU.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Chatsworth PDU.mdx @@ -309,5 +309,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_cpiPduSensorValue` | — | per sensor_index, sensor_name, rm:sensor_type | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Checkpoint.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Checkpoint.mdx index 0ef31727ff..59ebdb906f 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Checkpoint.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Checkpoint.mdx @@ -405,5 +405,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Chrysalis Luna HSM.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Chrysalis Luna HSM.mdx index 7926154eed..e35131bfcd 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Chrysalis Luna HSM.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Chrysalis Luna HSM.mdx @@ -217,5 +217,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Chrysalis.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Chrysalis.mdx index a01f892978..934ec5cad7 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Chrysalis.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Chrysalis.mdx @@ -140,5 +140,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco 3850.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco 3850.mdx index ebd6d73d94..d56c26b014 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco 3850.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco 3850.mdx @@ -418,5 +418,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ASA.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ASA.mdx index bf85090edf..440aa13f46 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ASA.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ASA.mdx @@ -415,5 +415,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ASR.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ASR.mdx index f9aebfaa09..0a0c3ec473 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ASR.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ASR.mdx @@ -399,5 +399,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Access Point.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Access Point.mdx index 0517646c43..7b4686be80 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Access Point.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Access Point.mdx @@ -408,5 +408,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Catalyst WLC.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Catalyst WLC.mdx index 0f5c7f99cf..cc7b3d2b6f 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Catalyst WLC.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Catalyst WLC.mdx @@ -436,5 +436,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Catalyst.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Catalyst.mdx index 915668a473..6df9b117d9 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Catalyst.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Catalyst.mdx @@ -430,5 +430,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Csr1000V.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Csr1000V.mdx index bfc23184b3..146af60b98 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Csr1000V.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Csr1000V.mdx @@ -399,5 +399,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Firepower ASA.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Firepower ASA.mdx index d74712cab5..8a30135a75 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Firepower ASA.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Firepower ASA.mdx @@ -177,5 +177,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Firepower.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Firepower.mdx index 3e3ea8e14c..0dfeb9a302 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Firepower.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Firepower.mdx @@ -187,5 +187,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ICM.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ICM.mdx index 1379f3fcd9..b1846ddaf4 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ICM.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ICM.mdx @@ -462,5 +462,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_ccmRegisteredPhones` | `{phone}` | device | Number of phones that are registered and actively in communication with the local call manager. | | `snmp.device_prof_ccmRejectedPhones` | `{reject}` | device | Number of phones whose registration requests were rejected by the local call manager. | | `snmp.device_prof_ccmUnregisteredPhones` | `{phone}` | device | Number of phone that are unregistered or have lost contact with the local call manager. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISE.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISE.mdx index ce61379d5a..979d302e83 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISE.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISE.mdx @@ -213,5 +213,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISR 4431.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISR 4431.mdx index 30250a888d..e9343deda0 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISR 4431.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISR 4431.mdx @@ -462,5 +462,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_ccmRegisteredPhones` | `{phone}` | device | Number of phones that are registered and actively in communication with the local call manager. | | `snmp.device_prof_ccmRejectedPhones` | `{reject}` | device | Number of phones whose registration requests were rejected by the local call manager. | | `snmp.device_prof_ccmUnregisteredPhones` | `{phone}` | device | Number of phone that are unregistered or have lost contact with the local call manager. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISR.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISR.mdx index 1abd3dcebe..661b0e2c15 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISR.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco ISR.mdx @@ -399,5 +399,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Ironport Email.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Ironport Email.mdx index 91155ce1e0..df097a7dc4 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Ironport Email.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Ironport Email.mdx @@ -319,5 +319,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_ironport_cacheThruputNow` | `{request}` | device | Request throughput in the last minute | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Legacy WLC.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Legacy WLC.mdx index 64e9f6bc5c..4a4443cb5a 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Legacy WLC.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Legacy WLC.mdx @@ -213,5 +213,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Load Balancer.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Load Balancer.mdx index b7a1aec091..ca59a8d006 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Load Balancer.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Load Balancer.mdx @@ -442,5 +442,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Meraki Cloud Controller.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Meraki Cloud Controller.mdx index 2637385acf..5a1dd9246a 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Meraki Cloud Controller.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Meraki Cloud Controller.mdx @@ -168,5 +168,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco NCS.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco NCS.mdx index 376903de12..03e421dd93 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco NCS.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco NCS.mdx @@ -399,5 +399,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Nexus.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Nexus.mdx index 5656cd8e16..6f7b9cce84 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Nexus.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco Nexus.mdx @@ -479,5 +479,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco SB.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco SB.mdx index 8488c24c6f..abb8d44989 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco SB.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco SB.mdx @@ -184,5 +184,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco UC Virtual Machine.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco UC Virtual Machine.mdx index fc00df57e2..0027056e84 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco UC Virtual Machine.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco UC Virtual Machine.mdx @@ -462,5 +462,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_ccmRegisteredPhones` | `{phone}` | device | Number of phones that are registered and actively in communication with the local call manager. | | `snmp.device_prof_ccmRejectedPhones` | `{reject}` | device | Number of phones whose registration requests were rejected by the local call manager. | | `snmp.device_prof_ccmUnregisteredPhones` | `{phone}` | device | Number of phone that are unregistered or have lost contact with the local call manager. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco UCS.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco UCS.mdx index 9062558c90..f532e6b4d2 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco UCS.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco UCS.mdx @@ -279,5 +279,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco WAN Optimizer.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco WAN Optimizer.mdx index 5f805ac28c..2755297623 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco WAN Optimizer.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco WAN Optimizer.mdx @@ -435,5 +435,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco.mdx index 704c4eaaed..73286602ac 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cisco.mdx @@ -399,5 +399,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix Netscaler SDX.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix Netscaler SDX.mdx index 6b77a59c74..a4ecb02140 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix Netscaler SDX.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix Netscaler SDX.mdx @@ -201,5 +201,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_netscaler_sdx_nsNsMemoryUsage` | `%` | per netscaler_sdx_ns_uuid, netscaler_sdx_ns_name | Memory usage percentage | | `snmp.device_prof_netscaler_sdx_nsNsRx` | `bit/s` | per netscaler_sdx_ns_uuid, netscaler_sdx_ns_name | In throughput of netscaler instance in megabits per second | | `snmp.device_prof_netscaler_sdx_nsNsTx` | `bit/s` | per netscaler_sdx_ns_uuid, netscaler_sdx_ns_name | Out throughput of netscaler instance in megabits per second | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix Netscaler.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix Netscaler.mdx index be47570178..65f70ceb91 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix Netscaler.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix Netscaler.mdx @@ -306,5 +306,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix.mdx index 7f4cc74793..905af82adf 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Citrix.mdx @@ -140,5 +140,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cradlepoint.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cradlepoint.mdx index ae0cdd6cba..a449141ad5 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cradlepoint.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cradlepoint.mdx @@ -163,5 +163,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cyberpower PDU.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cyberpower PDU.mdx index f0c22aa925..61edaaf61b 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Cyberpower PDU.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Cyberpower PDU.mdx @@ -254,5 +254,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell EMC Data Domain.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell EMC Data Domain.mdx index 19657ea094..cae9c8655b 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell EMC Data Domain.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell EMC Data Domain.mdx @@ -265,5 +265,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Force10.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Force10.mdx index b4c04d7767..04427d1aff 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Force10.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Force10.mdx @@ -164,5 +164,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell OS10.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell OS10.mdx index bc17d42817..a7a589f9ed 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell OS10.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell OS10.mdx @@ -239,5 +239,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Powerconnect.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Powerconnect.mdx index f42cc0ae39..49ef12f813 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Powerconnect.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Powerconnect.mdx @@ -189,5 +189,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Poweredge.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Poweredge.mdx index 6a49568b79..c3200c9d25 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Poweredge.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Poweredge.mdx @@ -394,5 +394,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Sonicwall.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Sonicwall.mdx index beac947926..a863863b93 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Sonicwall.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell Sonicwall.mdx @@ -206,5 +206,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell.mdx index 3457d24eee..c5a371ff1b 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dell.mdx @@ -237,5 +237,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dialogic Media Gateway.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dialogic Media Gateway.mdx index 512d8181c7..cf96c03c8e 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dialogic Media Gateway.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dialogic Media Gateway.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dlink DGS Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dlink DGS Switch.mdx index b910480254..1ef109c71d 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dlink DGS Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dlink DGS Switch.mdx @@ -215,5 +215,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dlink.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dlink.mdx index 9b0bbf022b..168af04c4f 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Dlink.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Dlink.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Eaton Epdu.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Eaton Epdu.mdx index c66343a1b7..87452d8afc 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Eaton Epdu.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Eaton Epdu.mdx @@ -218,5 +218,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Eaton UPS.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Eaton UPS.mdx index 75750064a5..301120ef0c 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Eaton UPS.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Eaton UPS.mdx @@ -285,5 +285,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Exagrid.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Exagrid.mdx index 0aff618bbc..c37a519c8f 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Exagrid.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Exagrid.mdx @@ -219,5 +219,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Extreme Switching.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Extreme Switching.mdx index bc190a2a10..6ddd01740f 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Extreme Switching.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Extreme Switching.mdx @@ -195,5 +195,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/F5 BIG IP.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/F5 BIG IP.mdx index 94a83aee18..3a2a03d8e5 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/F5 BIG IP.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/F5 BIG IP.mdx @@ -401,5 +401,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Fireeye.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Fireeye.mdx index 4f6c0e6554..c713226efd 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Fireeye.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Fireeye.mdx @@ -259,5 +259,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Appliance.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Appliance.mdx index db214cf153..4b1aae3201 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Appliance.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Appliance.mdx @@ -224,5 +224,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Fortigate.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Fortigate.mdx index 2c18fb904a..205467d3b5 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Fortigate.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Fortigate.mdx @@ -322,5 +322,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Fortiswitch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Fortiswitch.mdx index 39d9468d36..e9791d61dc 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Fortiswitch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet Fortiswitch.mdx @@ -173,5 +173,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet.mdx index 9de4cba655..ed898ce28c 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Fortinet.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Generic SNMP Device.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Generic SNMP Device.mdx index defd8ef451..0bfca29a34 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Generic SNMP Device.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Generic SNMP Device.mdx @@ -280,5 +280,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Generic UPS UPS-MIB.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Generic UPS UPS-MIB.mdx index cbe1ecccc0..f950f53413 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Generic UPS UPS-MIB.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Generic UPS UPS-MIB.mdx @@ -211,5 +211,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Gigamon.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Gigamon.mdx index 9a2f5fddd4..08afcb3f4e 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Gigamon.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Gigamon.mdx @@ -157,5 +157,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/HP H3C Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/HP H3C Switch.mdx index ff5b676d31..65716a4a85 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/HP H3C Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/HP H3C Switch.mdx @@ -171,5 +171,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/HP ICF Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/HP ICF Switch.mdx index 1822dc8da0..c2c4344651 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/HP ICF Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/HP ICF Switch.mdx @@ -165,5 +165,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/HP ILO.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/HP ILO.mdx index a2b43c7ad8..f079f50d66 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/HP ILO.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/HP ILO.mdx @@ -318,5 +318,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_cpqHeSysUtilLifeTime` | `s` | device | Total time the system has been in full operation in minutes | | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/HP Ilo4.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/HP Ilo4.mdx index e76767a1ec..d364c260f2 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/HP Ilo4.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/HP Ilo4.mdx @@ -318,5 +318,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_cpqHeSysUtilLifeTime` | `s` | device | Total time the system has been in full operation in minutes | | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Bladesystem Enclosure.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Bladesystem Enclosure.mdx index 27fb583d63..f06c7ca8e6 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Bladesystem Enclosure.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Bladesystem Enclosure.mdx @@ -270,5 +270,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE MSA.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE MSA.mdx index a0037446f9..40ed607abf 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE MSA.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE MSA.mdx @@ -165,5 +165,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Nimble.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Nimble.mdx index db67eb48d1..31f7d91cca 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Nimble.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Nimble.mdx @@ -196,5 +196,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Proliant.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Proliant.mdx index a837582f13..a87ff0771c 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Proliant.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/HPE Proliant.mdx @@ -414,5 +414,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_cpqHeSysUtilLifeTime` | `s` | device | Total time the system has been in full operation in minutes | | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Access Controllers.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Access Controllers.mdx index 1eb5cc7da3..fb0b12333c 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Access Controllers.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Access Controllers.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Routers.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Routers.mdx index 9b3a10b118..6c98d969b9 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Routers.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Routers.mdx @@ -203,5 +203,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Switches.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Switches.mdx index 176455e51b..d5a31feddf 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Switches.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei Switches.mdx @@ -212,5 +212,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei.mdx index 149e7d32fc..581595d1e8 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Huawei.mdx @@ -203,5 +203,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM Datapower Gateway.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM Datapower Gateway.mdx index 34e186ab6a..8c1d414625 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM Datapower Gateway.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM Datapower Gateway.mdx @@ -267,5 +267,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM Lenovo Server.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM Lenovo Server.mdx index 9b64151e83..095cd66b91 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM Lenovo Server.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM Lenovo Server.mdx @@ -235,5 +235,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM.mdx index 47affc6be6..3b0ceb04a4 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/IBM.mdx @@ -140,5 +140,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/IDRAC.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/IDRAC.mdx index 5adf31ee98..aab41f21b2 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/IDRAC.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/IDRAC.mdx @@ -352,5 +352,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Infinera Coriant Groove.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Infinera Coriant Groove.mdx index 73749752b6..59cd7be734 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Infinera Coriant Groove.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Infinera Coriant Groove.mdx @@ -190,5 +190,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Infoblox Ipam.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Infoblox Ipam.mdx index b9f6742944..8edd91c926 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Infoblox Ipam.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Infoblox Ipam.mdx @@ -258,5 +258,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Isilon.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Isilon.mdx index ea91a705d8..b2f749c15b 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Isilon.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Isilon.mdx @@ -298,5 +298,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ixsystems Truenas.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ixsystems Truenas.mdx index dacd112c83..4da6688163 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ixsystems Truenas.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ixsystems Truenas.mdx @@ -252,5 +252,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper EX.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper EX.mdx index 773b47e73a..f18401225b 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper EX.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper EX.mdx @@ -372,5 +372,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper MX.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper MX.mdx index f16a89c07d..55426ba023 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper MX.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper MX.mdx @@ -347,5 +347,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper Pulse Secure.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper Pulse Secure.mdx index 0dd5b947f2..dc7c38af59 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper Pulse Secure.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper Pulse Secure.mdx @@ -268,5 +268,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper QFX.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper QFX.mdx index 623d53ce6f..d21ea86f02 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper QFX.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper QFX.mdx @@ -281,5 +281,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper SRX.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper SRX.mdx index 4c5c8106d3..565697f717 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper SRX.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper SRX.mdx @@ -331,5 +331,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper.mdx index 093e3e862b..18c43f88b4 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Juniper.mdx @@ -292,5 +292,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Kyocera Printer.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Kyocera Printer.mdx index 0ee54317ff..574b07a6d5 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Kyocera Printer.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Kyocera Printer.mdx @@ -156,5 +156,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Linksys.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Linksys.mdx index 7eb005460e..641d95ac87 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Linksys.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Linksys.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Mcafee WEB Gateway.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Mcafee WEB Gateway.mdx index 72c1037ebb..3fb527fca2 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Mcafee WEB Gateway.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Mcafee WEB Gateway.mdx @@ -261,5 +261,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Meraki.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Meraki.mdx index 9f40a09ebc..5176c9d9e0 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Meraki.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Meraki.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Mikrotik Router.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Mikrotik Router.mdx index 34d3eaa5fb..05c2cf53c2 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Mikrotik Router.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Mikrotik Router.mdx @@ -221,5 +221,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/NEC Univerge.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/NEC Univerge.mdx index 0178af73ef..f6d85d27dc 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/NEC Univerge.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/NEC Univerge.mdx @@ -222,5 +222,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Nasuni Filer.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Nasuni Filer.mdx index d9ddd700a5..665aed9e9f 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Nasuni Filer.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Nasuni Filer.mdx @@ -410,5 +410,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Net-SNMP Host.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Net-SNMP Host.mdx index ef71da3024..15c371f9b6 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Net-SNMP Host.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Net-SNMP Host.mdx @@ -179,5 +179,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_ucd_memoryTotal` | `By` | device | The total amount of real/physical memory installed on this host | | `snmp.device_prof_ucd_ssRawSwapIn` | `By/s` | device | Amount of memory swapped in from disk | | `snmp.device_prof_ucd_ssRawSwapOut` | `By/s` | device | Amount of memory swapped out to disk | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Netapp.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Netapp.mdx index a11be1d64c..30c7e2708e 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Netapp.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Netapp.mdx @@ -216,5 +216,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Access Point.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Access Point.mdx index f973a2c99c..04512e434d 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Access Point.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Access Point.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Readynas.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Readynas.mdx index d8f00b65aa..1f45863729 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Readynas.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Readynas.mdx @@ -231,5 +231,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Switch.mdx index 8898af204a..5eb64a9ba1 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear Switch.mdx @@ -168,5 +168,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear.mdx index f8accfa1d2..3cff80a17c 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Netgear.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Nokia Service Router OS.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Nokia Service Router OS.mdx index ab329d9336..9e802a5c56 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Nokia Service Router OS.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Nokia Service Router OS.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia Cumulus Linux Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia Cumulus Linux Switch.mdx index 8494161416..d115a2901e 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia Cumulus Linux Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia Cumulus Linux Switch.mdx @@ -306,5 +306,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia Mellanox Switchx.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia Mellanox Switchx.mdx index 72453e08c2..a028aab24c 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia Mellanox Switchx.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia Mellanox Switchx.mdx @@ -181,5 +181,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia.mdx index c344dc2612..2ef31465bf 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Nvidia.mdx @@ -158,5 +158,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Omron CJ Ethernet IP.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Omron CJ Ethernet IP.mdx index dbf720235d..1bfbc7812d 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Omron CJ Ethernet IP.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Omron CJ Ethernet IP.mdx @@ -150,5 +150,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Opengear Console Manager.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Opengear Console Manager.mdx index 1d87590690..afe4e3e1d9 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Opengear Console Manager.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Opengear Console Manager.mdx @@ -238,5 +238,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Opengear Infrastructure Manager.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Opengear Infrastructure Manager.mdx index a9fc5d2a05..32b6154a2d 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Opengear Infrastructure Manager.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Opengear Infrastructure Manager.mdx @@ -238,5 +238,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/PF Sense.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/PF Sense.mdx index 6b65f3c950..3bd6d8a178 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/PF Sense.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/PF Sense.mdx @@ -213,5 +213,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto Cloudgenix.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto Cloudgenix.mdx index 6d2f872934..d2395ac373 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto Cloudgenix.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto Cloudgenix.mdx @@ -213,5 +213,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto Networks PAN-OS.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto Networks PAN-OS.mdx index 6f99c913d3..b9ab33b958 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto Networks PAN-OS.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto Networks PAN-OS.mdx @@ -509,6 +509,3 @@ Verify the account permissions and platform support for the metricset, or provid The collector reports missing or invalid integer, decimal, duration, status, license expiration, and IPsec tunnel-count values with the metricset, field, entity name, and raw value when present. It does not silently convert missing or malformed values to zero, report fake valid status, or treat unrecognized license dates as never-expiring licenses. - - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto.mdx index 08a495b2b8..9ce20b1047 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Palo Alto.mdx @@ -314,5 +314,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Peplink.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Peplink.mdx index cbeaa337f1..7f924eb80d 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Peplink.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Peplink.mdx @@ -224,5 +224,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Raritan Dominion.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Raritan Dominion.mdx index 865c73b8e7..fdf89f8c78 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Raritan Dominion.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Raritan Dominion.mdx @@ -178,5 +178,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed Interceptor.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed Interceptor.mdx index fa8439e796..c080a18b81 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed Interceptor.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed Interceptor.mdx @@ -188,5 +188,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed Steelhead.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed Steelhead.mdx index a44028169d..f8577feaa8 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed Steelhead.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed Steelhead.mdx @@ -194,5 +194,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed.mdx index 23a253849b..5115782cd8 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Riverbed.mdx @@ -173,5 +173,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus Unleashed.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus Unleashed.mdx index f3f8a8692c..1ce4d33396 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus Unleashed.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus Unleashed.mdx @@ -226,5 +226,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus WAP.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus WAP.mdx index 10728d9206..9bd5cd773f 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus WAP.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus WAP.mdx @@ -198,5 +198,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus.mdx index 6247ec4ba7..0eabe4e3aa 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ruckus.mdx @@ -196,5 +196,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/SNMP devices.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/SNMP devices.mdx index 388ee8020d..7c7b873969 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/SNMP devices.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/SNMP devices.mdx @@ -880,6 +880,3 @@ Table metrics are usually the slowest and often determine the total collection t 1. Do logs show “skipping data collection”? 2. Does *Internal → Stats* show collection time > `update_every`? 3. Increase `update_every` until skips disappear. - - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Server Iron Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Server Iron Switch.mdx index 638166844f..af1be2c603 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Server Iron Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Server Iron Switch.mdx @@ -173,5 +173,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech Pdu3.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech Pdu3.mdx index c2f23c83f2..94af178ce0 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech Pdu3.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech Pdu3.mdx @@ -220,5 +220,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech Pdu4.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech Pdu4.mdx index 0ab86aa18d..e204143609 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech Pdu4.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech Pdu4.mdx @@ -256,5 +256,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech.mdx index aa70e5734a..babf12d163 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Servertech.mdx @@ -140,5 +140,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Silverpeak Edgeconnect.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Silverpeak Edgeconnect.mdx index b76df6a43f..0154e0465f 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Silverpeak Edgeconnect.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Silverpeak Edgeconnect.mdx @@ -162,5 +162,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Sinetica Eagle I.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Sinetica Eagle I.mdx index d4d8197740..c4e3542a4d 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Sinetica Eagle I.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Sinetica Eagle I.mdx @@ -166,5 +166,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Sophos XGS Firewall.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Sophos XGS Firewall.mdx index 50ebb8111e..24643d767a 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Sophos XGS Firewall.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Sophos XGS Firewall.mdx @@ -216,5 +216,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Synology Disk Station.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Synology Disk Station.mdx index 761d6f1ba6..cc4271be83 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Synology Disk Station.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Synology Disk Station.mdx @@ -250,5 +250,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/TP Link.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/TP Link.mdx index 3d07db9279..84c5f47861 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/TP Link.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/TP Link.mdx @@ -164,5 +164,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite PDU.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite PDU.mdx index 8848a27cb1..07a09f650c 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite PDU.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite PDU.mdx @@ -212,5 +212,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite UPS.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite UPS.mdx index a7efa60f3c..6603e81919 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite UPS.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite UPS.mdx @@ -252,5 +252,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite.mdx index 59cada7ca8..fb03d1fab1 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Tripplite.mdx @@ -140,5 +140,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ubiquiti Unifi Security Gateway.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ubiquiti Unifi Security Gateway.mdx index 929f008222..6d0da922c5 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ubiquiti Unifi Security Gateway.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ubiquiti Unifi Security Gateway.mdx @@ -196,5 +196,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ubiquiti Unifi.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ubiquiti Unifi.mdx index 782ad171e3..cea9295677 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Ubiquiti Unifi.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Ubiquiti Unifi.mdx @@ -170,5 +170,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Velocloud Edge.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Velocloud Edge.mdx index 4d8d645571..245c691c38 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Velocloud Edge.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Velocloud Edge.mdx @@ -173,5 +173,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Vertiv Liebert AC.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Vertiv Liebert AC.mdx index 037631dcce..64dcf19459 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Vertiv Liebert AC.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Vertiv Liebert AC.mdx @@ -188,5 +188,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Vertiv Watchdog.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Vertiv Watchdog.mdx index b740c4b4c6..a53d14c367 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Vertiv Watchdog.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Vertiv Watchdog.mdx @@ -152,5 +152,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Vmware ESX.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Vmware ESX.mdx index b6bdc0bb90..c95096c016 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Vmware ESX.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Vmware ESX.mdx @@ -187,5 +187,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Watchguard.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Watchguard.mdx index 070e3d355c..14426299fd 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Watchguard.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Watchguard.mdx @@ -173,5 +173,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Western Digital Mycloud EX2 Ultra.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Western Digital Mycloud EX2 Ultra.mdx index 8bc989ab3d..cfd0243c19 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Western Digital Mycloud EX2 Ultra.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Western Digital Mycloud EX2 Ultra.mdx @@ -173,5 +173,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration |---|---|---|---| | `snmp.device_prof_hrStorageSize` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | | `snmp.device_prof_hrStorageUsed` | `By` | per storage_index, rm:storage_type, rm:storage_alloc_unit | | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Zebra Printer.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Zebra Printer.mdx index efa1447768..f619e18e0e 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Zebra Printer.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Zebra Printer.mdx @@ -148,5 +148,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | Metric (chart context) | Unit | Scope | Description | |---|---|---|---| | `snmp.device_prof_systemUptime` | `s` | device | Time since the system was last rebooted or powered on. | - - diff --git a/docs/Network Performance Monitoring/Device Metrics/Integrations/Zyxel Switch.mdx b/docs/Network Performance Monitoring/Device Metrics/Integrations/Zyxel Switch.mdx index 60c3f377fb..73e366e556 100644 --- a/docs/Network Performance Monitoring/Device Metrics/Integrations/Zyxel Switch.mdx +++ b/docs/Network Performance Monitoring/Device Metrics/Integrations/Zyxel Switch.mdx @@ -182,5 +182,3 @@ On top of the **generic SNMP baseline** (the *Generic SNMP Device* integration | `snmp.device_prof_lldpStatsRxPortTLVsDiscardedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsRxPortTLVsUnrecognizedTotal` | — | per lldp_loc_port_num | | | `snmp.device_prof_lldpStatsTxPortFramesTotal` | — | per lldp_loc_port_num | | - - diff --git a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Blue Coat Licensing.mdx b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Blue Coat Licensing.mdx index 145ad50ff0..2a18f353d9 100644 --- a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Blue Coat Licensing.mdx +++ b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Blue Coat Licensing.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Checkpoint Licensing.mdx b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Checkpoint Licensing.mdx index b433b78e00..9ee71a9d6a 100644 --- a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Checkpoint Licensing.mdx +++ b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Checkpoint Licensing.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Cisco Licensing.mdx b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Cisco Licensing.mdx index 9f6ce8294f..b96b70e000 100644 --- a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Cisco Licensing.mdx +++ b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Cisco Licensing.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Fortinet Licensing.mdx b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Fortinet Licensing.mdx index 484b345565..720032702a 100644 --- a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Fortinet Licensing.mdx +++ b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Fortinet Licensing.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/MikroTik Licensing.mdx b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/MikroTik Licensing.mdx index 3121391c64..cd879c53c4 100644 --- a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/MikroTik Licensing.mdx +++ b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/MikroTik Licensing.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Sophos Licensing.mdx b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Sophos Licensing.mdx index cd2e0ebb5a..010fb9f8c3 100644 --- a/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Sophos Licensing.mdx +++ b/docs/Network Performance Monitoring/Licensing Monitoring/Integrations/Sophos Licensing.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/AWS IP Ranges.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/AWS IP Ranges.mdx index 5f1e0d66e6..c03c7a8c35 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/AWS IP Ranges.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/AWS IP Ranges.mdx @@ -272,6 +272,3 @@ the journal for `network-sources` warnings: `tls.skip_verify: true` is rejected by validation. Use `tls.ca_file` for custom-CA paths if you front AWS behind an internal TLS-terminating proxy with a private CA. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Azure IP Ranges.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Azure IP Ranges.mdx index bef827f802..010b8bf265 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Azure IP Ranges.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Azure IP Ranges.mdx @@ -318,6 +318,3 @@ firewall rules it can. `tls.skip_verify: true` is rejected by validation. Use `tls.ca_file` for custom-CA paths (e.g., on an internal mirror with a private CA). - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/BMP BGP Monitoring Protocol.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/BMP BGP Monitoring Protocol.mdx index ec010d6a90..5414bc5c1b 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/BMP BGP Monitoring Protocol.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/BMP BGP Monitoring Protocol.mdx @@ -427,6 +427,3 @@ the `bmp` alias) -- if `routing` is removed from both `asn_providers` and BGP-derived enrichment depends on router export policy, peer state, and route visibility. Validate against your specific router firmware before depending on this for capacity or security decisions. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/CAIDA Routeviews Prefix-to-AS.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/CAIDA Routeviews Prefix-to-AS.mdx index d63430ded9..55ebfcea24 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/CAIDA Routeviews Prefix-to-AS.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/CAIDA Routeviews Prefix-to-AS.mdx @@ -191,6 +191,3 @@ CAIDA can represent multi-origin prefixes. The downloader uses the first listed AS for the generated single-value MMDB record. If you need full MOAS semantics, use BMP or BioRIS routing enrichment instead of an offline ASN lookup database. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Classifiers.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Classifiers.mdx index f7fc056fc7..24ee421fe1 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Classifiers.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Classifiers.mdx @@ -428,6 +428,3 @@ Field resolution does not error when the wrong context is missing -- it returns the type's zero value. So `Interface.Speed >= 1` written in an `exporter_classifiers` rule resolves to `0 >= 1` (false) on every call. Use `interface_classifiers` for any rule that needs an interface field. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Custom MMDB Database.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Custom MMDB Database.mdx index 5d1fbe349e..ce8a5cc42c 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Custom MMDB Database.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Custom MMDB Database.mdx @@ -232,6 +232,3 @@ and its 30-second cadence are documented in Operational practice: have your build pipeline write the new MMDB to a temp file in the same directory and `rename(2)` it over the live path so the swap is atomic. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/DB-IP IP Intelligence.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/DB-IP IP Intelligence.mdx index 74a61f9281..fe4b34d319 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/DB-IP IP Intelligence.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/DB-IP IP Intelligence.mdx @@ -216,6 +216,3 @@ tier; the 1-minute, 5-minute, and 1-hour rollups drop them to keep cardinality bounded. A query that auto-falls back to a rollup tier therefore renders an empty city map. Narrow the time range so the query fits the raw tier, or use the country / state map (those survive into rollups). - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Decapsulation.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Decapsulation.mdx index 5e98a22aab..6715315932 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Decapsulation.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Decapsulation.mdx @@ -279,6 +279,3 @@ filter at query time using the tunnel-endpoint pair before decap. The plugin cannot decode VXLAN and SRv6 in the same instance. If exporter A ships VXLAN tenant traffic and exporter B ships SRv6 transit traffic, you must choose the mode that matches the traffic this Netdata Agent receives. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/GCP IP Ranges.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/GCP IP Ranges.mdx index ffe4e2b46a..fadaef1e8f 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/GCP IP Ranges.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/GCP IP Ranges.mdx @@ -314,6 +314,3 @@ Google states the lists are "published and updated frequently" but does not guarantee a fixed cadence. The `syncToken` and `creationTime` keys at the top of each file let you check when Google last regenerated it. Daily polling is a safe default; sub-hourly is unnecessary. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Generic JSON-over-HTTP IPAM.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Generic JSON-over-HTTP IPAM.mdx index 32144a8e18..3090380f3b 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Generic JSON-over-HTTP IPAM.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Generic JSON-over-HTTP IPAM.mdx @@ -365,6 +365,3 @@ URLs with embedded credentials (`https://user:pass@host`) are converted to HTTP Basic authentication by the HTTP client. Prefer `headers:` for clarity and to avoid storing credentials in URLs -- e.g. `headers: { Authorization: "Basic dXNlcjpwYXNz" }` for HTTP basic-auth. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IP2Location LITE IP-Country.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IP2Location LITE IP-Country.mdx index 8e8c9202a0..4fe7d09224 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IP2Location LITE IP-Country.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IP2Location LITE IP-Country.mdx @@ -186,6 +186,3 @@ when those fields are required. Check the upstream IP2Location LITE page for the current version and next update date, then schedule the downloader accordingly. The plugin reloads the generated MMDB in place when the file signature changes. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPDeny Country Zones.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPDeny Country Zones.mdx index de4374119e..a8e2996ed7 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPDeny Country Zones.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPDeny Country Zones.mdx @@ -187,6 +187,3 @@ provider in the downloader. Check IPDeny's usage limits and retry later. The plugin continues using the last generated MMDB file until the downloader publishes a replacement. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPIP Country Database.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPIP Country Database.mdx index b485969b45..75e7828d28 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPIP Country Database.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPIP Country Database.mdx @@ -186,6 +186,3 @@ provider in the downloader. The supported IPIP source is country-only. Use DB-IP city-lite, MaxMind GeoLite2 City, GeoIP2 City, or a custom MMDB for richer geo fields. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPtoASN.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPtoASN.mdx index 3b0c679918..632df1bebd 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPtoASN.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/IPtoASN.mdx @@ -252,6 +252,3 @@ because BGP-driven prefix re-assignments will land in the dataset within hours but not in your cache until the next download. The plugin reloads MMDB files in place every 30 seconds when the file signature changes, so a fresh file lands without restart. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/MaxMind GeoIP GeoLite2.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/MaxMind GeoIP GeoLite2.mdx index cfab3c76f3..3494448a6c 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/MaxMind GeoIP GeoLite2.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/MaxMind GeoIP GeoLite2.mdx @@ -295,6 +295,3 @@ The plugin loads every configured MMDB. If you list both, the per-field [IP Intelligence](https://learn.netdata.cloud/docs/network-performance-monitoring/network-flows/enrichment) concept page). Order matters: list the source whose values you want to win **last**. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/NetBox.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/NetBox.mdx index 53974006ea..ddf5bbe705 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/NetBox.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/NetBox.mdx @@ -345,6 +345,3 @@ An empty `results` array (legitimate state for a freshly-installed NetBox) is treated as a fetch failure by the cross-cutting source loop and triggers exponential backoff. Add at least one synthetic prefix (e.g. a `RFC1918` container) so the response is never empty. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Static Metadata.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Static Metadata.mdx index 17c7d8181a..d5bbd84368 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Static Metadata.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/Static Metadata.mdx @@ -384,6 +384,3 @@ carry a rate. Static metadata is loaded at plugin startup and there is no file-change watcher. Restart the plugin (or the agent) after editing `netflow.yaml`. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/bio-rd RIPE RIS.mdx b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/bio-rd RIPE RIS.mdx index cf81ba5596..120cf4efba 100644 --- a/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/bio-rd RIPE RIS.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Enrichment Methods/bio-rd RIPE RIS.mdx @@ -342,6 +342,3 @@ routing tables, expect divergence. This is normal in BGP, not a bug. BioRIS-derived enrichment depends on the bio-rd version, upstream BGP source, route visibility, and refresh cadence. Validate against your bio-rd setup before relying on this for capacity or security decisions. - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Flow Protocols/IPFIX.mdx b/docs/Network Performance Monitoring/Network Flows/Flow Protocols/IPFIX.mdx index 5e6b33d8e8..84a4ed0580 100644 --- a/docs/Network Performance Monitoring/Network Flows/Flow Protocols/IPFIX.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Flow Protocols/IPFIX.mdx @@ -138,6 +138,3 @@ the full diagnostic recipe. For IPFIX specifically, watch the `template_errors` on `netflow.input_packets` -- IPFIX is template-driven and data records arriving before their templates are dropped. See also [Validation and Data Quality](https://learn.netdata.cloud/docs/network-performance-monitoring/network-flows/validation-and-data-quality). - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Flow Protocols/NetFlow.mdx b/docs/Network Performance Monitoring/Network Flows/Flow Protocols/NetFlow.mdx index 3a8f993e95..47b9b6234b 100644 --- a/docs/Network Performance Monitoring/Network Flows/Flow Protocols/NetFlow.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Flow Protocols/NetFlow.mdx @@ -164,6 +164,3 @@ the full diagnostic recipe -- including UDP path checks, template-error analysis and the "looks like a bug but isn't" section (doubling, mirroring, internal-IP geolocation). See also [Validation and Data Quality](https://learn.netdata.cloud/docs/network-performance-monitoring/network-flows/validation-and-data-quality) and [Anti-patterns](https://learn.netdata.cloud/docs/network-performance-monitoring/network-flows/anti-patterns). - - - diff --git a/docs/Network Performance Monitoring/Network Flows/Flow Protocols/sFlow.mdx b/docs/Network Performance Monitoring/Network Flows/Flow Protocols/sFlow.mdx index d05037ddf3..cbe7481502 100644 --- a/docs/Network Performance Monitoring/Network Flows/Flow Protocols/sFlow.mdx +++ b/docs/Network Performance Monitoring/Network Flows/Flow Protocols/sFlow.mdx @@ -145,6 +145,3 @@ from `ExtendedSwitch` records only -- not from 802.1Q tags inside the sampled he See also [Validation and Data Quality](https://learn.netdata.cloud/docs/network-performance-monitoring/network-flows/validation-and-data-quality) and the sFlow section of [Anti-patterns](https://learn.netdata.cloud/docs/network-performance-monitoring/network-flows/anti-patterns). - - - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/2Wcom GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/2Wcom GmbH SNMP Traps.mdx index 9ed8bb6768..843f689b4e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/2Wcom GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/2Wcom GmbH SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **19 trap definitions** from 2Wcom GmbH across **1 MIB** into st - `FLEXDSR04::tunerBerEvent` - `FLEXDSR04::tunerTsSyncEvent` - `FLEXDSR04::asiTsSyncEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/2Wire Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/2Wire Inc SNMP Traps.mdx index 6381e57890..40817c383e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/2Wire Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/2Wire Inc SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from 2Wire Inc across **1 MIB** into stru - `RBBPROVISIONING-MIB::rbbSubNotify` - `RBBPROVISIONING-MIB::rbbPowerUpNotify` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/3Com SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/3Com SNMP Traps.mdx index 0228304754..d198a9abf2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/3Com SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/3Com SNMP Traps.mdx @@ -253,4 +253,3 @@ Netdata decodes **817 trap definitions** from 3Com across **103 MIBs** into stru - `LBHUB-BOOM-MIB::deprRptrResetEvent` - `LBHUB-BOOM-MIB::heartbeatEvent` - `LBHUB-BOOM-MIB::localManagementUpdate` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/3Par Data SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/3Par Data SNMP Traps.mdx index 7cb418d632..422a83dae0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/3Par Data SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/3Par Data SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from 3Par Data across **1 MIB** into struc ### Sample decoded traps - `ThreeParMIB::alertNotify` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/4Rf Communications Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/4Rf Communications Ltd SNMP Traps.mdx index eacc976d40..238b57e893 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/4Rf Communications Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/4Rf Communications Ltd SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **69 trap definitions** from 4Rf Communications Ltd across **2 M - `COMMON-4RF::fouRFUploadStatusEvent` - `APRISAXE-EVENTS-4RF::aprisaXEThresholdAlarmEvent` - `APRISAXE-EVENTS-4RF::aprisaXERxSynthOutOfLockAlarmEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/A10 Networks Previously Raksha Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/A10 Networks Previously Raksha Networks Inc SNMP Traps.mdx index b1bce538d9..47dacb50b2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/A10 Networks Previously Raksha Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/A10 Networks Previously Raksha Networks Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **151 trap definitions** from A10 Networks Previously Raksha Net - `A10-AX-NOTIFICATIONS::axSystemShutdown` - `A10-AX-NOTIFICATIONS::axSystemTempHigh` - `A10-AX-NOTIFICATIONS::axFan1Failure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Abb Power Protection S.A. SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Abb Power Protection S.A. SNMP Traps.mdx index dcc9c5aa1f..65e71fb4cb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Abb Power Protection S.A. SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Abb Power Protection S.A. SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **124 trap definitions** from Abb Power Protection S.A. across * - `ABBMODULARUPS-MIB::upsTrapAlarmEntryAdded` - `ABBMODULARUPS-MIB::upsTrapAlarmEntryRemoved` - `ABBMODULARUPS-MIB::ups01TrapOnBattery` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ablerex Electronic Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ablerex Electronic Co Ltd SNMP Traps.mdx index 0887e7f8ab..5c43ebafe9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ablerex Electronic Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ablerex Electronic Co Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **44 trap definitions** from Ablerex Electronic Co Ltd across ** - `ATS-MIB::atsSourceBvoltageAbnormal` - `ATS-MIB::atsSourceAfrequencyAbnormal` - `ATS-MIB::atsSourceBfrequencyAbnormal` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acc SNMP Traps.mdx index ba3b010ed5..126d1c1db1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acc SNMP Traps.mdx @@ -165,4 +165,3 @@ Netdata decodes **417 trap definitions** from Acc across **20 MIBs** into struct - `ACC-SLOT::accRmFeatureTrap` - `ACC-SLOT::accRmCardRemovedTrap` - `ACC-SLOT::accRmActvComplTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accedian Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accedian Inc SNMP Traps.mdx index 3e811e6570..1085f0dc1d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accedian Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accedian Inc SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **3 trap definitions** from Accedian Inc across **2 MIBs** into - `ACD-DESC-MIB::acdPowerLost` - `ACD-ALARM-MIB::acdAlarmActiveState` - `ACD-ALARM-MIB::acdAlarmClearState` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accelerated Concepts Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accelerated Concepts Inc SNMP Traps.mdx index fe9a16c760..6eec146e83 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accelerated Concepts Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accelerated Concepts Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Accelerated Concepts Inc across **1 M ### Sample decoded traps - `ACCELERATED-MIB::event` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accton Technology SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accton Technology SNMP Traps.mdx index af989f6727..3b72dd9e84 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accton Technology SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accton Technology SNMP Traps.mdx @@ -197,4 +197,3 @@ Netdata decodes **1114 trap definitions** from Accton Technology across **47 MIB - `ES4612-MIB::swFanFailureTrap` - `ES4612-MIB::swFanRecoverTrap` - `ES4612-MIB::swPortSecurityTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accuenergy Canada Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accuenergy Canada Inc SNMP Traps.mdx index ac79bfcca4..eb05a276ee 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accuenergy Canada Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Accuenergy Canada Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **14 trap definitions** from Accuenergy Canada Inc across **1 MI - `ACCUENERGY-MIB::io11DI3StatusChanged` - `ACCUENERGY-MIB::io11DI4StatusChanged` - `ACCUENERGY-MIB::io11DI5StatusChanged` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acer SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acer SNMP Traps.mdx index e9ea23d1a0..f53c22c6e8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acer SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acer SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **23 trap definitions** from Acer across **1 MIB** into structur - `ASM-PRIVATE-COMMIB::trapECC1BitError` - `ASM-PRIVATE-COMMIB::trapECCMBitError` - `ASM-PRIVATE-COMMIB::trapFanStop` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acksys SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acksys SNMP Traps.mdx index 4f1ee29e0c..5152204df5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acksys SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acksys SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **10 trap definitions** from Acksys across **1 MIB** into struct - `ACKSYS-MIB::digitalInputAlarm` - `ACKSYS-MIB::tempExceededAlarm` - `ACKSYS-MIB::clientLinkAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acme Packet SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acme Packet SNMP Traps.mdx index 5258a95178..482bc49254 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acme Packet SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Acme Packet SNMP Traps.mdx @@ -165,4 +165,3 @@ Netdata decodes **225 trap definitions** from Acme Packet across **20 MIBs** int - `APSYSMGMT-MIB::apSysMgmtGroupClearTrap` - `APSYSMGMT-MIB::apSysMgmtSingleUnitRedundancyTrap` - `APSYSMGMT-MIB::apSysMgmtPowerTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Actidata Company SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Actidata Company SNMP Traps.mdx index 1fa34e2b9b..2d8f490e19 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Actidata Company SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Actidata Company SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Actidata Company across **1 MIB** in - `ACTIDATA-MIB::enteralarm` - `ACTIDATA-MIB::exitalarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Actona Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Actona Technologies Inc SNMP Traps.mdx index 366ef0af7c..312c9ac796 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Actona Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Actona Technologies Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Actona Technologies Inc across **1 M - `ACTONA-ACTASTOR-MIB::acEsLogsTrap` - `ACTONA-ACTASTOR-MIB::mgrLogsTrap` - `ACTONA-ACTASTOR-MIB::csLogsTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adaptec Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adaptec Inc SNMP Traps.mdx index cda4b943ca..ff3837ee75 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adaptec Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adaptec Inc SNMP Traps.mdx @@ -155,4 +155,3 @@ Netdata decodes **159 trap definitions** from Adaptec Inc across **10 MIBs** int - `HPNSATRAP-MIB::cycDuplicateHostAdapter` - `HPNSATRAP-MIB::cycHostAdapterDiscovered` - `HPNSATRAP-MIB::cycHostAdapterChanged` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adtran SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adtran SNMP Traps.mdx index 8dd0294fdf..a4e786a36c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adtran SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adtran SNMP Traps.mdx @@ -237,4 +237,3 @@ Netdata decodes **1372 trap definitions** from Adtran across **87 MIBs** into st - `ADTRAN-DSUDPP-MIB::adDSUDPSelfTestPass` - `ADTRAN-DSUDPP-MIB::adDSUDPSelfTestFail` - `ADTRAN-DSUDPP-MIB::adDSUDPNetworkINS` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adva AG Optical Networking SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adva AG Optical Networking SNMP Traps.mdx index c481607389..fee07a26fc 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adva AG Optical Networking SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Adva AG Optical Networking SNMP Traps.mdx @@ -169,4 +169,3 @@ Netdata decodes **1510 trap definitions** from Adva AG Optical Networking across - `METRO1500-MIB::metro1500PSNotFail` - `METRO1500-MIB::metro1500PSFail` - `METRO1500-MIB::metro1500FanNotFail` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Advanced Fibre Communications Afc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Advanced Fibre Communications Afc SNMP Traps.mdx index 9322738f3f..62d2bd4dce 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Advanced Fibre Communications Afc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Advanced Fibre Communications Afc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **26 trap definitions** from Advanced Fibre Communications Afc a - `UMC1000TRAPS::umc1TrapTerminalInfoChange` - `UMC1000TRAPS::umc1TrapTopologyChange` - `UMC1000TRAPS::umc1TrapInventoryShelfTableChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Advantech Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Advantech Co Ltd SNMP Traps.mdx index bf04124a39..68fa735bef 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Advantech Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Advantech Co Ltd SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Advantech Co Ltd across **1 MIB** in - `ADVANTECH-EKI-PRONEER-MIB::ddmiAlarmWarning` - `ADVANTECH-EKI-PRONEER-MIB::xRingProMasterChange` - `ADVANTECH-EKI-PRONEER-MIB::stpStateChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aerohive Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aerohive Networks Inc SNMP Traps.mdx index b93a73ba36..4283cf21fa 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aerohive Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aerohive Networks Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **12 trap definitions** from Aerohive Networks Inc across **1 MI - `AH-TRAP-MIB::ahStateChangeEvent` - `AH-TRAP-MIB::ahConnectionChangeEvent` - `AH-TRAP-MIB::ahIDPStationEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aethra SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aethra SNMP Traps.mdx index 9659c399e8..2a1f82fd8f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aethra SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aethra SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Aethra across **1 MIB** into structu - `AETHRA-MIB::interfaceDown` - `AETHRA-MIB::trunkRegistered` - `AETHRA-MIB::trunkUnregistered` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Affirmed Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Affirmed Networks Inc SNMP Traps.mdx index d785d38fad..5fbceaf5bd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Affirmed Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Affirmed Networks Inc SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **575 trap definitions** from Affirmed Networks Inc across **6 M - `AFFIRMED-SNMP-AN3000-TRAPS-MIB::fmNmAn3000Test` - `AFFIRMED-SNMP-AN3000-TRAPS-MIB::fmNmAn3000Commit` - `AFFIRMED-SNMP-AN3000-TRAPS-MIB::fmHmCacheOperStateDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agent SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agent SNMP Traps.mdx index fe4f5ce3ad..00803b0275 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agent SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agent SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Agent across **1 MIB** into structure ### Sample decoded traps - `AGENTPP-NOTIFYTEST-MIB::agentppNotifyTestAllTypes` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agere Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agere Systems Inc SNMP Traps.mdx index 99006fd739..2f248e2de9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agere Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agere Systems Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **50 trap definitions** from Agere Systems Inc across **1 MIB** - `ORiNOCO-MIB::oriTrapDNSIPNotConfigured` - `ORiNOCO-MIB::oriTrapWINSIPNotConfigured` - `ORiNOCO-MIB::oriTrapRADIUSAuthenticationNotConfigured` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agfeo GmbH Co KG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agfeo GmbH Co KG SNMP Traps.mdx index 83854ad808..43afdbb4ff 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agfeo GmbH Co KG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Agfeo GmbH Co KG SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Agfeo GmbH Co KG across **1 MIB** int ### Sample decoded traps - `AGFEO-PBX-MIB::agfeoEventGeneric` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aginode Germany GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aginode Germany GmbH SNMP Traps.mdx index b6ae3ea7af..b778012625 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aginode Germany GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aginode Germany GmbH SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **23 trap definitions** from Aginode Germany GmbH across **1 MIB - `NEXANS-BM-MIB::portNewMacAddress` - `NEXANS-BM-MIB::portSecurityFailure` - `NEXANS-BM-MIB::portErrorCountFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Airespace Inc Formerly Black Storm Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Airespace Inc Formerly Black Storm Networks SNMP Traps.mdx index 5b2ea04626..dd66784fa3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Airespace Inc Formerly Black Storm Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Airespace Inc Formerly Black Storm Networks SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **94 trap definitions** from Airespace Inc Formerly Black Storm - `AIRESPACE-SWITCHING-MIB::broadcastStormEndTrap` - `AIRESPACE-SWITCHING-MIB::linkFailureTrap` - `AIRESPACE-SWITCHING-MIB::vlanRequestFailureTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alaxala Networks Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alaxala Networks Corporation SNMP Traps.mdx index 94a01115c6..1dd9c5d605 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alaxala Networks Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alaxala Networks Corporation SNMP Traps.mdx @@ -189,4 +189,3 @@ Netdata decodes **803 trap definitions** from Alaxala Networks Corporation acros - `AX7800R-TRAP::ax7800rStandbySystemDownTrap` - `AX7800R-TRAP::ax7800rTemperatureTrap` - `AX7800R-TRAP::ax7800rAirFanStopTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albal Ingenieros S A SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albal Ingenieros S A SNMP Traps.mdx index fbbf3b3cb3..d79db63372 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albal Ingenieros S A SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albal Ingenieros S A SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **1962 trap definitions** from Albal Ingenieros S A across **1 M - `ALBALA-MIB::vct3000p01v1ModeTrap` - `ALBALA-MIB::vct3000p01v1InputTrap` - `ALBALA-MIB::vct3000p01v1MainFailTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albentia Systems S A SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albentia Systems S A SNMP Traps.mdx index e954a686bc..b955632f25 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albentia Systems S A SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albentia Systems S A SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Albentia Systems S A across **1 MIB** ### Sample decoded traps - `ALBENTIA-MIB::albAlarmNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albis Technologies Ltd Formerly Siemens Switzerland Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albis Technologies Ltd Formerly Siemens Switzerland Ltd SNMP Traps.mdx index 7d9cff1d4c..1fe29135d5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albis Technologies Ltd Formerly Siemens Switzerland Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Albis Technologies Ltd Formerly Siemens Switzerland Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **16 trap definitions** from Albis Technologies Ltd Formerly Sie - `TRAP-MIB::deviceLinkUp` - `TRAP-MIB::lineLinkDown` - `TRAP-MIB::lineLinkUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alcatel Lucent Enterprise SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alcatel Lucent Enterprise SNMP Traps.mdx index 506d55809d..f58c9d349f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alcatel Lucent Enterprise SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alcatel Lucent Enterprise SNMP Traps.mdx @@ -208,4 +208,3 @@ Netdata decodes **289 trap definitions** from Alcatel Lucent Enterprise across * - `OXO-CALL-HANDLING-MIB::ochmCabinetUnplugged` - `OXO-CALL-HANDLING-MIB::ochmCabinetOperational` - `OXO-CALL-HANDLING-MIB::ochmBoardFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ale USA Inc Omniswitch SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ale USA Inc Omniswitch SNMP Traps.mdx index c1ee7e37f5..a2bb0cf690 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ale USA Inc Omniswitch SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ale USA Inc Omniswitch SNMP Traps.mdx @@ -153,4 +153,3 @@ Netdata decodes **161 trap definitions** from Ale USA Inc Omniswitch across **8 - `XYLAN-SOFT-PVC-MIB::atmxSoftPvcCallFailuresTrap` - `XYLAN-OAM-MIB::xylanOamTrapVCAIS` - `XYLAN-OAM-MIB::xylanOamTrapVCRDI` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alebra Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alebra Technologies Inc SNMP Traps.mdx index 8f182eb79e..606650f66b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alebra Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alebra Technologies Inc SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Alebra Technologies Inc across **1 M - `APERTUS-TNSERVER-MIB::aperTnServTrapsRtmCounterOverflow` - `APERTUS-TNSERVER-MIB::aperTnServTrapsRtmSessionUnbound` - `APERTUS-TNSERVER-MIB::aperTnServTrapsUserDisabled` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allaire Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allaire Corporation SNMP Traps.mdx index c06a1413e9..971d028ec5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allaire Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allaire Corporation SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Allaire Corporation across **1 MIB** - `Macromedia-MIB::serverAbnormalState` - `Macromedia-MIB::jrunServerAbnormalState` - `Macromedia-MIB::jrunJDBCFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allied Telesis Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allied Telesis Inc SNMP Traps.mdx index b9fb8a52a6..123fb1d29e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allied Telesis Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allied Telesis Inc SNMP Traps.mdx @@ -197,4 +197,3 @@ Netdata decodes **318 trap definitions** from Allied Telesis Inc across **47 MIB - `AtiL2-MIB::atiL2FanStopTrap` - `AtiL2-MIB::atiL2TemperatureAbnormalTrap` - `AtiL2-MIB::atiL2PowerSupplyOutage` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allot Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allot Communications SNMP Traps.mdx index ce9ef888ff..62276d62b2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allot Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Allot Communications SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **7 trap definitions** from Allot Communications across **2 MIBs - `ALLOT-MIB::neSecondaryActive` - `ALLOT-MIB::neSecondaryStandBy` - `ALLOT-MIB::neSecondaryBypass` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alpine Optoelectronics Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alpine Optoelectronics Inc SNMP Traps.mdx index 93d0dc5d55..013a8cdfe5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alpine Optoelectronics Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alpine Optoelectronics Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Alpine Optoelectronics Inc across ** - `ALPINE-GEN-CARD-EDFA-MIB::alpineGenEdfaBiasAlarm` - `ALPINE-GEN-CARD-EDFA-MIB::alpineGenEdfaLossAlarm` - `ALPINE-TDCM-EDFA-MIB::alpineTEAlarmTemperature` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alteon Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alteon Networks Inc SNMP Traps.mdx index 66e335cb47..1cc7a31d20 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alteon Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alteon Networks Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **69 trap definitions** from Alteon Networks Inc across **4 MIBs - `ALTEON-TRAP-MIB::altSwDefGwUp` - `ALTEON-TRAP-MIB::altSwDefGwDown` - `ALTEON-TRAP-MIB::altSwDefGwInService` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Altergy Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Altergy Systems SNMP Traps.mdx index 3ce750d44b..38a79f1400 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Altergy Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Altergy Systems SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **13 trap definitions** from Altergy Systems across **1 MIB** in - `ALT-DEV-MIB::altergyTrapStartDR` - `ALT-DEV-MIB::altergyTrapStopDR` - `ALT-DEV-MIB::altergyTrapHold` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alvarion Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alvarion Ltd SNMP Traps.mdx index 43bdc11723..0f32e0da36 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alvarion Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Alvarion Ltd SNMP Traps.mdx @@ -159,4 +159,3 @@ Netdata decodes **149 trap definitions** from Alvarion Ltd across **14 MIBs** in - `RAINBOW-NOTIFICATIONS-MIB::rbDiagnosticsHwFaultOff` - `RAINBOW-NOTIFICATIONS-MIB::rbMonitorAccessOn` - `RAINBOW-NOTIFICATIONS-MIB::rbMonitorAccessOff` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/American Power Conversion Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/American Power Conversion Corp SNMP Traps.mdx index b6acb627a6..09077e1653 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/American Power Conversion Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/American Power Conversion Corp SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **801 trap definitions** from American Power Conversion Corp acr - `PowerNet-MIB::upsDiagnosticsFailed` - `PowerNet-MIB::upsDischarged` - `PowerNet-MIB::upsOnBattery` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Amperion Incorporated SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Amperion Incorporated SNMP Traps.mdx index 22216a9bd6..7152c8e844 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Amperion Incorporated SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Amperion Incorporated SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **25 trap definitions** from Amperion Incorporated across **1 MI - `Amperion-MIB::criticalBatteryShutdownWarning` - `Amperion-MIB::p12vOutOfRange` - `Amperion-MIB::m8point5vOutOfRange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/An D Cz SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/An D Cz SNMP Traps.mdx index e95a551e0b..5ec069aac5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/An D Cz SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/An D Cz SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **15 trap definitions** from An D Cz across **1 MIB** into struc - `IMCO-LS110-MIB::opto3-trap` - `IMCO-LS110-MIB::sdsRE1state-trap` - `IMCO-LS110-MIB::sdsRE2state-trap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ancor Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ancor Communications SNMP Traps.mdx index 228ed58d85..e160e32065 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ancor Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ancor Communications SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Ancor Communications across **1 MIB* - `QLOGIC-MIB::qlSB2PortLinkDown` - `QLOGIC-MIB::qlSB2PortLinkUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Andover Controls Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Andover Controls Corporation SNMP Traps.mdx index fddb4a980e..fbae85d199 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Andover Controls Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Andover Controls Corporation SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Andover Controls Corporation across * ### Sample decoded traps - `ACC-NC-ALARM-MIB::alarmTransitionEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Anuesystems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Anuesystems SNMP Traps.mdx index 32966600a2..59f64d401e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Anuesystems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Anuesystems SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **19 trap definitions** from Anuesystems across **1 MIB** into s - `ANUE-MIB::anueNtoEventMonStatInvalidCount` - `ANUE-MIB::anueNtoEventMonStatDropCount` - `ANUE-MIB::anueNtoEventMonStatRxUtilization` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aol Netscape Communications Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aol Netscape Communications Corp SNMP Traps.mdx index 3aa204a614..c55f4db573 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aol Netscape Communications Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aol Netscape Communications Corp SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Aol Netscape Communications Corp acr - `NSMAIL-MIB::nsMailServerNoResponse` - `NSLDAP-MIB::nsDirectoryServerDown` - `NSLDAP-MIB::nsDirectoryServerStart` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ap Nederland B.V. SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ap Nederland B.V. SNMP Traps.mdx index 81c57973d0..66fe8f71f8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ap Nederland B.V. SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ap Nederland B.V. SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Ap Nederland B.V. across **1 MIB** i - `APNL-MODULAR-PDU-MIB::pduPowerAlarm` - `APNL-MODULAR-PDU-MIB::sensorAlarm` - `APNL-MODULAR-PDU-MIB::pduSwitchAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aperto Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aperto Networks SNMP Traps.mdx index 5cf069ffed..d12732814f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aperto Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aperto Networks SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **70 trap definitions** from Aperto Networks across **1 MIB** in - `DEVTRAPS-MIB::aniDevTrapBsuSuDown` - `DEVTRAPS-MIB::aniDevTrapSuBsuUp` - `DEVTRAPS-MIB::aniDevTrapSuBsuDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Apple Computer Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Apple Computer Inc SNMP Traps.mdx index 3802c77f55..6280737d9d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Apple Computer Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Apple Computer Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Apple Computer Inc across **1 MIB** i ### Sample decoded traps - `Apple-macintosh-system-mib::userInTrouble` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Applied Innovation Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Applied Innovation Inc SNMP Traps.mdx index 37db6b793f..60e6024a52 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Applied Innovation Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Applied Innovation Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **28 trap definitions** from Applied Innovation Inc across **1 M - `AIBADGER-MIB::notDefinedBistateTrap` - `AIBADGER-MIB::infoBistateTrap` - `AIBADGER-MIB::normalBistateTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aptis Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aptis Communications Inc SNMP Traps.mdx index 17e83b59bf..9ae84f96da 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aptis Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aptis Communications Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **85 trap definitions** from Aptis Communications Inc across **1 - `APTIS-V2TRAPS-MIB::aptis-dc2down` - `APTIS-V2TRAPS-MIB::aptis-ac1down` - `APTIS-V2TRAPS-MIB::aptis-ac2down` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arbor Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arbor Networks SNMP Traps.mdx index 3fa8883167..b433abb47b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arbor Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arbor Networks SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **123 trap definitions** from Arbor Networks across **3 MIBs** i - `PEAKFLOW-DOS-MIB::protocolAnomaly` - `PEAKFLOW-DOS-MIB::heartbeatLoss` - `PEAKFLOW-DOS-MIB::internalError` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Areca Technology Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Areca Technology Corporation SNMP Traps.mdx index 262b559715..5ace7c4347 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Areca Technology Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Areca Technology Corporation SNMP Traps.mdx @@ -154,4 +154,3 @@ Netdata decodes **860 trap definitions** from Areca Technology Corporation acros - `ARECA-SATA-CARD1-MIB::rsExpand` - `ARECA-SATA-CARD1-MIB::rsRebuild` - `ARECA-SATA-CARD1-MIB::rsDegraded` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Argus Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Argus Technologies SNMP Traps.mdx index 46c412652b..a234084c2e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Argus Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Argus Technologies SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **18 trap definitions** from Argus Technologies across **3 MIBs* - `Argus-MIB::dcPwrSysRelayTrap` - `Argus-MIB::dcPwrSysComOKTrap` - `Argus-MIB::dcPwrSysComErrTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aricent Communication Holdings Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aricent Communication Holdings Ltd SNMP Traps.mdx index 7fbf88326f..206abf09b4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aricent Communication Holdings Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aricent Communication Holdings Ltd SNMP Traps.mdx @@ -169,4 +169,3 @@ Netdata decodes **86 trap definitions** from Aricent Communication Holdings Ltd - `ARICENT-ECFM-Y1731-MI-MIB::fsMIY1731TstRecivedWithErrorTrap` - `ARICENT-ECFM-Y1731-MI-MIB::fsMIY1731FrameDelayTrap` - `ARICENT-ECFM-Y1731-MI-MIB::fsMIY1731TxFailTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arista Networks Inc Formerly Arastra Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arista Networks Inc Formerly Arastra Inc SNMP Traps.mdx index 9bdaca3f5d..2895a2f5ae 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arista Networks Inc Formerly Arastra Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arista Networks Inc Formerly Arastra Inc SNMP Traps.mdx @@ -155,4 +155,3 @@ Netdata decodes **18 trap definitions** from Arista Networks Inc Formerly Arastr - `ARISTA-BRIDGE-EXT-MIB::aristaMacAge` - `ARISTA-TEST-MIB::aristaTestNotification` - `ARISTA-REDUNDANCY-MIB::aristaRedundancySwitchOverNotif` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Armillaire Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Armillaire Technologies SNMP Traps.mdx index e54611fc25..51692a98f0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Armillaire Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Armillaire Technologies SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **122 trap definitions** from Armillaire Technologies across **1 - `ARMILLAIRE2000-MIB::genConsoleLogoutNotify` - `ARMILLAIRE2000-MIB::genProcessBufOverflowNotify` - `ARMILLAIRE2000-MIB::genProcessBufOverflowRecoverNotify` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arris Interactive LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arris Interactive LLC SNMP Traps.mdx index e0a525d206..30c536f7b0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arris Interactive LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arris Interactive LLC SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **93 trap definitions** from Arris Interactive LLC across **6 MI - `ARRIS-C3-FPD-MIB::dcxFPDFan1Fail` - `ARRIS-C3-FPD-MIB::dcxFPDFan1FailClr` - `ARRIS-C3-FPD-MIB::dcxFPDFan2Fail` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arrowpoint Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arrowpoint Communications Inc SNMP Traps.mdx index 1a6a39dc8f..818fd14d6a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arrowpoint Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Arrowpoint Communications Inc SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **9 trap definitions** from Arrowpoint Communications Inc across - `SVCEXT-MIB::apSvcTransitionTrap` - `SNMPEXT-MIB::apSnmpExtReloadTrap` - `FLOWMGREXT-MIB::apFlowMgrExtDosSynTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Artel Video Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Artel Video Systems Inc SNMP Traps.mdx index 845d2f7fe4..a76c276260 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Artel Video Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Artel Video Systems Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **9 trap definitions** from Artel Video Systems Inc across **1 M - `CROSSSTREAM-MIB::cstrmPowerMonitor` - `CROSSSTREAM-MIB::cstrmATMPhyTrap` - `CROSSSTREAM-MIB::cstrmOAMVPTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Artem Gmbhmichael Marsanu Catrinel Catrinescu SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Artem Gmbhmichael Marsanu Catrinel Catrinescu SNMP Traps.mdx index 36df0ef4fb..c9ae5843fb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Artem Gmbhmichael Marsanu Catrinel Catrinescu SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Artem Gmbhmichael Marsanu Catrinel Catrinescu SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Artem Gmbhmichael Marsanu Catrinel C - `ARTEM-COMPOINT-WLAN-MIB::artemBridgePeerConfigSetup` - `ARTEM-COMPOINT-WLAN-MIB::artemBridgeLinkLock` - `ARTEM-COMPOINT-BLD-MIB::artemBLDConnection` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aruba A Hewlett Packard Enterprise Company SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aruba A Hewlett Packard Enterprise Company SNMP Traps.mdx index 00bc01b6fa..1169d119e0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aruba A Hewlett Packard Enterprise Company SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aruba A Hewlett Packard Enterprise Company SNMP Traps.mdx @@ -154,4 +154,3 @@ Netdata decodes **601 trap definitions** from Aruba A Hewlett Packard Enterprise - `CPPM-MIB::cppmNodeCertExpiry` - `CPPM-MIB::cppmLowDiskSpace` - `CPPM-MIB::cppmLowMemory` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asante Technology SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asante Technology SNMP Traps.mdx index 68a4b29ff3..c329d782ff 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asante Technology SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asante Technology SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **16 trap definitions** from Asante Technology across **3 MIBs** - `ASANTE-SWITCH-MIB::eSWFanFail` - `ASANTE-SWITCH-MIB::eSWExpPortConnectStateChange` - `ASANTE-SWITCH-MIB::eSWIPSpoofing` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ascend Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ascend Communications Inc SNMP Traps.mdx index a2b18e4c07..37487e0ae5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ascend Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ascend Communications Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **45 trap definitions** from Ascend Communications Inc across ** - `ASCEND-TRAP::portWaitSerial` - `ASCEND-TRAP::portHaveSerial` - `ASCEND-TRAP::portRinging` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ascom Sweden AB SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ascom Sweden AB SNMP Traps.mdx index d3c444468f..30bf0e30dc 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ascom Sweden AB SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ascom Sweden AB SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **14 trap definitions** from Ascom Sweden AB across **1 MIB** in - `ASCOM-IPDECT-MIB::ascomLinkDown` - `ASCOM-IPDECT-MIB::ascomLinkUp` - `ASCOM-IPDECT-MIB::ascomAuthenticationFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asentria Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asentria Corporation SNMP Traps.mdx index be51bc5f9e..1234f1a11c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asentria Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asentria Corporation SNMP Traps.mdx @@ -163,4 +163,3 @@ Netdata decodes **3007 trap definitions** from Asentria Corporation across **18 - `DATALINK-MIB::datalinkDataAlarmTrap` - `DATALINK-MIB::datalinkSensorAlarmTrap` - `DATALINK-MIB::datalinkNoDataAlarmTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asetek SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asetek SNMP Traps.mdx index ff1f8e3ae6..f8e65e44a0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asetek SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Asetek SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **18 trap definitions** from Asetek across **1 MIB** into struct - `ASETEK-RACKCDU-SMI-V1-MIB-V16::facilitySupplyWarning` - `ASETEK-RACKCDU-SMI-V1-MIB-V16::facilityReturnWarning` - `ASETEK-RACKCDU-SMI-V1-MIB-V16::serverSupplyWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Askey Computer Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Askey Computer Corp SNMP Traps.mdx index a5277b8dc1..70f9c9c32b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Askey Computer Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Askey Computer Corp SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Askey Computer Corp across **1 MIB** ### Sample decoded traps - `ASKEY-ENTITY-ALARM-MIB::askeyEntityAlarmTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Astaro AG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Astaro AG SNMP Traps.mdx index 05606c2db6..2ef5f20970 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Astaro AG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Astaro AG SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **159 trap definitions** from Astaro AG across **1 MIB** into st - `ASTARO-MIB::INFO-006` - `ASTARO-MIB::INFO-010` - `ASTARO-MIB::INFO-011` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/At T SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/At T SNMP Traps.mdx index b9d7135b3d..07a272619b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/At T SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/At T SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **29 trap definitions** from At T across **2 MIBs** into structu - `ATT-NETGATE-MIB::ngevExcessiveDial` - `ATT-NETGATE-MIB::ngevActiveWanIpChanged` - `ATT-NETGATE-MIB::ngevRogueMacDetected` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ateme SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ateme SNMP Traps.mdx index f43c3b1112..6719c461f3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ateme SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ateme SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **181 trap definitions** from Ateme across **2 MIBs** into struc - `ATEME-TITAN-EDGE-MIB::titanEdgeApplianceMonitorLogSystemStoppedNotification` - `ATEME-TITAN-EDGE-MIB::titanEdgeApplianceMonitorLogSystemEthernetIgmpVersionChangedNotification` - `ATEME-TITAN-EDGE-MIB::titanEdgeApplianceMonitorLogDvbSsuChannelUpdateNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aten International Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aten International Co Ltd SNMP Traps.mdx index 004354aaa4..fc0a26782a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aten International Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aten International Co Ltd SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **4 trap definitions** from Aten International Co Ltd across **3 - `ATEN-PE-CFG-STR::customTrapMSG` - `ATEN-PE2-CFG::trapNotifEvent` - `ATEN-IPMI-MIB::guid` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atlas Computer Equipment Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atlas Computer Equipment Inc SNMP Traps.mdx index 3c5864781c..281e9b5d99 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atlas Computer Equipment Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atlas Computer Equipment Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Atlas Computer Equipment Inc across - `ACOS-MIB::acosTftpInitiatedTrap` - `ACOS-MIB::acosTftpFailedTrap` - `ACOS-MIB::acosTftpSucceededTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atm Forum SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atm Forum SNMP Traps.mdx index 91c6763254..66792824df 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atm Forum SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atm Forum SNMP Traps.mdx @@ -154,4 +154,3 @@ Netdata decodes **115 trap definitions** from Atm Forum across **9 MIBs** into s - `ATM-FORUM-AUTO-CONFIG::atmfAtmServiceConfFail` - `ATM-FORUM-SNMP-M4-MIB::atmfM4IfAisAlarm` - `ATM-FORUM-SNMP-M4-MIB::atmfM4IfLcdAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atmel Hellas S A N SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atmel Hellas S A N SNMP Traps.mdx index 051350a4c8..d9d9f20c1d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atmel Hellas S A N SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atmel Hellas S A N SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **20 trap definitions** from Atmel Hellas S A N across **1 MIB** - `ATMEL-MIB::trapAssociation` - `ATMEL-MIB::trapDisassociation` - `ATMEL-MIB::trapAssociationExpire` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atto Technology Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atto Technology Inc SNMP Traps.mdx index f359abed8b..5843e8821e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atto Technology Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Atto Technology Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **8 trap definitions** from Atto Technology Inc across **2 MIBs* - `ATTOBRIDGE-MIB::bridgeDeviceTransition` - `ATTOBRIDGE-MIB::bridgeDeviceError` - `ATTO6500N-MIB::bridgeTemperatureWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Audiocodes Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Audiocodes Ltd SNMP Traps.mdx index f75ef46369..47377b867c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Audiocodes Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Audiocodes Ltd SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **101 trap definitions** from Audiocodes Ltd across **2 MIBs** i - `AcBoard::acBoardTemperatureAlarm` - `AcBoard::acBoardEvBoardStarted` - `AcBoard::acBoardEvResettingBoard` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Auditec S.A. SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Auditec S.A. SNMP Traps.mdx index 1105b44d93..9e275ff279 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Auditec S.A. SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Auditec S.A. SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Auditec S.A. across **1 MIB** into s - `AUDITEC2-MIB::probeAlarmEvent` - `AUDITEC2-MIB::probeAlarmEvent2` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Auspex Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Auspex Systems Inc SNMP Traps.mdx index efb93f3f50..26e1db0d46 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Auspex Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Auspex Systems Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Auspex Systems Inc across **1 MIB** - `NETSERVER-MIB::diskStackUpdationTrap` - `NETSERVER-MIB::fcLinkFailureTrap` - `NETSERVER-MIB::fcLinkUpTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Austin Hughes Electronics Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Austin Hughes Electronics Ltd SNMP Traps.mdx index 8040b4b337..2984eaad7a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Austin Hughes Electronics Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Austin Hughes Electronics Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **22 trap definitions** from Austin Hughes Electronics Ltd acros - `InfraPower-MIB::circuitBreakerTripped` - `InfraPower-MIB::circuitBreakerRecovered` - `InfraPower-MIB::sensorConnectionLost` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Availant SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Availant SNMP Traps.mdx index 3110679f47..ba15c674b0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Availant SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Availant SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Availant across **1 MIB** into struct ### Sample decoded traps - `AVAM-SNMPv1::avEventNotify` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avamar SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avamar SNMP Traps.mdx index 39456aded3..ab2d49d8b2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avamar SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avamar SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Avamar across **1 MIB** into structu - `AVAMAR-MCS-MIB::eventTrap` - `AVAMAR-MCS-MIB::testEventTrap` - `AVAMAR-MCS-MIB::burmActivityTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avaya Communication SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avaya Communication SNMP Traps.mdx index 9708984a9d..a438bab4c4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avaya Communication SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avaya Communication SNMP Traps.mdx @@ -167,4 +167,3 @@ Netdata decodes **503 trap definitions** from Avaya Communication across **22 MI - `G3-AVAYA-TRAP::alarmMajor` - `G3-AVAYA-TRAP::alarmMinor` - `G3-AVAYA-TRAP::alarmWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aventail Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aventail Corporation SNMP Traps.mdx index 6e56dce58d..6b7f17380b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aventail Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aventail Corporation SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **14 trap definitions** from Aventail Corporation across **5 MIB - `AVENTAIL-SYSTEM-HEALTH-MIB::cpuCapacityWarning` - `AVENTAIL-SYSTEM-HEALTH-MIB::memoryCapacityWarning` - `AVENTAIL-SYSTEM-HEALTH-MIB::userLimitWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aviat Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aviat Networks SNMP Traps.mdx index bdc5b0f575..588c1a4dd0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aviat Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aviat Networks SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Aviat Networks across **1 MIB** into - `AVIAT-ALARM-REPORTING-MIB::aviatAlarmClearedInstanceNotification` - `AVIAT-ALARM-REPORTING-MIB::aviatAlarmUnstableInstanceNotification` - `AVIAT-ALARM-REPORTING-MIB::aviatAlarmStabilizedInstanceNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avici Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avici Systems Inc SNMP Traps.mdx index 17116476ad..2d84daac56 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avici Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avici Systems Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **31 trap definitions** from Avici Systems Inc across **4 MIBs** - `AVICI-SONET-MIB::aviciSonetFarEndLineEvent` - `AVICI-SONET-MIB::aviciSonetPathEvent` - `AVICI-SONET-MIB::aviciSonetFarEndPathEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avista Labs Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avista Labs Inc SNMP Traps.mdx index c0301ae27c..15743f9a4d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avista Labs Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avista Labs Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **9 trap definitions** from Avista Labs Inc across **1 MIB** int - `PLUG-POWER-ESERIES-MIB::fcsETrapMNAlarmEntryAdded` - `PLUG-POWER-ESERIES-MIB::fcsETrapMNAlarmEntryRemoved` - `PLUG-POWER-ESERIES-MIB::fcsETrapRunning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avocent Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avocent Corporation SNMP Traps.mdx index d50988dd04..9475c15a52 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avocent Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avocent Corporation SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **254 trap definitions** from Avocent Corporation across **3 MIB - `KVMS3-TRAP-MIB::fscKvmS3UserLogoutTrap` - `KVMS3-TRAP-MIB::fscKvmS3VideoSessionStartedTrap` - `KVMS3-TRAP-MIB::fscKvmS3VideoSessionStoppedTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avtech Software Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avtech Software Inc SNMP Traps.mdx index 7279812fff..9237e6488a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avtech Software Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Avtech Software Inc SNMP Traps.mdx @@ -155,4 +155,3 @@ Netdata decodes **157 trap definitions** from Avtech Software Inc across **10 MI - `TEMPAGER-MIB::alarmstart2-t4` - `TEMPAGER-MIB::alarmclear2-t4` - `TEMPAGER-MIB::alarmstart3-t4` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aware Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aware Inc SNMP Traps.mdx index b7d90723db..57bc308d4c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aware Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Aware Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Aware Inc across **1 MIB** into struc ### Sample decoded traps - `SFOS-FIREWALL-OLD-MIB::sfosNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Axis Communications AB SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Axis Communications AB SNMP Traps.mdx index d063c77993..f07b0ba6b7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Axis Communications AB SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Axis Communications AB SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Axis Communications AB across **1 MI - `AXIS-VIDEO-MIB::alarmNew` - `AXIS-VIDEO-MIB::alarmCleared` - `AXIS-VIDEO-MIB::alarmSingle` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/B A T M Advance Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/B A T M Advance Technologies SNMP Traps.mdx index d7d049cb3a..344d5c2f10 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/B A T M Advance Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/B A T M Advance Technologies SNMP Traps.mdx @@ -183,4 +183,3 @@ Netdata decodes **130 trap definitions** from B A T M Advance Technologies acros - `PRVT-SWITCH-MIB::fanStatusChange` - `PRVT-SWITCH-MIB::portSecurityViolation` - `PRVT-SWITCH-MIB::portRedundantLinkChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bachmann GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bachmann GmbH SNMP Traps.mdx index 022eb97c25..2adf320677 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bachmann GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bachmann GmbH SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **60 trap definitions** from Bachmann GmbH across **2 MIBs** int - `BLUENET-IRS::birsTrOidCAN` - `BLUENET-IRS::birsTrOidNeCuLowerWSet` - `BLUENET-IRS::birsTrOidNeCuLowerWRst` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bancomm SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bancomm SNMP Traps.mdx index d7f2c32e30..761cf12402 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bancomm SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bancomm SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Bancomm across **1 MIB** into structu ### Sample decoded traps - `SSU2000-MIB::ssuEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barco Control Rooms SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barco Control Rooms SNMP Traps.mdx index 92c4ceca1b..4036e6ae0e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barco Control Rooms SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barco Control Rooms SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Barco Control Rooms across **1 MIB** - `BARCO-CLICKSHARE-MIB::alarmCpuTemperature` - `BARCO-CLICKSHARE-MIB::alarmCaseFanSpeed` - `BARCO-CLICKSHARE-MIB::alarmProcessNotRunning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barix AG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barix AG SNMP Traps.mdx index d87e993e30..7910cb075e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barix AG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barix AG SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **10 trap definitions** from Barix AG across **2 MIBs** into str - `BARIX-ABCL-TRAPS-MIB::amplifier1AlarmCleared` - `BARIX-ABCL-TRAPS-MIB::amplifier1Alarm` - `BARIX-ABCL-TRAPS-MIB::amplifier2AlarmCleared` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barracuda Networks AG Previous Was Phion Information Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barracuda Networks AG Previous Was Phion Information Technologies SNMP Traps.mdx index dce34318f4..b0f7da5c41 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barracuda Networks AG Previous Was Phion Information Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barracuda Networks AG Previous Was Phion Information Technologies SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Barracuda Networks AG Previous Was Ph ### Sample decoded traps - `PHION-MIB::eventTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barracuda Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barracuda Networks Inc SNMP Traps.mdx index 1ec8dc1ee8..a59df507a9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barracuda Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Barracuda Networks Inc SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **46 trap definitions** from Barracuda Networks Inc across **3 M - `Barracuda-SPAM::cpuTempHigh` - `Barracuda-SPAM::firmwareStorageHigh` - `Barracuda-SPAM::mailStorageHigh` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bay Technical Associates SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bay Technical Associates SNMP Traps.mdx index c1eb99b36a..52d4adb728 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bay Technical Associates SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bay Technical Associates SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **45 trap definitions** from Bay Technical Associates across **1 - `Baytech-MIB-401-4::outletOn` - `Baytech-MIB-401-4::outletOff` - `Baytech-MIB-401-4::outletReboot` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bdt GmbH Co KG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bdt GmbH Co KG SNMP Traps.mdx index 06fefbd5fc..5eda112913 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bdt GmbH Co KG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bdt GmbH Co KG SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **12 trap definitions** from Bdt GmbH Co KG across **1 MIB** int - `BDTMIB::bDTShutdown` - `BDTMIB::bDTError` - `BDTMIB::bDTInformational` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Beijing Raisecom Scientific Technology Development Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Beijing Raisecom Scientific Technology Development Co Ltd SNMP Traps.mdx index 278569a8e9..fbfabc7126 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Beijing Raisecom Scientific Technology Development Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Beijing Raisecom Scientific Technology Development Co Ltd SNMP Traps.mdx @@ -209,4 +209,3 @@ Netdata decodes **826 trap definitions** from Beijing Raisecom Scientific Techno - `RAISECOM-SYSTEM-MIB::raisecomMemoryTrap` - `RAISECOM-SYSTEM-MIB::raisecomMemoryTrapRecover` - `RAISECOM-SYSTEM-MIB::temperatureAbnormalTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bekarts International SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bekarts International SNMP Traps.mdx index 7f220be351..745e92a02e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bekarts International SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bekarts International SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **9 trap definitions** from Bekarts International across **1 MIB - `BEKARTS-v1-MIB::bekarts-mailshappy-active` - `BEKARTS-v1-MIB::bekarts-mailshappy-deactive` - `BEKARTS-v1-MIB::bekarts-mailshappy-warning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bellcore SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bellcore SNMP Traps.mdx index 71656307b2..1c16ffa8ed 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bellcore SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bellcore SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **9 trap definitions** from Bellcore across **2 MIBs** into stru - `SMDS-Subscription-MIB::individualAddressScreenEntryChange` - `SMDS-Subscription-MIB::groupAddressScreenEntryChange` - `SMDS-Subscription-MIB::groupAddressChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Benu Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Benu Networks Inc SNMP Traps.mdx index bfb804a4b7..619425cc7c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Benu Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Benu Networks Inc SNMP Traps.mdx @@ -156,4 +156,3 @@ Netdata decodes **62 trap definitions** from Benu Networks Inc across **11 MIBs* - `BENU-CHASSIS-MIB::benuLinkUpTrap` - `BENU-CHASSIS-MIB::benuLinkDownTrap` - `BENU-CHASSIS-MIB::benuSensorCritical` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Beronet GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Beronet GmbH SNMP Traps.mdx index f315c77d83..4bb2042256 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Beronet GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Beronet GmbH SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Beronet GmbH across **1 MIB** into s - `BEROFIX-MIB::isdn-L2Port` - `BEROFIX-MIB::isdn-L2Up` - `BEROFIX-MIB::isdn-L2Down` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Best Power A Division Of General Signal Power Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Best Power A Division Of General Signal Power Systems SNMP Traps.mdx index f52f59cb23..c9869a78f8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Best Power A Division Of General Signal Power Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Best Power A Division Of General Signal Power Systems SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **54 trap definitions** from Best Power A Division Of General Si - `BESTPOWER-MIB::upsTrapUPSOnBattery` - `BESTPOWER-MIB::upsTrapUPSNotOnBattery` - `BESTPOWER-MIB::upsTrapLowRuntime` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Better Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Better Networks SNMP Traps.mdx index 71bd0e50bd..53b562bd66 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Better Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Better Networks SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **7 trap definitions** from Better Networks across **1 MIB** int - `BETTER-NETWORKS-ETHERNETBOX-MIB::sensorstatusChangeToHigh` - `BETTER-NETWORKS-ETHERNETBOX-MIB::ethernetboxNotificationInputLineChangeToLow` - `BETTER-NETWORKS-ETHERNETBOX-MIB::ethernetboxNotificationInputLineChangeToHigh` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bharti Telesoft International Pvt Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bharti Telesoft International Pvt Ltd SNMP Traps.mdx index a45541311c..4075bf6d4e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bharti Telesoft International Pvt Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bharti Telesoft International Pvt Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **18 trap definitions** from Bharti Telesoft International Pvt L - `PRETUPS-MIB-new::databasedown` - `PRETUPS-MIB-new::databaseup` - `PRETUPS-MIB-new::systemerrorerrordown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bintec Communications GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bintec Communications GmbH SNMP Traps.mdx index 70111d4201..63ca98ce3b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bintec Communications GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bintec Communications GmbH SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **35 trap definitions** from Bintec Communications GmbH across * - `BIANCA-BRICK-MIB::biboAdmTrapACrdDown` - `BIANCA-BRICK-MIB::biboAdmTrapACrdRunning` - `BIANCA-BRICK-MIB::biboAdmTrapACrdFailed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bird Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bird Technologies SNMP Traps.mdx index 958b52fa3b..fcf3db2897 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bird Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bird Technologies SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Bird Technologies across **1 MIB** i - `BPMEMIB::highPwrAlarmTrap` - `BPMEMIB::lowPwrAlarmTrap` - `BPMEMIB::vswrPwrAlarmTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bke A S SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bke A S SNMP Traps.mdx index d59bd1ab58..b6ffe37d62 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bke A S SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bke A S SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Bke A S across **1 MIB** into struct - `PNETMOD-MIB::tsTrapAlarmStart` - `PNETMOD-MIB::tsTrapAlarmEnd` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Blade Network Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Blade Network Technologies Inc SNMP Traps.mdx index c947e83213..92e414f976 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Blade Network Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Blade Network Technologies Inc SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **240 trap definitions** from Blade Network Technologies Inc acr - `IBM-GbTOR-10G-L2L3-MIB::swDefGwDown` - `IBM-GbTOR-10G-L2L3-MIB::swDefGwInService` - `IBM-GbTOR-10G-L2L3-MIB::swDefGwNotInService` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Blue Coat Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Blue Coat Systems SNMP Traps.mdx index 5197e7bec4..2bfc657c87 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Blue Coat Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Blue Coat Systems SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **24 trap definitions** from Blue Coat Systems across **1 MIB** - `BLUECOAT-CAS-MIB::casVirusDetected` - `BLUECOAT-CAS-MIB::casFileServed` - `BLUECOAT-CAS-MIB::casFileBlocked` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bluecat Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bluecat Networks SNMP Traps.mdx index 241143ff3c..5a3ad75646 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bluecat Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bluecat Networks SNMP Traps.mdx @@ -154,4 +154,3 @@ Netdata decodes **18 trap definitions** from Bluecat Networks across **9 MIBs** - `BCN-DHCPV4-MIB::bcnDhcpv4SubnetLowNotif` - `BCN-DHCPV4-MIB::bcnDhcpv4SubnetHighNotif` - `BCN-DNS-MIB::bcnDnsAlarmNotif` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bluesocket Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bluesocket Inc SNMP Traps.mdx index eda9cad698..0da4b42e39 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bluesocket Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bluesocket Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **26 trap definitions** from Bluesocket Inc across **2 MIBs** in - `BLUESERVER-MIB::cctExternalServConfChange` - `BLUESERVER-MIB::cctRoleConfChange` - `BLUESERVER-MIB::cctDestinationConfChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bmc Software SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bmc Software SNMP Traps.mdx index a3e6aafdfb..7e4215cd9e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bmc Software SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bmc Software SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Bmc Software across **1 MIB** into s - `PATROL-MIB::patrolWarning` - `PATROL-MIB::patrolAlarm` - `PATROL-MIB::patrolTrapV1StateChanged` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Borderware Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Borderware Technologies Inc SNMP Traps.mdx index 12efd7f25a..0cdd7382c3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Borderware Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Borderware Technologies Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Borderware Technologies Inc across ** ### Sample decoded traps - `BORDERWARE-FW-MIB::alAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brand Communications Limited SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brand Communications Limited SNMP Traps.mdx index 65186dc6f1..2b95f78c8a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brand Communications Limited SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brand Communications Limited SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **84 trap definitions** from Brand Communications Limited across - `APSNMP-MIB::trapsPortsInUseIncoming` - `APSNMP-MIB::trapsPortsInUseOutgoing` - `APSNMP-MIB::trapsOverrallCompressionRatioOfAllPorts` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bridgewave Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bridgewave Communications SNMP Traps.mdx index 1f31bfe6b8..197963b3b9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bridgewave Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bridgewave Communications SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **15 trap definitions** from Bridgewave Communications across ** - `BRWAVE-RADIO-MIB::brwaveUnitTemperatureAbnormal` - `BRWAVE-RADIO-MIB::brwaveUnitTemperatureNormal` - `BRWAVE-RADIO-MIB::brwaveTxTemperatureAbnormal` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadband Access Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadband Access Systems Inc SNMP Traps.mdx index 7b3ec0820e..335107aada 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadband Access Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadband Access Systems Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **11 trap definitions** from Broadband Access Systems Inc across - `BAS-TRAPS-MIB::basTraceLogTrap` - `BAS-TRAPS-MIB::basCmtsCmUp` - `BAS-TRAPS-MIB::basCmtsCmDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadcom Limited SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadcom Limited SNMP Traps.mdx index fa029206c4..db3cb1305c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadcom Limited SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadcom Limited SNMP Traps.mdx @@ -157,4 +157,3 @@ Netdata decodes **54 trap definitions** from Broadcom Limited across **12 MIBs** - `EdgeSwitch-SWITCHING-MIB::broadcastStormEndTrap` - `EdgeSwitch-SWITCHING-MIB::linkFailureTrap` - `EdgeSwitch-SWITCHING-MIB::vlanRequestFailureTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadsoft Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadsoft Inc SNMP Traps.mdx index cf0dcc84e2..76b8c69949 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadsoft Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Broadsoft Inc SNMP Traps.mdx @@ -155,4 +155,3 @@ Netdata decodes **310 trap definitions** from Broadsoft Inc across **10 MIBs** i - `BroadworksFault::softwareError` - `BroadworksFault::bwGeneralSoftwareError` - `BroadworksFault::bwPMtomcatLaunched` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communication Systems Inc Formerly Foundry Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communication Systems Inc Formerly Foundry Networks Inc SNMP Traps.mdx index 5b7cbcdc97..8edddf0bdb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communication Systems Inc Formerly Foundry Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communication Systems Inc Formerly Foundry Networks Inc SNMP Traps.mdx @@ -157,4 +157,3 @@ Netdata decodes **258 trap definitions** from Brocade Communication Systems Inc - `FOUNDRY-SN-NOTIFICATION-MIB::snTrapOspfIfStateChange` - `FOUNDRY-SN-NOTIFICATION-MIB::snTrapOspfVirtIfStateChange` - `FOUNDRY-SN-NOTIFICATION-MIB::snOspfNbrStateChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc Formerly Mcdata Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc Formerly Mcdata Corporation SNMP Traps.mdx index 53e66827c1..2640bc641c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc Formerly Mcdata Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc Formerly Mcdata Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **4 trap definitions** from Brocade Communications Systems Inc F - `ED-1032-MIB::ed1032FruScn` - `EF-6000-MIB::ef6000PortBindingViolation` - `EF-6000-MIB::ef6000ThresholdAlert` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc Formerly Nuview Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc Formerly Nuview Inc SNMP Traps.mdx index 9f656cb5f7..e1c875fc85 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc Formerly Nuview Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc Formerly Nuview Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **10 trap definitions** from Brocade Communications Systems Inc - `NuView-MIB::ClusterXTrapNodeFail` - `NuView-MIB::ClusterXTrapClusterFail` - `NuView-MIB::ClusterXTrapResourceFail` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc SNMP Traps.mdx index 5a16c4575b..23854b07e7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Brocade Communications Systems Inc SNMP Traps.mdx @@ -153,4 +153,3 @@ Netdata decodes **28 trap definitions** from Brocade Communications Systems Inc - `SW-MIB::swFCPortScn` - `SW-MIB::swEventTrap` - `SW-MIB::swFabricWatchTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bti Photonic Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bti Photonic Systems SNMP Traps.mdx index cddf3e032e..663c32a56e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bti Photonic Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bti Photonic Systems SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **901 trap definitions** from Bti Photonic Systems across **4 MI - `BTI-7000-MIB::slotInvPluginEvt` - `BTI-7000-MIB::slotInvUnpluginEvt` - `BTI-7000-MIB::slotInvUpgradeStageResultEvt` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bytesphere LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bytesphere LLC SNMP Traps.mdx index 91a6eaf034..bed39d8aaa 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bytesphere LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Bytesphere LLC SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Bytesphere LLC across **1 MIB** into ### Sample decoded traps - `BYTESPHERE-EVENTLOG-MIB::eventGenerated` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/C C Power Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/C C Power Inc SNMP Traps.mdx index 0095b1cbe5..08d77ee95e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/C C Power Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/C C Power Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **44 trap definitions** from C C Power Inc across **1 MIB** into - `CCPOWER-MIB::batteryDisconnectTrap` - `CCPOWER-MIB::programmableTrap` - `CCPOWER-MIB::highVoltageTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cable Television Laboratories Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cable Television Laboratories Inc SNMP Traps.mdx index 09114e4af4..38b383b523 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cable Television Laboratories Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cable Television Laboratories Inc SNMP Traps.mdx @@ -153,4 +153,3 @@ Netdata decodes **34 trap definitions** from Cable Television Laboratories Inc a - `DSG-IF-STD-MIB::dsgIfStdTdsg2TimeoutNotify` - `DOCS-DIAG-MIB::docsDiagLogSizeHighThrshldReached` - `DOCS-DIAG-MIB::docsDiagLogSizeLowThrshldReached` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cacheflow Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cacheflow Inc SNMP Traps.mdx index 53149e1a3c..d717917dde 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cacheflow Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cacheflow Inc SNMP Traps.mdx @@ -158,4 +158,3 @@ Netdata decodes **19 trap definitions** from Cacheflow Inc across **13 MIBs** in - `BLUECOAT-SG-ATTACK-MIB::deviceAttackTrap` - `BLUECOAT-SG-USAGE-MIB::deviceUsageTrap` - `BLUECOAT-SG-POLICY-MIB::devicePolicyTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cacti SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cacti SNMP Traps.mdx index 7dd9ee427f..2715a847fb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cacti SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cacti SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **7 trap definitions** from Cacti across **3 MIBs** into structu - `CACTI-MIB::cactiNotifyDeviceRecovering` - `CACTI-MIB::cactiNotifyPollerRuntimeExceeding` - `CACTI-MIB::cactiNotifyDeviceFailedPoll` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cadant Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cadant Inc SNMP Traps.mdx index 4f49f30f7c..77ab43d528 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cadant Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cadant Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **31 trap definitions** from Cadant Inc across **4 MIBs** into s - `CADANT-CMTS-NOTIFICATION-MIB::aaaServerUnreachableTrap` - `CADANT-CMTS-NOTIFICATION-MIB::aaaServerGroupUnreachableTrap` - `CADANT-CMTS-NOTIFICATION-MIB::aaaServerAuthFailTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Calix Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Calix Networks SNMP Traps.mdx index 50b98b71fc..74171b59b4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Calix Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Calix Networks SNMP Traps.mdx @@ -155,4 +155,3 @@ Netdata decodes **197 trap definitions** from Calix Networks across **10 MIBs** - `E7-Notifications-MIB::e7TrapDbChange` - `E7-Notifications-MIB::e7TrapSecurity` - `E7-Notifications-MIB::e7TrapTca` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cambium Networks Limited Formerly Pipinghot Networks Limited SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cambium Networks Limited Formerly Pipinghot Networks Limited SNMP Traps.mdx index c4868105bc..dec26d9b5e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cambium Networks Limited Formerly Pipinghot Networks Limited SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cambium Networks Limited Formerly Pipinghot Networks Limited SNMP Traps.mdx @@ -156,4 +156,3 @@ Netdata decodes **168 trap definitions** from Cambium Networks Limited Formerly - `CAMBIUM-PTP500-MIB::channelChangeTrap` - `CAMBIUM-PTP500-MIB::dfsImpulsiveInterferenceTrap` - `CAMBIUM-PTP500-MIB::dataPortStatusTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Carel SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Carel SNMP Traps.mdx index 476e1b671b..83ab8d91ca 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Carel SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Carel SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **86 trap definitions** from Carel across **1 MIB** into structu - `KELVIN-pCOWeb-Chiller-MIB::low-pressure-switch-1-alarm` - `KELVIN-pCOWeb-Chiller-MIB::low-pressure-switch-2-alarm` - `KELVIN-pCOWeb-Chiller-MIB::water-level-alarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cascade Communications Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cascade Communications Corp SNMP Traps.mdx index ab56421575..fbc3455f7a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cascade Communications Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cascade Communications Corp SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **82 trap definitions** from Cascade Communications Corp across - `CASCADE-MIB::nodeBoardPulled` - `CASCADE-MIB::nodeBoardMismatch` - `CASCADE-MIB::nodePsAStatusChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Castle Rock Computing SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Castle Rock Computing SNMP Traps.mdx index fe1482c69b..615a6e3618 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Castle Rock Computing SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Castle Rock Computing SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **26 trap definitions** from Castle Rock Computing across **1 MI - `CASTLEROCK-MIB::pollNoResponse` - `CASTLEROCK-MIB::pollStatusTestPass` - `CASTLEROCK-MIB::pollStatusTestFail` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ce T SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ce T SNMP Traps.mdx index e8c7e217ad..1f15a76252 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ce T SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ce T SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Ce T across **1 MIB** into structure - `CET-TSI-MIB::tsiTrapMajorAlarmRemoved` - `CET-TSI-MIB::tsiTrapMinorAlarmAdded` - `CET-TSI-MIB::tsiTrapMinorAlarmRemoved` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centec Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centec Networks Inc SNMP Traps.mdx index fb4d2f3465..40edd0710a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centec Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centec Networks Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **67 trap definitions** from Centec Networks Inc across **1 MIB* - `SWITCH::rebootSendTrap` - `SWITCH::memUsageHigher` - `SWITCH::memUsageFormHigherToNormal` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centillion Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centillion Networks Inc SNMP Traps.mdx index 863d2992f5..e34e113a3e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centillion Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centillion Networks Inc SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **2 trap definitions** from Centillion Networks Inc across **2 M - `REDUND-TRAP-MIB::sysMcpRedundDown` - `PVC-TRAP-MIB::remotePvcDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centrum Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centrum Communications Inc SNMP Traps.mdx index 7dfa6ef680..75369d9ca0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centrum Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Centrum Communications Inc SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Centrum Communications Inc across ** - `Centrum-MIB::userLogInTrap` - `Centrum-MIB::userLogOutTrap` - `Centrum-MIB::userSessionTimeOutTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cerent Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cerent Corporation SNMP Traps.mdx index f7969b8fd3..2f031e035c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cerent Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cerent Corporation SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **1812 trap definitions** from Cerent Corporation across **2 MIB - `CERENT-GENERIC-MIB::gfailureDetectedExternalToTheNE` - `CERENT-GENERIC-MIB::gexternalError` - `CERENT-GENERIC-MIB::gexcessiveSwitching` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chateau Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chateau Systems Inc SNMP Traps.mdx index f4aa957889..0cfa45cb06 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chateau Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chateau Systems Inc SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Chateau Systems Inc across **1 MIB** - `CHATEAU-CD-PRODUCT-MIB::cdChassisTempAlarmEv` - `CHATEAU-CD-PRODUCT-MIB::cdChassisTempOkayEv` - `CHATEAU-CD-PRODUCT-MIB::cdPowerSupplyEv` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Check Point Software Technologies Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Check Point Software Technologies Ltd SNMP Traps.mdx index 1f39d3766f..1c558dcb72 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Check Point Software Technologies Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Check Point Software Technologies Ltd SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **34 trap definitions** from Check Point Software Technologies L - `CHECKPOINT-TRAP-MIB::chkpntTrapNetIfUnplugged` - `CHECKPOINT-TRAP-MIB::chkpntTrapNewConnRate` - `CHECKPOINT-TRAP-MIB::chkpntTrapConcurrentConnRate` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cherokee International Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cherokee International Corporation SNMP Traps.mdx index 6f9be076b8..b5a28864fc 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cherokee International Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cherokee International Corporation SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Cherokee International Corporation a - `SITE-MONITORING-MIB::siteV1NotificationOfEvent` - `SITE-MONITORING-MIB::es1NotificationOfEvent` - `SITE-MONITORING-MIB::es1dc1NotificationOfEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cheyenne Software SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cheyenne Software SNMP Traps.mdx index a692a99f4a..ced52bf71e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cheyenne Software SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cheyenne Software SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **21 trap definitions** from Cheyenne Software across **3 MIBs** - `ARCserve-Alarm-MIB::arcServetrapLow` - `ARCserve-Alarm-MIB::arcServetrap4` - `ARCserve-Alarm-MIB::arcServetrap5` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chippcom SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chippcom SNMP Traps.mdx index f322b24f84..5ab199843c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chippcom SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chippcom SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **20 trap definitions** from Chippcom across **3 MIBs** into str - `CHIPCOM-MIB::chipSlotUp` - `CHIPCOM-MIB::chipEnvironment` - `CHIPCOM-MIB::chipHardware` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chloride SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chloride SNMP Traps.mdx index 313f2b8048..3361dd0c09 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chloride SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chloride SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Chloride across **1 MIB** into struc - `CHLORIDE-ENVIRONMENT-SENSOR-MIB::trapEntryAdded` - `CHLORIDE-ENVIRONMENT-SENSOR-MIB::trapEntryRemoved` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chromatis Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chromatis Networks Inc SNMP Traps.mdx index 8b64d82749..ebe3f45e8e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chromatis Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Chromatis Networks Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Chromatis Networks Inc across **1 MIB ### Sample decoded traps - `ChrTrap-MIB::chrComTrapLoggedTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ciena Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ciena Corporation SNMP Traps.mdx index 5f9458e00b..6664082612 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ciena Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ciena Corporation SNMP Traps.mdx @@ -184,4 +184,3 @@ Netdata decodes **229 trap definitions** from Ciena Corporation across **34 MIBs - `CIENA-CES-LOOP-DETECTION-MIB::cienaCesLoopDetectionLoopClear` - `CIENA-CES-LOOP-DETECTION-MIB::cienaCesLoopDetectionPortOperActionSet` - `CIENA-CES-LOOP-DETECTION-MIB::cienaCesLoopDetectionPortOperActionClear` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cirpack SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cirpack SNMP Traps.mdx index 76e041880a..ed94e0e6bd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cirpack SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cirpack SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **9 trap definitions** from Cirpack across **1 MIB** into struct - `KMIB::cirpackabort` - `KMIB::cirpackmisbehave` - `KMIB::cirpackdown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ciscosystems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ciscosystems SNMP Traps.mdx index b11ff33e44..9f9c4ba092 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ciscosystems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ciscosystems SNMP Traps.mdx @@ -566,4 +566,3 @@ Netdata decodes **1860 trap definitions** from Ciscosystems across **416 MIBs** - `CISCO-FASTHUB-MIB::logonIntruder` - `CISCO-FASTHUB-MIB::hubStackDiagnostic` - `CISCO-FASTHUB-MIB::rpsFailed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Citrix Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Citrix Systems Inc SNMP Traps.mdx index 215df8cda2..05e44ca1a6 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Citrix Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Citrix Systems Inc SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **22 trap definitions** from Citrix Systems Inc across **3 MIBs* - `MFAGENT-MIB::trapSessionDisc` - `MFAGENT-MIB::trapSessionLimitThreshold` - `MFAGENT-MIB::trapLicLowThreshold` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/City Com B.V. SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/City Com B.V. SNMP Traps.mdx index 195a02110e..aff08233f2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/City Com B.V. SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/City Com B.V. SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **2 trap definitions** from City Com B.V. across **2 MIBs** into - `ADTX-RAID-AVCL-MIB::daemonEvent` - `ADTX-RAID-AVCL-S2-MIB::daemonEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clarent Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clarent Corporation SNMP Traps.mdx index 9f96a0a415..f8bcc29301 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clarent Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clarent Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **54 trap definitions** from Clarent Corporation across **1 MIB* - `CLARENT-MIB::restartGWFailed` - `CLARENT-MIB::ccIsDown` - `CLARENT-MIB::restartCCSuccess` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clavister AB SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clavister AB SNMP Traps.mdx index 4f24c62558..66bb534dde 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clavister AB SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clavister AB SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **8 trap definitions** from Clavister AB across **2 MIBs** into - `CLAVISTER-STREAM-TRAPS-MIB::ssmHAActivePeerDead` - `CLAVISTER-STREAM-TRAPS-MIB::ssmHAActiveOutrankingPeer` - `CLAVISTER-STREAM-TRAPS-MIB::ssmHAActiveUserRequest` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clickarrray Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clickarrray Networks Inc SNMP Traps.mdx index 5c1e88366e..8380d4b200 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clickarrray Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Clickarrray Networks Inc SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Clickarrray Networks Inc across **1 - `CA-SNMP-MIB8::caStart` - `CA-SNMP-MIB8::caShutdown` - `CA-SNMP-MIB8::licenseRemainingDays` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cloudgenix SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cloudgenix SNMP Traps.mdx index c834ef6474..0b16722a86 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cloudgenix SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cloudgenix SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **19 trap definitions** from Cloudgenix across **1 MIB** into st - `CGX-EVENTS-MIB::cgxVpnPeerUnreachableClear` - `CGX-EVENTS-MIB::cgxVpnPeerUnreachable` - `CGX-EVENTS-MIB::cgxVpnBfdUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codan Limited SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codan Limited SNMP Traps.mdx index 194171ca92..aae3049358 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codan Limited SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codan Limited SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **55 trap definitions** from Codan Limited across **1 MIB** into - `CODAN-MIB::wvIduInternalFaultStart` - `CODAN-MIB::wvIduInternalFaultStop` - `CODAN-MIB::wvOduInternalFaultStart` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codex SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codex SNMP Traps.mdx index 46ae02156c..e8fc4f934e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codex SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codex SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **1990 trap definitions** from Codex across **1 MIB** into struc - `ISG-NSD-COMMON-TRAPS::code-fan-failed` - `ISG-NSD-COMMON-TRAPS::code-flash-checksum-error` - `ISG-NSD-COMMON-TRAPS::code-flash-checksum-ok` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codima Technologies Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codima Technologies Ltd SNMP Traps.mdx index eba667d295..ca334bb9bf 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codima Technologies Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Codima Technologies Ltd SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Codima Technologies Ltd across **1 MI ### Sample decoded traps - `CODIMA-EXPRESS-MIB::expressAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cohesity Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cohesity Inc SNMP Traps.mdx index 8289094a75..8fc37bb5f0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cohesity Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cohesity Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **418 trap definitions** from Cohesity Inc across **1 MIB** into - `COHESITY-APPLIANCE-MIB::markDiskForRemovalNotif` - `COHESITY-APPLIANCE-MIB::upgradeFailedNotif` - `COHESITY-APPLIANCE-MIB::newDiskFoundNotif` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Colubris Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Colubris Networks Inc SNMP Traps.mdx index 22e755b8b8..9c06189adf 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Colubris Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Colubris Networks Inc SNMP Traps.mdx @@ -160,4 +160,3 @@ Netdata decodes **56 trap definitions** from Colubris Networks Inc across **15 M - `COLUBRIS-PUBLIC-ACCESS-MIB::publicAccessUsersSessionStartTrap` - `COLUBRIS-PUBLIC-ACCESS-MIB::publicAccessUsersSessionStopTrap` - `COLUBRIS-PUBLIC-ACCESS-MIB::publicAccessUsersSessionFailTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Com21 SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Com21 SNMP Traps.mdx index cddd81a4fb..0f1b12991f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Com21 SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Com21 SNMP Traps.mdx @@ -154,4 +154,3 @@ Netdata decodes **129 trap definitions** from Com21 across **9 MIBs** into struc - `COM21-HCXCC-MIB::hcxCcDiagTestComplete` - `COM21-HCXCC-MIB::hcxCcTestStatusLedChange` - `COM21-HCXCC-MIB::hcxCcFaultStatusLedChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comap A S SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comap A S SNMP Traps.mdx index caa6722fec..a784f4654f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comap A S SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comap A S SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Comap A S across **1 MIB** into struc ### Sample decoded traps - `COMAP-IL-NT-1601217B::alarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comet System S R O SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comet System S R O SNMP Traps.mdx index 7512de4f65..0a1fca48d5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comet System S R O SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comet System S R O SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **39 trap definitions** from Comet System S R O across **3 MIBs* - `T3610-MIB::trapEmailErrLogin` - `T3610-MIB::trapEmailErrAuth` - `T3610-MIB::trapEmailErrSome` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Commend International GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Commend International GmbH SNMP Traps.mdx index b90f9018c7..985f6fb7c9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Commend International GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Commend International GmbH SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **15 trap definitions** from Commend International GmbH across * - `COMMEND-SIP-MIB::commendStationAudioMonitoringAlarmNotification` - `COMMEND-SIP-MIB::commendStationInputNotifications` - `COMMEND-SIP-MIB::commendStationInputButtonStuckNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Communication Company Nari Group Corporation Information Technology SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Communication Company Nari Group Corporation Information Technology SNMP Traps.mdx index f9dd26f294..643d4e72a7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Communication Company Nari Group Corporation Information Technology SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Communication Company Nari Group Corporation Information Technology SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Communication Company Nari Group Cor - `StationSW-MIB::ucMacChangeTrap` - `StationSW-MIB::userTrap` - `StationSW-MIB::userOperTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compaq SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compaq SNMP Traps.mdx index be193dd68c..2cc2b580db 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compaq SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compaq SNMP Traps.mdx @@ -201,4 +201,3 @@ Netdata decodes **2659 trap definitions** from Compaq across **51 MIBs** into st - `CPQSTDEQ-MIB::cpqSePCCardThermalFailure` - `CPQSTDEQ-MIB::cpqSePCCardThermalSafe` - `CPQSTDEQ-MIB::cpqSe2CpuThresholdPassed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compellent Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compellent Technologies SNMP Traps.mdx index 0a456fefad..c6d989f867 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compellent Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compellent Technologies SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **24 trap definitions** from Compellent Technologies across **1 - `COMPELLENT-MIB::trapStatusDown` - `COMPELLENT-MIB::trapStatusInform` - `COMPELLENT-MIB::trapStatusCritical` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compex Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compex Inc SNMP Traps.mdx index 8ffaef3f45..7dfee0f99e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compex Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Compex Inc SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Compex Inc across **1 MIB** into str - `COMPEX-IN3000::partState` - `COMPEX-IN3000::notPartState` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Computer Associates International SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Computer Associates International SNMP Traps.mdx index 013fbdab97..bb69991f3f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Computer Associates International SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Computer Associates International SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **324 trap definitions** from Computer Associates International - `CAIMIB::caiUniSecuT3` - `CAIMIB::caiUniSecuT4` - `CAIMIB::caiUniSecuT5` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Computer Network Technology SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Computer Network Technology SNMP Traps.mdx index 1168f99226..58d5f073d8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Computer Network Technology SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Computer Network Technology SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **19 trap definitions** from Computer Network Technology across - `CNTAU-MIB::cntSevereErrMsg` - `CNTAU-MIB::cntCriticalErrMsg` - `CNT241-MIB::cnt2smEmergencyMsg` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comtech Efdata Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comtech Efdata Corporation SNMP Traps.mdx index 8b652b2478..2a58447bce 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comtech Efdata Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Comtech Efdata Corporation SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **14 trap definitions** from Comtech Efdata Corporation across * - `CDM-570Traps::cdm570LRxTrafficAlarm` - `CDM-570LTraps::cdm570LODUAlarm` - `CDM-570::cdm570UnitAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Concord Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Concord Communications SNMP Traps.mdx index 74bea06009..2b629c7268 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Concord Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Concord Communications SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **11 trap definitions** from Concord Communications across **1 M - `DiagnosticsMonitor::netHealthReset` - `DiagnosticsMonitor::netHealthUrgent` - `DiagnosticsMonitor::netHealthException` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Confmon Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Confmon Corp SNMP Traps.mdx index 9b665d5507..0c439311f7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Confmon Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Confmon Corp SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Confmon Corp across **1 MIB** into st ### Sample decoded traps - `ZENOSS-MIB::zenGenTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Connection Technology Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Connection Technology Systems SNMP Traps.mdx index ba4ee6b530..6731dec62f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Connection Technology Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Connection Technology Systems SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **34 trap definitions** from Connection Technology Systems acros - `IES-3110-MIB::swhBroadcastStorm` - `IES-3110-MIB::swhBroadcastNormal` - `IES-3110-MIB::swhSFPAbnormality` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Conteg SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Conteg SNMP Traps.mdx index c5bd7af0b7..168146b9d2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Conteg SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Conteg SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **15 trap definitions** from Conteg across **1 MIB** into struct - `CONTEG-DATABUS-MIB::sdbDevSsInputCurrentAlertDetected` - `CONTEG-DATABUS-MIB::sdbDevSsOutletCurrentAlertDetected` - `CONTEG-DATABUS-MIB::sdbDevSsInputVoltageAlertDetected` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Convertronic GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Convertronic GmbH SNMP Traps.mdx index cda10dd8b8..cc03df4da2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Convertronic GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Convertronic GmbH SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **32 trap definitions** from Convertronic GmbH across **1 MIB** - `STS_SEQUENZ-MIB::syncronisation_error_present` - `STS_SEQUENZ-MIB::inverter_failure_present` - `STS_SEQUENZ-MIB::no_redundant_inverter_present` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cooler Master Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cooler Master Co Ltd SNMP Traps.mdx index 636f53ff9d..9edc89fbe9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cooler Master Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cooler Master Co Ltd SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Cooler Master Co Ltd across **1 MIB* - `RC-MPLS-TE-MIB::rcMplsLspUp` - `RC-MPLS-TE-MIB::rcMplsLspDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Copper Mountain Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Copper Mountain Communications Inc SNMP Traps.mdx index b1eeb93a69..8bd09e6114 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Copper Mountain Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Copper Mountain Communications Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **35 trap definitions** from Copper Mountain Communications Inc - `COPPER-MOUNTAIN-NETWORKS-DSL-MIB::cmLogout` - `COPPER-MOUNTAIN-NETWORKS-DSL-MIB::cmLoginsSaturated` - `COPPER-MOUNTAIN-NETWORKS-DSL-MIB::cmLoginsAvailable` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Coriolis Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Coriolis Networks SNMP Traps.mdx index b3628f6ea1..57f4d955a4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Coriolis Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Coriolis Networks SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **57 trap definitions** from Coriolis Networks across **5 MIBs** - `CARD-MIB::moduleStatusChange` - `RING-MIB::ringOperStatusChange` - `RING-MIB::neReachabilityChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cosine Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cosine Communications SNMP Traps.mdx index 9683fd2dc1..b74884eb82 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cosine Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cosine Communications SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **61 trap definitions** from Cosine Communications across **2 MI - `COSINE-ORION-MIB::csOrionBladeStateChange` - `COSINE-ORION-MIB::csOrionFanStatusChange` - `COSINE-ORION-MIB::csOrionConfigChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cray Communications A S SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cray Communications A S SNMP Traps.mdx index 341eea3bd8..b056a0c3bd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cray Communications A S SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cray Communications A S SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **14 trap definitions** from Cray Communications A S across **3 - `SCA-BOX-MIB::boxTempFailureEvent` - `SCA-BOX-MIB::boxModuleInsertedEvent` - `SCA-BOX-MIB::boxModuleRemovedEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cray SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cray SNMP Traps.mdx index fa20732dfe..bfe20bbb12 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cray SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cray SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **74 trap definitions** from Cray across **1 MIB** into structur - `CRI-SERVER-MIB::eddState` - `CRI-SERVER-MIB::sysBrdTempNorm` - `CRI-SERVER-MIB::sysBrdTempHigh` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Croix Rouge Francaise SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Croix Rouge Francaise SNMP Traps.mdx index 52a2afcf3a..b626cd1ae1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Croix Rouge Francaise SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Croix Rouge Francaise SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **74 trap definitions** from Croix Rouge Francaise across **1 MI - `ELTEX-SMI::mc240ss7LinkAlarmTrap` - `ELTEX-SMI::mc240ss7LinksetAlarmTrap` - `ELTEX-SMI::mc240FileAlarmTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Crossbeam Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Crossbeam Systems Inc SNMP Traps.mdx index 1a05337545..82cd4da39d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Crossbeam Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Crossbeam Systems Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **39 trap definitions** from Crossbeam Systems Inc across **4 MI - `CBS-HARDWARE-MIB::cbsHwPowerFeedFailed` - `CBS-HARDWARE-MIB::cbsHwPowerFeedRecovered` - `CBS-HARDWARE-MIB::cbsHwUpperFanTrayInserted` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ctc Union Technologies Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ctc Union Technologies Co Ltd SNMP Traps.mdx index 6f651820ad..6a34f2ce71 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ctc Union Technologies Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ctc Union Technologies Co Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **53 trap definitions** from Ctc Union Technologies Co Ltd acros - `CTC-FRM220-MIB::fanOFF` - `CTC-FRM220-MIB::fanON` - `CTC-FRM220-MIB::utpLinkDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cube Optics AG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cube Optics AG SNMP Traps.mdx index 4ff67a0000..c4a77e30f0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cube Optics AG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cube Optics AG SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Cube Optics AG across **1 MIB** into ### Sample decoded traps - `CUBO-MINI-MIB::cubominiNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cumulus Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cumulus Networks Inc SNMP Traps.mdx index d71f9e9dd3..3f0d7925cb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cumulus Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cumulus Networks Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **4 trap definitions** from Cumulus Networks Inc across **2 MIBs - `CUMULUS-BGPUN-MIB::bgpBackwardTransition` - `CUMULUS-BGPVRF-MIB::bgpEstablished` - `CUMULUS-BGPVRF-MIB::bgpBackwardTransition` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cxr SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cxr SNMP Traps.mdx index 37094912f9..a880ecb68e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cxr SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cxr SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **73 trap definitions** from Cxr across **2 MIBs** into structur - `CXR-CFIP-MIB::failsSelfTest` - `CXR-CFIP-MIB::eventOverflow` - `CXR-CFIP-MIB::uadbuActive` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyan SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyan SNMP Traps.mdx index 3fd1b6fcb4..a8b8c14c0b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyan SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyan SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **84 trap definitions** from Cyan across **1 MIB** into structur - `CYAN-MIB::cyanAlarmEqptRestart` - `CYAN-MIB::cyanAlarmEqptFail` - `CYAN-MIB::cyanAlarmEqptDgrade` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyber Ark SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyber Ark SNMP Traps.mdx index 394a19d1a3..d4c01039f7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyber Ark SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyber Ark SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **16 trap definitions** from Cyber Ark across **1 MIB** into str - `CYBER-ARK-MIB::osMemoryUsageNotification` - `CYBER-ARK-MIB::osDiskFreeSpaceNotification` - `CYBER-ARK-MIB::osServiceNameNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyber Power System Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyber Power System Inc SNMP Traps.mdx index b2d0845715..a25869ae7e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyber Power System Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyber Power System Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **189 trap definitions** from Cyber Power System Inc across **1 - `CPS-MIB::upsDiagnosticsFailed` - `CPS-MIB::upsDischarged` - `CPS-MIB::upsOnBattery` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyberguard Corporationdavid Rhein SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyberguard Corporationdavid Rhein SNMP Traps.mdx index cfcce81c19..924b0ec011 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyberguard Corporationdavid Rhein SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Cyberguard Corporationdavid Rhein SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **19 trap definitions** from Cyberguard Corporationdavid Rhein a - `MEDIAHAWK-MIB::mhvsVPResourcesVPChangedStatus` - `MEDIAHAWK-MIB::mhvsVPResourcesDiskChangedStatus` - `MEDIAHAWK-MIB::mhvsVPResourcesDiskAttChangedStatus` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/D Link Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/D Link Systems Inc SNMP Traps.mdx index 0e5b4aa075..c065d3495f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/D Link Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/D Link Systems Inc SNMP Traps.mdx @@ -330,4 +330,3 @@ Netdata decodes **1105 trap definitions** from D Link Systems Inc across **180 M - `DES3225G-MIB::portPartition` - `DES3225G-MIB::linkChangeEvent` - `DES3225G-MIB::broadcastRisingStorm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dantel Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dantel Inc SNMP Traps.mdx index 785a85d92a..22820de26a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dantel Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dantel Inc SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Dantel Inc across **1 MIB** into str - `WEBMON-EDGE-MATRIX-MIB::digitalEventTrap` - `WEBMON-EDGE-MATRIX-MIB::remoteDeviceEventTrap` - `WEBMON-EDGE-MATRIX-MIB::faultTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dantherm Cooling A S SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dantherm Cooling A S SNMP Traps.mdx index 4df382b565..17b27e8110 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dantherm Cooling A S SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dantherm Cooling A S SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Dantherm Cooling A S across **1 MIB** ### Sample decoded traps - `DANTHERM-COOLING-MIB::cc3000Trap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Danware Data A S SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Danware Data A S SNMP Traps.mdx index bf9d1352c6..425ef31efd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Danware Data A S SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Danware Data A S SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **166 trap definitions** from Danware Data A S across **1 MIB** - `DANWARE-MIB::netopStartHelp` - `DANWARE-MIB::netopStopHelp` - `DANWARE-MIB::netopHelpDefined` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dasan Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dasan Co Ltd SNMP Traps.mdx index 1052ef92eb..8bee2fed49 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dasan Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dasan Co Ltd SNMP Traps.mdx @@ -198,4 +198,3 @@ Netdata decodes **3538 trap definitions** from Dasan Co Ltd across **48 MIBs** i - `DASAN-NOTIFICATION-V1::powerOkTrap` - `DASAN-NOTIFICATION-V1::powerFailTrap` - `DASAN-NOTIFICATION-V1::fanOkTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Data Domain Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Data Domain Inc SNMP Traps.mdx index b9eeb31247..cf0eb9f280 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Data Domain Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Data Domain Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **247 trap definitions** from Data Domain Inc across **1 MIB** i - `DATA-DOMAIN-MIB::systemOverheatAlertAlarm` - `DATA-DOMAIN-MIB::systemOverheatShutdownAlarm` - `DATA-DOMAIN-MIB::fanModuleFailedAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datadirect Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datadirect Networks SNMP Traps.mdx index 657c83fa29..8180e61393 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datadirect Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datadirect Networks SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Datadirect Networks across **1 MIB** ### Sample decoded traps - `DDN-WOS-MIB::wosTrapMessage` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datalogic S P A SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datalogic S P A SNMP Traps.mdx index eecc94c2ff..99eed80e7d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datalogic S P A SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datalogic S P A SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **214 trap definitions** from Datalogic S P A across **1 MIB** i - `NextUPSSystems::cmpUPSFailure` - `NextUPSSystems::cmpChargerFailure` - `NextUPSSystems::cmpOverloadFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datapower Technology Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datapower Technology Inc SNMP Traps.mdx index 7529247c21..2dfa2e8160 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datapower Technology Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Datapower Technology Inc SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Datapower Technology Inc across **1 - `DATAPOWER-NOTIFICATION-MIB::dpLogNotification` - `DATAPOWER-NOTIFICATION-MIB::dpLogInternalNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dataprobe Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dataprobe Inc SNMP Traps.mdx index 256d4ff490..2c7efa4eb0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dataprobe Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dataprobe Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Dataprobe Inc across **1 MIB** into s ### Sample decoded traps - `IBOOTPDU-MIB::outletChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Debian SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Debian SNMP Traps.mdx index 626a278621..545494ceec 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Debian SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Debian SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Debian across **1 MIB** into structu - `KEEPALIVED-MIB::vrrpInstanceStateChange` - `KEEPALIVED-MIB::realServerStateChange` - `KEEPALIVED-MIB::virtualServerQuorumStateChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dec SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dec SNMP Traps.mdx index fa10486045..489657c522 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dec SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dec SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **83 trap definitions** from Dec across **7 MIBs** into structur - `DECHUB90-MIB::configurationExceeded` - `DECHUB90-MIB::populationChange` - `DECHUB90-MIB::moduleStatusChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deep Sea Electronics PLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deep Sea Electronics PLC SNMP Traps.mdx index 0d71d974ed..aad90e8f11 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deep Sea Electronics PLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deep Sea Electronics PLC SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **422 trap definitions** from Deep Sea Electronics PLC across ** - `DSE-8610-MIB::namedAlarmHighCoolantTemp` - `DSE-8610-MIB::namedAlarmLowCoolantTemp` - `DSE-8610-MIB::namedAlarmUnderSpeed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Del Mar Solutions Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Del Mar Solutions Inc SNMP Traps.mdx index f3ee64fc13..5ad18d6eb7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Del Mar Solutions Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Del Mar Solutions Inc SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Del Mar Solutions Inc across **1 MIB - `SWATCH-MIB::serverUp` - `SWATCH-MIB::dmsStart` - `SWATCH-MIB::dmsShutdown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deliberant SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deliberant SNMP Traps.mdx index e928a26df2..f5edb6f9a7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deliberant SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deliberant SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **9 trap definitions** from Deliberant across **3 MIBs** into st - `DLB-802DOT11-EXT-MIB::dlbFrequencyChange` - `DLB-802DOT11-EXT-MIB::dlbNoiseThresholdReached` - `DLB-802DOT11-EXT-MIB::dlbRemoteNodeConnected` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dell Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dell Inc SNMP Traps.mdx index 391ff0e379..d6c63a1c7b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dell Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dell Inc SNMP Traps.mdx @@ -186,4 +186,3 @@ Netdata decodes **2452 trap definitions** from Dell Inc across **36 MIBs** into - `DELLTRAPS-MIB::dellEventWarningTrap` - `DELLTRAPS-MIB::dellEventErrorTrap` - `DELLTRAPS-MIB::dellEventCriticalTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Delta Electronics Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Delta Electronics Inc SNMP Traps.mdx index d6203b89f9..63f73647ea 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Delta Electronics Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Delta Electronics Inc SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **197 trap definitions** from Delta Electronics Inc across **5 M - `UPSD-MIB::dupsPowerFail` - `UPSD-MIB::dupsPowerRestored` - `UPSD-MIB::dupsLowBattery` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Delta Electronics Switzerland AG Formerly Delta Energy Systems Sweden AB SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Delta Electronics Switzerland AG Formerly Delta Energy Systems Sweden AB SNMP Traps.mdx index b4c300b747..3148197f0b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Delta Electronics Switzerland AG Formerly Delta Energy Systems Sweden AB SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Delta Electronics Switzerland AG Formerly Delta Energy Systems Sweden AB SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Delta Electronics Switzerland AG For - `ORION-BASE-MIB::systemNonUrgentAlarm` - `ORION-BASE-MIB::systemUrgentAlarm` - `ORION-BASE-MIB::systemCriticalAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deltanet AG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deltanet AG SNMP Traps.mdx index 17a8e0234f..8d46b24a8d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deltanet AG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deltanet AG SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **44 trap definitions** from Deltanet AG across **1 MIB** into s - `Lambdatrail2s-MIB::lt2sTemperatureHigh` - `Lambdatrail2s-MIB::lt2sTemperatureNormal` - `Lambdatrail2s-MIB::lt2sPowerSupplyPluggedIn` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Designer Systems Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Designer Systems Ltd SNMP Traps.mdx index 9863f7a5d2..f749aac683 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Designer Systems Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Designer Systems Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **138 trap definitions** from Designer Systems Ltd across **1 MI - `PDUSNMP::slave-Set-meter1-IRMSLow` - `PDUSNMP::slave-Set-meter1-IRMSHigh` - `PDUSNMP::slave-Set-meter1-KWSLow` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deva Broadcast Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deva Broadcast Ltd SNMP Traps.mdx index d0051a1131..92576ff571 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deva Broadcast Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Deva Broadcast Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **33 trap definitions** from Deva Broadcast Ltd across **1 MIB** - `DB7001-MIB::notifRflvlLow` - `DB7001-MIB::notifRflvlHigh` - `DB7001-MIB::notifMpxtOk` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dialogic Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dialogic Corporation SNMP Traps.mdx index e1f3525f7d..24ce3d1f14 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dialogic Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dialogic Corporation SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Dialogic Corporation across **1 MIB* - `DLGHWINF-MIB::dlgHiServiceChanged` - `DLGHWINF-MIB::dlgHiCardStatusChanged` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Didactum Security GmbH Formerly Didactum Ltd Deutschland SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Didactum Security GmbH Formerly Didactum Ltd Deutschland SNMP Traps.mdx index 96531c5219..956aa6225f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Didactum Security GmbH Formerly Didactum Ltd Deutschland SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Didactum Security GmbH Formerly Didactum Ltd Deutschland SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Didactum Security GmbH Formerly Didac ### Sample decoded traps - `DIDACTUM-SYSTEM-MIB::ctlUnitTrapNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digipower Manufacturing Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digipower Manufacturing Inc SNMP Traps.mdx index 29dab9568b..d581579725 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digipower Manufacturing Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digipower Manufacturing Inc SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **53 trap definitions** from Digipower Manufacturing Inc across - `DGPUPS-MIB::upsDiagnosticsFailed` - `DGPUPS-MIB::upsDischarged` - `DGPUPS-MIB::upsOnBattery` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital China Shanghai Networks Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital China Shanghai Networks Ltd SNMP Traps.mdx index 93b6d30310..b06c5f1077 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital China Shanghai Networks Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital China Shanghai Networks Ltd SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Digital China Shanghai Networks Ltd a ### Sample decoded traps - `AMER-MIB::lldpRemTablesChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital Link SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital Link SNMP Traps.mdx index dc4572392b..73f810bd96 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital Link SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital Link SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **93 trap definitions** from Digital Link across **3 MIBs** into - `DL5400-MIB::dl5400SelfTestFail` - `DL5400-MIB::dl5400RamTestFail` - `DL5400-MIB::dl5400RomChecksumFail` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital Video Broadcasting Dvb SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital Video Broadcasting Dvb SNMP Traps.mdx index a9068dbb9d..554da48663 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital Video Broadcasting Dvb SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Digital Video Broadcasting Dvb SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Digital Video Broadcasting Dvb acros - `DVB-MGTR101290-MIB::measurementUnknownTrap` - `DVB-MGSIGNALCHARACTERISTICS-MIB::tsStructureChangeTrap` - `DVB-MGSIGNALCHARACTERISTICS-MIB::rfCharacteristicsChangeTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dismuntel S A L SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dismuntel S A L SNMP Traps.mdx index 160a21fb73..16c1a3fd7f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dismuntel S A L SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dismuntel S A L SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Dismuntel S A L across **1 MIB** into ### Sample decoded traps - `DISMUNTELv00-MIB::alarmMsg` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Distributed Management Task Force Dmtf SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Distributed Management Task Force Dmtf SNMP Traps.mdx index b6e0f56af0..d73f564363 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Distributed Management Task Force Dmtf SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Distributed Management Task Force Dmtf SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **111 trap definitions** from Distributed Management Task Force - `DMTF-DMI-MIB::dmiComponentAddedIndication` - `DMTF-DMI-MIB::dmiComponentDeletedIndication` - `DMTF-DMI-MIB::dmiLanguageAddedIndication` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Distributed Processing Technology SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Distributed Processing Technology SNMP Traps.mdx index 6ba9e4dfb0..035ab34051 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Distributed Processing Technology SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Distributed Processing Technology SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **24 trap definitions** from Distributed Processing Technology a - `DPT-SCSI-MIB::dptHbaTemperatureNormalTrap` - `DPT-SCSI-MIB::dptHbaEccRAMErrorNotFoundTrap` - `DPT-SCSI-MIB::dptDevStatusChangedTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dps Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dps Inc SNMP Traps.mdx index cb1d48b7de..3837c4ddb2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dps Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dps Inc SNMP Traps.mdx @@ -158,4 +158,3 @@ Netdata decodes **18495 trap definitions** from Dps Inc across **13 MIBs** into - `DPS-MIB-V38-V2EXT::tmonV2MJalarmSet` - `DPS-MIB-V38-V2EXT::tmonV2MJalarmClr` - `DPS-MIB-V38-V2EXT::tmonV2MNalarmSet` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dragonwave SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dragonwave SNMP Traps.mdx index be77a8c065..5fe9c0796c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dragonwave SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dragonwave SNMP Traps.mdx @@ -155,4 +155,3 @@ Netdata decodes **540 trap definitions** from Dragonwave across **10 MIBs** into - `AirPair-MIB::modemLossOfSignalLockFromDemodulatorV1Trap` - `AirPair-MIB::modemUncorrectedBerThresholdExceededV1Trap` - `AirPair-MIB::modemModulatorPllLockFailureV1Trap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dynatech Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dynatech Communications SNMP Traps.mdx index c67ed860c1..64a35ca5f7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dynatech Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Dynatech Communications SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Dynatech Communications across **1 MI ### Sample decoded traps - `DNMSALARM-MIB::dnmsAlarmTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/E Dynamics Org SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/E Dynamics Org SNMP Traps.mdx index 1d7a1998d3..254868e094 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/E Dynamics Org SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/E Dynamics Org SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **55 trap definitions** from E Dynamics Org across **1 MIB** int - `ASCO-QEM-72EE2::transferred_from_normal_to_emergency_SNMPSend` - `ASCO-QEM-72EE2::transferred_from_emergency_to_normal_SNMPSend` - `ASCO-QEM-72EE2::emergency_accepted_SNMPSend` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/E T A Elektrotechnische Apparate GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/E T A Elektrotechnische Apparate GmbH SNMP Traps.mdx index 564475dfca..052f24061c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/E T A Elektrotechnische Apparate GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/E T A Elektrotechnische Apparate GmbH SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **16 trap definitions** from E T A Elektrotechnische Apparate Gm - `ETA-RCI10-MIB::fuseNew` - `ETA-RCI10-MIB::fuseGone` - `ETA-RCI10-MIB::fuseWrong` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eastern Research Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eastern Research Inc SNMP Traps.mdx index ab9e8a2a8a..1c588be501 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eastern Research Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eastern Research Inc SNMP Traps.mdx @@ -157,4 +157,3 @@ Netdata decodes **544 trap definitions** from Eastern Research Inc across **12 M - `ERI-DNX-ALARM-TRAP-MIB::evntDevColdStart` - `ERI-DNX-ALARM-TRAP-MIB::evntDevWarmStart` - `ERI-DNX-SMC-MIB::connectionEventTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eaton Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eaton Corporation SNMP Traps.mdx index b2c51873bf..324822c8d5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eaton Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eaton Corporation SNMP Traps.mdx @@ -153,4 +153,3 @@ Netdata decodes **175 trap definitions** from Eaton Corporation across **8 MIBs* - `XUPS-MIB::xupstdOnBattery` - `XUPS-MIB::xupstdLowBattery` - `XUPS-MIB::xupstdUtilityPowerRestored` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ecreso SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ecreso SNMP Traps.mdx index 50db7eb778..730ee29aa8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ecreso SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ecreso SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **59 trap definitions** from Ecreso across **1 MIB** into struct - `ECRESO-FM-TRANS-MIB::eventTxAlFault` - `ECRESO-FM-TRANS-MIB::eventTxAlWarning` - `ECRESO-FM-TRANS-MIB::eventTxAlVSWR` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Edial Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Edial Inc SNMP Traps.mdx index c6e9b2e872..ee0827cff9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Edial Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Edial Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Edial Inc across **1 MIB** into struc ### Sample decoded traps - `EDIAL-MIB::notification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Egenera Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Egenera Inc SNMP Traps.mdx index ff575a37b5..2378c620dc 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Egenera Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Egenera Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **359 trap definitions** from Egenera Inc across **1 MIB** into - `EGENERA-MIB::bladeFrameDeviceIdMismatchTrap` - `EGENERA-MIB::bladeFramePowerOverCommitTrap` - `EGENERA-MIB::bladeFramePowerOverDrawTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Egnite GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Egnite GmbH SNMP Traps.mdx index bedc715463..6cfce32c4d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Egnite GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Egnite GmbH SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Egnite GmbH across **1 MIB** into st - `EGNITEPHYSENSOR-MIB::querxPhySensorNormal` - `EGNITEPHYSENSOR-MIB::querxPhySensorAlert` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eicon SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eicon SNMP Traps.mdx index eb40904ee0..64ff213c7c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eicon SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eicon SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **10 trap definitions** from Eicon across **6 MIBs** into struct - `EICON-MIB-SERVER::srvTrapInternal` - `EICON-MIB-CARD::cardTrapHeartbeatLost` - `EICON-MIB-CARD::cardTrapStateChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ekinops Sas SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ekinops Sas SNMP Traps.mdx index 096204ae6f..9eb304939b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ekinops Sas SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ekinops Sas SNMP Traps.mdx @@ -212,4 +212,3 @@ Netdata decodes **726 trap definitions** from Ekinops Sas across **62 MIBs** int - `EKINOPS-Pm1008-MIB::pm1008LineTrapUrgentGoesOn` - `EKINOPS-Pm1008-MIB::pm1008LineTrapUrgentGoesOff` - `EKINOPS-Pm1008-MIB::pm1008LineTrapCritGoesOn` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Electroline Equipment Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Electroline Equipment Inc SNMP Traps.mdx index cbc07e7b22..3a9befd2bd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Electroline Equipment Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Electroline Equipment Inc SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Electroline Equipment Inc across **1 - `ELECTROLINE-DHT-STATUS-MIB::dhtSleepModeEvent` - `ELECTROLINE-DHT-STATUS-MIB::dhtAlarmAssuranceEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Elfiq Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Elfiq Inc SNMP Traps.mdx index d7f6f615ef..00248387fb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Elfiq Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Elfiq Inc SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **10 trap definitions** from Elfiq Inc across **3 MIBs** into st - `ELFIQ-MODULE-COMMON-MIB::systCPUUsage` - `ELFIQ-MODULE-COMMON-MIB::systCPUFan` - `ELFIQ-MODULE-FOVE-MIB::foveStatusChanged` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Elitecore Technologies Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Elitecore Technologies Ltd SNMP Traps.mdx index 9d3d1907b4..13fa54483b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Elitecore Technologies Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Elitecore Technologies Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **19 trap definitions** from Elitecore Technologies Ltd across * - `CYBEROAM-MIB::highSigDiskUsage` - `CYBEROAM-MIB::highReportDiskUsage` - `CYBEROAM-MIB::highPhyMemUsage` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltek Energy AS SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltek Energy AS SNMP Traps.mdx index 08408d025f..a1b1ad051a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltek Energy AS SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltek Energy AS SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **151 trap definitions** from Eltek Energy AS across **5 MIBs** - `ELTEK-GENERIC-MIB::alarmMajorLowBattVoltTrap` - `ELTEK-GENERIC-MIB::alarmMinorLowBattVoltTrap` - `ELTEK-GENERIC-MIB::alarmMajorBatteryHighTempTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltek Valere Inc Formerly Valere Power Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltek Valere Inc Formerly Valere Power Inc SNMP Traps.mdx index 3322ebe1f3..fb993fc9ed 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltek Valere Inc Formerly Valere Power Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltek Valere Inc Formerly Valere Power Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **69 trap definitions** from Eltek Valere Inc Formerly Valere Po - `ELTEK-BC2000-DC-POWER-MIB::vpwrTrapACFAlarm` - `ELTEK-BC2000-DC-POWER-MIB::vpwrTrapHVAlarm` - `ELTEK-BC2000-DC-POWER-MIB::vpwrTrapHVSDAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltex Enterprise Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltex Enterprise Ltd SNMP Traps.mdx index e816936f2e..f2a63cf171 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltex Enterprise Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eltex Enterprise Ltd SNMP Traps.mdx @@ -174,4 +174,3 @@ Netdata decodes **505 trap definitions** from Eltex Enterprise Ltd across **29 M - `ELTEX-LTP8X::ltp8xLoadAverageAlarmTrap` - `ELTEX-LTP8X::ltp8xRAMAlarmTrap` - `ELTEX-LTP8X::ltp8xLoginAlarmTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Clariion Advanced Storage Solutions SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Clariion Advanced Storage Solutions SNMP Traps.mdx index dfe15b40da..aca036e165 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Clariion Advanced Storage Solutions SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Clariion Advanced Storage Solutions SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Emc Clariion Advanced Storage Soluti - `CLARIION-MIB::eventMonitorTrapWarn` - `CLARIION-MIB::eventMonitorTrapError` - `CLARIION-MIB::eventMonitorTrapFault` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Corp SNMP Traps.mdx index ace58e169d..35284051cb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Corp SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **33 trap definitions** from Emc Corp across **6 MIBs** into str - `EMC-MIB::emcRatiosOutofRangeTrap` - `EMC-MIB::discoveryTableChange` - `EMC-MIB::emcSymmetrixEventTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Data General Division SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Data General Division SNMP Traps.mdx index 73d03bc317..9e94803391 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Data General Division SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Emc Data General Division SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Emc Data General Division across **1 ### Sample decoded traps - `DGCNAS-MIB::dgTrapNasEventLogNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Empire Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Empire Technologies Inc SNMP Traps.mdx index 05fda91af4..faab44c7e3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Empire Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Empire Technologies Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **15 trap definitions** from Empire Technologies Inc across **1 - `EMPIRE::monitorEntryNotReadyTrap` - `EMPIRE::logMonMatchTrap` - `EMPIRE::logMonNotReadyTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Endace Technology SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Endace Technology SNMP Traps.mdx index a1656bb295..b64de67c1e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Endace Technology SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Endace Technology SNMP Traps.mdx @@ -153,4 +153,3 @@ Netdata decodes **95 trap definitions** from Endace Technology across **8 MIBs** - `ENDACE-SYSTEM-MIB::procNormal` - `ENDACE-SYSTEM-MIB::cpuUtilHigh` - `ENDACE-SYSTEM-MIB::cpuUtilNormal` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Endrun Technologies LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Endrun Technologies LLC SNMP Traps.mdx index 9825fcb507..254f04013e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Endrun Technologies LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Endrun Technologies LLC SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **29 trap definitions** from Endrun Technologies LLC across **4 - `ENDRUNTECHNOLOGIES-MIB::cdmaTrapFaultStatusChange` - `ENDRUNTECHNOLOGIES-MIB::gntpTrapLeapIndBitsChange` - `ENDRUNTECHNOLOGIES-MIB::gntpTrapStratumChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Engenio Information Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Engenio Information Technologies Inc SNMP Traps.mdx index 3b5f39c170..24b7dfd93f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Engenio Information Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Engenio Information Technologies Inc SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **41 trap definitions** from Engenio Information Technologies In - `SYMTRAP-MIB::symSCSI2` - `SYMTRAP-MIB::symSCSI3` - `SYMTRAP-MIB::symSCSI4` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enlogic Systems LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enlogic Systems LLC SNMP Traps.mdx index 8a61b24442..820fbd836f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enlogic Systems LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enlogic Systems LLC SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **148 trap definitions** from Enlogic Systems LLC across **2 MIB - `ENLOGIC-PDU2-MIB::userLogin` - `ENLOGIC-PDU2-MIB::userLogoff` - `ENLOGIC-PDU2-MIB::userAuthenticationFailed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterasys Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterasys Networks Inc SNMP Traps.mdx index a38a93646b..2d77bce106 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterasys Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterasys Networks Inc SNMP Traps.mdx @@ -154,4 +154,3 @@ Netdata decodes **569 trap definitions** from Enterasys Networks Inc across **9 - `CABLETRON-TRAPS::portSegmenting` - `CABLETRON-TRAPS::portUnsegementing` - `CABLETRON-TRAPS::portLinkUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterasys Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterasys Networks SNMP Traps.mdx index 332fffa408..7d9d08600c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterasys Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterasys Networks SNMP Traps.mdx @@ -166,4 +166,3 @@ Netdata decodes **166 trap definitions** from Enterasys Networks across **21 MIB - `ENTERASYS-SYSLOG-CLIENT-MIB::etsysSyslogSecureLogDroppedMsgNotification` - `ENTERASYS-MAC-LOCKING-MIB::etsysMACLockingMACViolation` - `ENTERASYS-MAC-LOCKING-MIB::etsysMACLockingMACThreshold` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterprise 1004849 SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterprise 1004849 SNMP Traps.mdx index 1bd89597ce..cda5bc8e40 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterprise 1004849 SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Enterprise 1004849 SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **11 trap definitions** from Enterprise 1004849 across **1 MIB** - `DAHUA-SNMP-MIB::videoBlindEvent` - `DAHUA-SNMP-MIB::videoLossEvent` - `DAHUA-SNMP-MIB::localAlarmEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Epicenter Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Epicenter Inc SNMP Traps.mdx index 4d3746cdd8..4ab980e879 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Epicenter Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Epicenter Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **71 trap definitions** from Epicenter Inc across **2 MIBs** int - `CPI-UNITY-MIB::maxCurrentzx1` - `CPI-UNITY-MIB::maxCurrentxy2` - `CPI-UNITY-MIB::maxCurrentyz2` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equallogic SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equallogic SNMP Traps.mdx index fdec4e2be4..4141d93311 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equallogic SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equallogic SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **26 trap definitions** from Equallogic across **2 MIBs** into s - `EQLMEMBER-MIB::eqlMemberHealthFanSpeedHighThreshold` - `EQLMEMBER-MIB::eqlMemberHealthFanSpeedLowThreshold` - `EQLMEMBER-MIB::eqlMemberHealthPowerSupplyFanFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equinox Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equinox Systems Inc SNMP Traps.mdx index 7d6491238b..e22a6113c0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equinox Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equinox Systems Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **40 trap definitions** from Equinox Systems Inc across **1 MIB* - `FSCSERIAL-TRAP-MIB::fscSerialUserLogoutTrap` - `FSCSERIAL-TRAP-MIB::fscSerialSerialSessionStartedTrap` - `FSCSERIAL-TRAP-MIB::fscSerialSerialSessionStoppedTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equipe Communications Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equipe Communications Corporation SNMP Traps.mdx index 1ff3303cc4..f483336515 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equipe Communications Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Equipe Communications Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **40 trap definitions** from Equipe Communications Corporation a - `EQUIPE-TRAP-MIB::eqFanUnitFailed` - `EQUIPE-TRAP-MIB::eqFanUnitFaulty` - `EQUIPE-TRAP-MIB::eqAcctDataWriteToDiskFailed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Era A S SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Era A S SNMP Traps.mdx index 7608b347fd..78b64dac43 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Era A S SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Era A S SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **12 trap definitions** from Era A S across **1 MIB** into struc - `ERA-MIB::mssTrapStatusSystemWarning` - `ERA-MIB::mssTrapStatusSystemOK` - `ERA-MIB::mssTrapStatusSystemUnknown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson AB Packet Core Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson AB Packet Core Networks SNMP Traps.mdx index 9d51635d6e..dcb5bf4637 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson AB Packet Core Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson AB Packet Core Networks SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Ericsson AB Packet Core Networks acr - `GGSN-MIB::ggsnTrapNew` - `GGSN-MIB::ggsnTrapChanged` - `GGSN-MIB::ggsnTrapCleared` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson AB SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson AB SNMP Traps.mdx index 6e771b55e9..661ee43feb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson AB SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson AB SNMP Traps.mdx @@ -193,4 +193,3 @@ Netdata decodes **393 trap definitions** from Ericsson AB across **43 MIBs** int - `ANS-TRAPS-MIB::lof` - `ANS-TRAPS-MIB::lop` - `ANS-TRAPS-MIB::ais` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson Inc Formerly Redback Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson Inc Formerly Redback Networks SNMP Traps.mdx index 2884cafbc0..824a94d110 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson Inc Formerly Redback Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ericsson Inc Formerly Redback Networks SNMP Traps.mdx @@ -172,4 +172,3 @@ Netdata decodes **95 trap definitions** from Ericsson Inc Formerly Redback Netwo - `RBN-ENVMON-MIB::rbnFanFailChange` - `RBN-ENVMON-MIB::rbnPowerFailChange` - `RBN-ENVMON-MIB::rbnFanStatusChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Essential Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Essential Communications SNMP Traps.mdx index d87babe2a0..29b64e37f4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Essential Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Essential Communications SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Essential Communications across **1 M ### Sample decoded traps - `ESSENTIAL-ODS-ESS2000-HIPPI-SWITCH-MIB::switchSensorWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Etherwan Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Etherwan Systems Inc SNMP Traps.mdx index b0158af135..8c25434cad 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Etherwan Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Etherwan Systems Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **24 trap definitions** from Etherwan Systems Inc across **1 MIB - `EtherWAN-ewnSwitchM::ewnTrapsRringTopologyChange` - `EtherWAN-ewnSwitchM::ewnTrapsDigitalIOInput1` - `EtherWAN-ewnSwitchM::ewnTrapsDigitalIOInput2` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eurologic Systems Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eurologic Systems Ltd SNMP Traps.mdx index 581a299aa6..b13c14e44e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eurologic Systems Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Eurologic Systems Ltd SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Eurologic Systems Ltd across **1 MIB* ### Sample decoded traps - `EUROLOGIC-SSM-TRAP-MIB::elSSMEventTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exablaze SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exablaze SNMP Traps.mdx index b1bd6ef573..ea9e691d70 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exablaze SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exablaze SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **9 trap definitions** from Exablaze across **1 MIB** into struc - `EXALINK-FUSION-MIB::fusionTempAlert` - `EXALINK-FUSION-MIB::fusionPsuAlert` - `EXALINK-FUSION-MIB::fusionSystemAlert` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exabyte Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exabyte Corporation SNMP Traps.mdx index 3b76f905ad..7b797d546d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exabyte Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exabyte Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Exabyte Corporation across **1 MIB** - `EXABYTE-MIB::cfgEEPPortOpenTrap` - `EXABYTE-MIB::cfgErrorStateTrap` - `EXABYTE-MIB::cfgMagRemovedTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exalt Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exalt Communications SNMP Traps.mdx index 906791062a..c08c7d3920 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exalt Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exalt Communications SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **11 trap definitions** from Exalt Communications across **1 MIB - `ExaltComm-TRAPS-MIB::loc-radio-stat-notif` - `ExaltComm-TRAPS-MIB::rem-radio-stat-notif` - `ExaltComm-TRAPS-MIB::loc-rsl-stat-horiz-notif` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exanet SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exanet SNMP Traps.mdx index 9098c36378..633ea2599e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exanet SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exanet SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **14 trap definitions** from Exanet across **1 MIB** into struct - `CentricStorFS-MIB::centricStorFSCluFailed` - `CentricStorFS-MIB::centricStorFSCluNodeOK` - `CentricStorFS-MIB::centricStorFSCluNodeDegraded` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exceliance SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exceliance SNMP Traps.mdx index ccb9b0942d..35d7a42a56 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exceliance SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exceliance SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Exceliance across **1 MIB** into str - `EXCELIANCE-MIB::eNotificationMsg` - `EXCELIANCE-MIB::alTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exinda Networks Pty Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exinda Networks Pty Ltd SNMP Traps.mdx index edc9f2acd9..5a060fa80b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exinda Networks Pty Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Exinda Networks Pty Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **23 trap definitions** from Exinda Networks Pty Ltd across **1 - `EXINDA-MIB::memoryPaging` - `EXINDA-MIB::nicCollisions` - `EXINDA-MIB::nicNegotiation` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Expand Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Expand Networks Inc SNMP Traps.mdx index 28a1515963..6e31e26c81 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Expand Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Expand Networks Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **11 trap definitions** from Expand Networks Inc across **1 MIB* - `EXPAND-TRAP-MIB::connectionInboundUp` - `EXPAND-TRAP-MIB::connectionInboundDown` - `EXPAND-TRAP-MIB::connectionOutboundUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extended Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extended Systems Inc SNMP Traps.mdx index 18cde86832..361093a9be 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extended Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extended Systems Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Extended Systems Inc across **1 MIB* - `ESI-MIB::trapNoPrinterAttached` - `ESI-MIB::trapPrinterTonerLow` - `ESI-MIB::trapPrinterPaperOut` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extrahop Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extrahop Networks Inc SNMP Traps.mdx index b3723c0e54..1df8f7a3c7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extrahop Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extrahop Networks Inc SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Extrahop Networks Inc across **1 MIB - `EXTRAHOP-MIB::extrahopAlertTrap` - `EXTRAHOP-MIB::extrahopStorageAlertTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extreme Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extreme Networks SNMP Traps.mdx index 0b3dce92ac..71afad3891 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extreme Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extreme Networks SNMP Traps.mdx @@ -171,4 +171,3 @@ Netdata decodes **127 trap definitions** from Extreme Networks across **26 MIBs* - `A3COM51-SS9000SX::fanOK` - `A3COM51-SS9000SX::invalidLoginAttempt` - `EXTREME-TRAP-MIB::extremeOverheat` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extricomltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extricomltd SNMP Traps.mdx index 172b6ae5e3..0c830d4811 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extricomltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Extricomltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **80 trap definitions** from Extricomltd across **1 MIB** into s - `EXTRICOM-SNMP-MIB::unknownAP` - `EXTRICOM-SNMP-MIB::keyError` - `EXTRICOM-SNMP-MIB::downlinkRetry` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/F5 Labs Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/F5 Labs Inc SNMP Traps.mdx index f6022dc4a9..56f5a9745f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/F5 Labs Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/F5 Labs Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **269 trap definitions** from F5 Labs Inc across **4 MIBs** into - `LOAD-BAL-SYSTEM-MIB::loadBalTrapServiceUP` - `LOAD-BAL-SYSTEM-MIB::loadBalTrapReset` - `LOAD-BAL-SYSTEM-MIB::loadBalTrapDenial` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/F5 Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/F5 Networks Inc SNMP Traps.mdx index 3d551030d5..d57cadadfe 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/F5 Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/F5 Networks Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **45 trap definitions** from F5 Networks Inc across **1 MIB** in - `F5OS-APPLIANCE-ALERT-NOTIF-MIB::unknown-alarm` - `F5OS-APPLIANCE-ALERT-NOTIF-MIB::memory-fault` - `F5OS-APPLIANCE-ALERT-NOTIF-MIB::drive-fault` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fial Computer Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fial Computer Inc SNMP Traps.mdx index 38cab464dd..9cf6466279 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fial Computer Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fial Computer Inc SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Fial Computer Inc across **1 MIB** i - `FIAL-ENC-MIB::encShutdown` - `FIAL-ENC-MIB::encStartup` - `FIAL-ENC-MIB::encEventLog` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fiberhome Telecommunication Technologies Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fiberhome Telecommunication Technologies Co Ltd SNMP Traps.mdx index 136927090d..7f6a063b10 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fiberhome Telecommunication Technologies Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fiberhome Telecommunication Technologies Co Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **137 trap definitions** from Fiberhome Telecommunication Techno - `FIBERHOME-DATACOMM-MIB::fhBoardFault` - `FIBERHOME-DATACOMM-MIB::fhBoardNormal` - `FIBERHOME-DATACOMM-MIB::fhIntfPktLossExceed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibernet International SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibernet International SNMP Traps.mdx index fe7e172a5e..bbc8afe348 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibernet International SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibernet International SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **7 trap definitions** from Fibernet International across **1 MI - `XMUX4-PLUS::alarmaStatusChange` - `XMUX4-PLUS::channelActivoChange` - `XMUX4-PLUS::powerLeftChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibrolan SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibrolan SNMP Traps.mdx index 24b9bb807b..3c99ad22f5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibrolan SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibrolan SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **129 trap definitions** from Fibrolan across **6 MIBs** into st - `FIBROLAN-MIB-MS-TRAPS::psuInstalled` - `FIBROLAN-MIB-MS-TRAPS::psuRemoved` - `FIBROLAN-MIB-MS-TRAPS::psuUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibronics SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibronics SNMP Traps.mdx index 2c3c1293c9..7148c40051 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibronics SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fibronics SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **57 trap definitions** from Fibronics across **6 MIBs** into st - `EDB-snmp::fmPrimaryPowerSupplyOK` - `EDB-snmp::fmSecondPowerSupplyOK` - `EDB-snmp::fmPowerSupplyChangeConfig` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fireeye Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fireeye Inc SNMP Traps.mdx index 83582d8a1f..0e0e5fe06e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fireeye Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fireeye Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **32 trap definitions** from Fireeye Inc across **1 MIB** into s - `FE-FIREEYE-MIB::networkAnomaly` - `FE-FIREEYE-MIB::signatureMatch` - `FE-FIREEYE-MIB::ccConnect` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Flarion Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Flarion Technologies SNMP Traps.mdx index 8743bb9524..8d27d3a77e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Flarion Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Flarion Technologies SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **172 trap definitions** from Flarion Technologies across **3 MI - `FLARION-TRAP-MIB::bootStatusDown` - `FLARION-RR-TRAP-MIB::rectifierFanStatus` - `FLARION-RR-TRAP-MIB::acRectifierStatus` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Force10 Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Force10 Networks Inc SNMP Traps.mdx index 7f828759e6..91488c35f9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Force10 Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Force10 Networks Inc SNMP Traps.mdx @@ -164,4 +164,3 @@ Netdata decodes **160 trap definitions** from Force10 Networks Inc across **19 M - `F10-CHASSIS-MIB::chAlarmCardReset` - `F10-CHASSIS-MIB::chAlarmCardOffline` - `F10-CHASSIS-MIB::chAlarmCardMismatch` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Forcepoint LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Forcepoint LLC SNMP Traps.mdx index 687420f3a3..a33fb30e6d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Forcepoint LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Forcepoint LLC SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **10 trap definitions** from Forcepoint LLC across **1 MIB** int - `FORCEPOINT-NGFW-ENGINE-MIB::nodeOffline` - `FORCEPOINT-NGFW-ENGINE-MIB::nodeBoot` - `FORCEPOINT-NGFW-ENGINE-MIB::nodeShutdown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fore Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fore Systems Inc SNMP Traps.mdx index bf228cab06..a58eebf63a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fore Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fore Systems Inc SNMP Traps.mdx @@ -164,4 +164,3 @@ Netdata decodes **288 trap definitions** from Fore Systems Inc across **19 MIBs* - `Fore-Switch-MIB::asxHostLinkDown` - `Fore-Switch-MIB::asxHostLinkUp` - `Fore-Switch-MIB::asxNetModuleDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fort Telecom SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fort Telecom SNMP Traps.mdx index 550d6941a6..611968dc44 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fort Telecom SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fort Telecom SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **88 trap definitions** from Fort Telecom across **1 MIB** into - `FORT-TELECOM-MIB::specialFunctionNoPingResponse` - `FORT-TELECOM-MIB::specialFunctionLowSpeed` - `FORT-TELECOM-MIB::updateFirmware` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Forte Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Forte Networks Inc SNMP Traps.mdx index 70195c30a1..2808b4753b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Forte Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Forte Networks Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **41 trap definitions** from Forte Networks Inc across **2 MIBs* - `FNET-OPTIVIEW-GENERIC-MIB::ovProbBadDefRouter` - `FNET-OPTIVIEW-GENERIC-MIB::probLoneIp` - `FNET-OPTIVIEW-GENERIC-MIB::probLoneNbDomain` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fortinet Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fortinet Inc SNMP Traps.mdx index 56b6ee809b..bea2f0f4bc 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fortinet Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fortinet Inc SNMP Traps.mdx @@ -163,4 +163,3 @@ Netdata decodes **338 trap definitions** from Fortinet Inc across **18 MIBs** in - `FORTINET-TRAP-MIB::fnTrapAgentDown` - `FORTINET-TRAP-MIB::fnTrapAgentUp` - `FORTINET-TRAP-MIB::fnTrapInfChg` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fraunhofer Fokus SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fraunhofer Fokus SNMP Traps.mdx index 49e93b4648..7edd5021cb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fraunhofer Fokus SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fraunhofer Fokus SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Fraunhofer Fokus across **1 MIB** in - `BEGEMOT-BRIDGE-MIB::begemotBridgeNewRoot` - `BEGEMOT-BRIDGE-MIB::begemotBridgeTopologyChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fs Com Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fs Com Inc SNMP Traps.mdx index c34191f62b..7d4c1cc77c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fs Com Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fs Com Inc SNMP Traps.mdx @@ -232,4 +232,3 @@ Netdata decodes **503 trap definitions** from Fs Com Inc across **82 MIBs** into - `FS-V1-TRAP::sysHardChangeDetected` - `FS-V1-TRAP::portSecurityViolate` - `FS-V1-TRAP::stormViolationAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Access Limited SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Access Limited SNMP Traps.mdx index 03886b63e5..869e7fdbf7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Access Limited SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Access Limited SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **14 trap definitions** from Fujitsu Access Limited across **1 M - `OASW-MIB::swFanFailureTrap` - `OASW-MIB::swFanRecoverTrap` - `OASW-MIB::swUmcLipFailureTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Germany GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Germany GmbH SNMP Traps.mdx index 5edda33898..71c8c93abf 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Germany GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Germany GmbH SNMP Traps.mdx @@ -206,4 +206,3 @@ Netdata decodes **2629 trap definitions** from Fujitsu Germany GmbH across **56 - `SNI-TRAP-MIB::sniNWVolumeMounted` - `SNI-TRAP-MIB::sniNWVolumeDismounted` - `SNI-TRAP-MIB::sniNWDownServer` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Limited SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Limited SNMP Traps.mdx index f0ed55846a..1e4e51fc06 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Limited SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Limited SNMP Traps.mdx @@ -202,4 +202,3 @@ Netdata decodes **1726 trap definitions** from Fujitsu Limited across **52 MIBs* - `PRIMEPOWER-XSCF-MIB::scfHardwareErrorSet` - `PRIMEPOWER-XSCF-MIB::scfHardwareErrorUnset` - `PRIMEPOWER-XSCF-MIB::scfAgentStart` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Network Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Network Communications Inc SNMP Traps.mdx index ee26b1486f..654fe5d614 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Network Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fujitsu Network Communications Inc SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Fujitsu Network Communications Inc a - `FNCNMS::nmsNEEvent` - `FNCNMS::nmsNEStateChangeEvent` - `FNCNMS::nmsNEOperationEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fusionio SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fusionio SNMP Traps.mdx index a14e7183b0..cec9f6d6ce 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fusionio SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Fusionio SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **19 trap definitions** from Fusionio across **1 MIB** into stru - `FUSIONIO-IODIMM-MIB::fusionIoDimmFlashbackTrap` - `FUSIONIO-IODIMM-MIB::fusionIoDimmTempHighTrap` - `FUSIONIO-IODIMM-MIB::fusionIoDimmTempOkTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Future Software SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Future Software SNMP Traps.mdx index 00db70410d..265ce853a6 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Future Software SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Future Software SNMP Traps.mdx @@ -192,4 +192,3 @@ Netdata decodes **209 trap definitions** from Future Software across **42 MIBs** - `FUTURESOFT-OSPF-MIB::futOspfVirtNbrRestartHelperStatusChange` - `FUTURESOFT-OSPF-MIB::futOspfHotStandbyEventTrap` - `Aricent-MPLS-MIB::fsMplsVplsFdbFullAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gadzoox Microsystems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gadzoox Microsystems Inc SNMP Traps.mdx index 9c312caf63..26641ec701 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gadzoox Microsystems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gadzoox Microsystems Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Gadzoox Microsystems Inc across **1 - `Gadz-1-MIB::trapEnvironment` - `Gadz-1-MIB::trapPortStatus` - `Gadz-1-MIB::trapConfigurationStatus` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gamatronic Electronic Industries Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gamatronic Electronic Industries Ltd SNMP Traps.mdx index af10ef3232..4bc9023ce0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gamatronic Electronic Industries Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gamatronic Electronic Industries Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **41 trap definitions** from Gamatronic Electronic Industries Lt - `GAMATRONIC-MIB::psTrap1006Battery1TestFault` - `GAMATRONIC-MIB::psTrap1006LVD2Open` - `GAMATRONIC-MIB::psTrap1006LVD1Open` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gandalf SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gandalf SNMP Traps.mdx index 99f3a96959..943551be5c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gandalf SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gandalf SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **59 trap definitions** from Gandalf across **3 MIBs** into stru - `GANDALF-ENTERPRISE-MIB::gCardMismatch` - `GANDALF-ENTERPRISE-MIB::gCardMismatchCleared` - `GANDALF-ENTERPRISE-MIB::gPortThresholdExceeded` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Garderos GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Garderos GmbH SNMP Traps.mdx index dede14cad6..93fbade6ee 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Garderos GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Garderos GmbH SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Garderos GmbH across **1 MIB** into s ### Sample decoded traps - `GARDEROS-ROUTER-MIB::routerNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gcom Technologies Co Ltd Formerly Greennet Technology Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gcom Technologies Co Ltd Formerly Greennet Technology Co Ltd SNMP Traps.mdx index d17dbdbb2b..ce2d2dc230 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gcom Technologies Co Ltd Formerly Greennet Technology Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gcom Technologies Co Ltd Formerly Greennet Technology Co Ltd SNMP Traps.mdx @@ -158,4 +158,3 @@ Netdata decodes **75 trap definitions** from Gcom Technologies Co Ltd Formerly G - `GBNPlatformOAM-MIB::dramBusyTrap` - `GBNPlatformOAM-MIB::snmpNotifyTypeSaveConfiguration` - `GBNPlatformOAMSyslog-MIB::syslogTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gemtek Systems Holding B.V. SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gemtek Systems Holding B.V. SNMP Traps.mdx index d32067c1e5..fd1dd13fb9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gemtek Systems Holding B.V. SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gemtek Systems Holding B.V. SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Gemtek Systems Holding B.V. across * - `Motorola-Cpe-PRIVATE-MIB::fatalErrorRestart` - `Motorola-Cpe-PRIVATE-MIB::linkUp` - `Motorola-Cpe-PRIVATE-MIB::notTheHightestPriorityAP` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/General Datacomm Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/General Datacomm Inc SNMP Traps.mdx index 990e5d0ed5..545e261b5f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/General Datacomm Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/General Datacomm Inc SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **13 trap definitions** from General Datacomm Inc across **7 MIB - `GDCSCM-MIB::scmExpressPollTrap` - `GDCSCM-MIB::scmPowerSupplyTrap` - `GDCSCM-MIB::scmAliveTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/General Instrument SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/General Instrument SNMP Traps.mdx index d6d9a5dec9..db015e1f37 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/General Instrument SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/General Instrument SNMP Traps.mdx @@ -182,4 +182,3 @@ Netdata decodes **713 trap definitions** from General Instrument across **32 MIB - `APEX-MIB::trapConfigurationChangeOID` - `APEX-MIB::trapConfigurationChangeIpAddress` - `APEX-MIB::trapConditionNotInList` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Generex Systems GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Generex Systems GmbH SNMP Traps.mdx index 9dcbc96784..7d7857fa4c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Generex Systems GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Generex Systems GmbH SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **17 trap definitions** from Generex Systems GmbH across **1 MIB - `UPSMAN::upsTurnedOff` - `UPSMAN::communicationEstablished` - `UPSMAN::powerRestored` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Genie Network Resource Management SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Genie Network Resource Management SNMP Traps.mdx index b3e2089d95..0a8e07c16c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Genie Network Resource Management SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Genie Network Resource Management SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **59 trap definitions** from Genie Network Resource Management a - `GENIE-ATM-SYSTEM-MIB::geAtmBgpHijackAlert` - `GENIE-ATM-SYSTEM-MIB::geAtmBgpMsgUpdateAlert` - `GENIE-ATM-SYSTEM-MIB::geAtmConfigUpdateAlert` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gigamon Systems LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gigamon Systems LLC SNMP Traps.mdx index 5cc6969bf1..672652110a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gigamon Systems LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gigamon Systems LLC SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **20 trap definitions** from Gigamon Systems LLC across **1 MIB* - `GIGAMON-SNMP-MIB::gigamonSnmpFirmwareChangeNotification` - `GIGAMON-SNMP-MIB::gigamonSnmpConfigSaveNotification` - `GIGAMON-SNMP-MIB::gigamonSnmpModuleChangeNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Giganet Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Giganet Ltd SNMP Traps.mdx index 5e924077e5..d84bd12932 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Giganet Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Giganet Ltd SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **251 trap definitions** from Giganet Ltd across **2 MIBs** into - `CERAGON-MIB::gnSDHTrap` - `CERAGON-MIB::gnACCESSTrap` - `CERAGON-MIB::gnODUTrapCleared` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Grand Junction Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Grand Junction Networks SNMP Traps.mdx index 5d597abd9a..60c44723f0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Grand Junction Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Grand Junction Networks SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Grand Junction Networks across **1 M - `STAND-ALONE-ETHERNET-SWITCH-MIB::addressViolation` - `STAND-ALONE-ETHERNET-SWITCH-MIB::broadcastStorm` - `STAND-ALONE-ETHERNET-SWITCH-MIB::rpsFailed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Grandstream Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Grandstream Networks Inc SNMP Traps.mdx index 79c4eb896b..3780f7f127 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Grandstream Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Grandstream Networks Inc SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **12 trap definitions** from Grandstream Networks Inc across **3 - `GRANDSTREAM-GWN-PRODUCTS-SWITCH-MIB::logMessageGenerated` - `GRANDSTREAM-GWN-PRODUCTS-SWITCH-MIB::normalMessageGenerated` - `GRANDSTREAM-GWN-PRODUCTS-SWITCH-MIB::alarmMessageGenerated` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gude Analog Und Digitalsysteme GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gude Analog Und Digitalsysteme GmbH SNMP Traps.mdx index 39aa74cea5..0981c66034 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gude Analog Und Digitalsysteme GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gude Analog Und Digitalsysteme GmbH SNMP Traps.mdx @@ -170,4 +170,3 @@ Netdata decodes **186 trap definitions** from Gude Analog Und Digitalsysteme Gmb - `GUDEADS-EPC2X6-MIB::epc2x6witchEvt3` - `GUDEADS-EPC2X6-MIB::epc2x6witchEvt4` - `GUDEADS-EPC2X6-MIB::epc2x6witchEvt5` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gw Technologies Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gw Technologies Co Ltd SNMP Traps.mdx index 0c77045d2b..a92ae89e9a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gw Technologies Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Gw Technologies Co Ltd SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **96 trap definitions** from Gw Technologies Co Ltd across **2 M - `GW-EPON-MIB::onuNotPresent` - `GW-EPON-MIB::devPowerOff` - `GW-EPON-MIB::devPowerOn` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/H3C SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/H3C SNMP Traps.mdx index 0b0d0555c5..3afbb7e4a8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/H3C SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/H3C SNMP Traps.mdx @@ -342,4 +342,3 @@ Netdata decodes **1306 trap definitions** from H3C across **192 MIBs** into stru - `HH3C-UI-MAN-MIB::hh3cLogIn` - `HH3C-UI-MAN-MIB::hh3cLogOut` - `HH3C-UI-MAN-MIB::hh3cLogInAuthenFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Halcyon Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Halcyon Inc SNMP Traps.mdx index e211d5a048..68f2318368 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Halcyon Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Halcyon Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **7 trap definitions** from Halcyon Inc across **1 MIB** into st - `HALCYON-PRIMEALERT-MIB::eventLogTrap` - `HALCYON-PRIMEALERT-MIB::eventColdstartTrap` - `HALCYON-PRIMEALERT-MIB::eventAcknowledgeTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Harmonic Lightwaves SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Harmonic Lightwaves SNMP Traps.mdx index b11f780d03..ca8b2481a6 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Harmonic Lightwaves SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Harmonic Lightwaves SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **27 trap definitions** from Harmonic Lightwaves across **1 MIB* - `HARMONIC-INC-NSG9000-MIB::hPlatformFan1FailTrap` - `HARMONIC-INC-NSG9000-MIB::hPlatformFan2FailTrap` - `HARMONIC-INC-NSG9000-MIB::hPlatformFan3FailTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hewlett Packard Enterprise SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hewlett Packard Enterprise SNMP Traps.mdx index dff248ff9b..6d844353c0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hewlett Packard Enterprise SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hewlett Packard Enterprise SNMP Traps.mdx @@ -162,4 +162,3 @@ Netdata decodes **40 trap definitions** from Hewlett Packard Enterprise across * - `ARUBAWIRED-MGMD-RMON-TRAP-MIB::arubaWiredMgmdRmonTrapEvent` - `ARUBAWIRED-RPVST-MIB::arubaWiredRpvstErrantBpduReceived` - `ARUBAWIRED-RPVST-MIB::arubaWiredRpvstNewRoot` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hewlett Packard SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hewlett Packard SNMP Traps.mdx index 4f3d2b33be..ee46256766 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hewlett Packard SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hewlett Packard SNMP Traps.mdx @@ -330,4 +330,3 @@ Netdata decodes **3024 trap definitions** from Hewlett Packard across **180 MIBs - `HP-SN-ROUTER-TRAP-MIB::snTrapOspfIfStateChange` - `HP-SN-ROUTER-TRAP-MIB::snTrapOspfVirtIfStateChange` - `HP-SN-ROUTER-TRAP-MIB::snOspfNbrStateChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hitachi Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hitachi Ltd SNMP Traps.mdx index d9d38f4081..b2856151cf 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hitachi Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hitachi Ltd SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **144 trap definitions** from Hitachi Ltd across **5 MIBs** into - `Hitachi-DF-RAID-LAN-MIB::fanFailure` - `Hitachi-DF-RAID-LAN-MIB::powerSupplyFailure` - `Hitachi-DF-RAID-LAN-MIB::batteryFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huawei Symantec Technologies Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huawei Symantec Technologies Co Ltd SNMP Traps.mdx index c087e6d854..0daffb8f23 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huawei Symantec Technologies Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huawei Symantec Technologies Co Ltd SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Huawei Symantec Technologies Co Ltd a ### Sample decoded traps - `ISM-TRAP-MIB::eventType` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huawei Technology Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huawei Technology Co Ltd SNMP Traps.mdx index 024919532f..d54f6d0d5b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huawei Technology Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huawei Technology Co Ltd SNMP Traps.mdx @@ -630,4 +630,3 @@ Netdata decodes **13021 trap definitions** from Huawei Technology Co Ltd across - `EXPERTV2-MIB::seekUserTrap` - `EXPERTV2-MIB::kickUserTrap` - `EXPERTV2-MIB::alarmMML` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huber Suhner Bktel GmbH Hfc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huber Suhner Bktel GmbH Hfc SNMP Traps.mdx index 337fcbc30a..4ffb185442 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huber Suhner Bktel GmbH Hfc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Huber Suhner Bktel GmbH Hfc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Huber Suhner Bktel GmbH Hfc across ** ### Sample decoded traps - `BKTEL-HFC862-HMSNE-MIB::neSynchronizeEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hw Group S R O SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hw Group S R O SNMP Traps.mdx index fae5ee3827..57439cdf35 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hw Group S R O SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hw Group S R O SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **25 trap definitions** from Hw Group S R O across **5 MIBs** in - `POSEIDON-MIB::tsTrapAlarmStart` - `POSEIDON-MIB::tsTrapAlarmEnd` - `DAMOCLES-MIB::inpChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hypercom Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hypercom Inc SNMP Traps.mdx index 6d88ff4f30..e8eef67f7a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hypercom Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Hypercom Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **179 trap definitions** from Hypercom Inc across **1 MIB** into - `HYPERCOM-MIB::hypTrap09` - `HYPERCOM-MIB::hypTrap10` - `HYPERCOM-MIB::hypTrap20` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibm Eserver X SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibm Eserver X SNMP Traps.mdx index 8690271fcc..d6a2e82380 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibm Eserver X SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibm Eserver X SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **364 trap definitions** from Ibm Eserver X across **7 MIBs** in - `IBM-GbTOR-G8264T-MIB::swDefGwDown` - `IBM-GbTOR-G8264T-MIB::swDefGwInService` - `IBM-GbTOR-G8264T-MIB::swDefGwNotInService` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibm Https W3 Ibm Com Standards SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibm Https W3 Ibm Com Standards SNMP Traps.mdx index bd5049d121..d0bb3b83c3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibm Https W3 Ibm Com Standards SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibm Https W3 Ibm Com Standards SNMP Traps.mdx @@ -175,4 +175,3 @@ Netdata decodes **1110 trap definitions** from Ibm Https W3 Ibm Com Standards ac - `IBM-RXR-MIB::topologyChange` - `ATM-SWITCHING-NODE-MIB::hello` - `ATM-SWITCHING-NODE-MIB::lock` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibrix Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibrix Corp SNMP Traps.mdx index 0e6307375f..1d6f80c482 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibrix Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ibrix Corp SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Ibrix Corp across **1 MIB** into stru ### Sample decoded traps - `IBRIX-MIB::ibrixGenericEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Idirect SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Idirect SNMP Traps.mdx index 9b3f51044e..8165947891 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Idirect SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Idirect SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **41 trap definitions** from Idirect across **1 MIB** into struc - `IDIRECT-REMOTE-MIB::upstreamSNR` - `IDIRECT-REMOTE-MIB::downstreamSNR` - `IDIRECT-REMOTE-MIB::tempLimit` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ieee 802 SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ieee 802 SNMP Traps.mdx index adbb742a19..b2b7339b33 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ieee 802 SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ieee 802 SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **9 trap definitions** from Ieee 802 across **7 MIBs** into stru - `IEEE8021-CFM-MIB::dot1agCfmFaultAlarm` - `IEEE8021-PBBTE-MIB::ieee8021PbbTeProtectionGroupAdminFailure` - `LLDP-V2-MIB::lldpV2RemTablesChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ieee Lldp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ieee Lldp SNMP Traps.mdx index 52d81430d4..015c24a907 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ieee Lldp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ieee Lldp SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **13 trap definitions** from Ieee Lldp across **4 MIBs** into st - `LLDP-EXT-DCBX-MIB::lldpXdcbxMiscControlError` - `LLDP-EXT-DCBX-MIB::lldpXdcbxMiscFeatureError` - `LLDP-EXT-DCBX-MIB::lldpXdcbxMultiplePeers` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Image Processing Techniques Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Image Processing Techniques Ltd SNMP Traps.mdx index 11dd117b49..d5a207baae 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Image Processing Techniques Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Image Processing Techniques Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **26 trap definitions** from Image Processing Techniques Ltd acr - `OMNITEK-MIB::videoStandardChangedTRAP` - `OMNITEK-MIB::digitalInputTRAP` - `OMNITEK-MIB::digitalInputBTRAP` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Image Project Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Image Project Inc SNMP Traps.mdx index 6375b11dde..57b22cc362 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Image Project Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Image Project Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **9 trap definitions** from Image Project Inc across **1 MIB** i - `WEBSITEPULSE-NOTIFY-MIB::webSitePulseTimeoutFailure` - `WEBSITEPULSE-NOTIFY-MIB::webSitePulseFailureRepeated` - `WEBSITEPULSE-NOTIFY-MIB::webSitePulseRecovery` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Imv Victron B.V. SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Imv Victron B.V. SNMP Traps.mdx index 19312662f8..aa46265aac 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Imv Victron B.V. SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Imv Victron B.V. SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **611 trap definitions** from Imv Victron B.V. across **2 MIBs** - `GEPARALLELUPS-MIB::upsTrapAlarmOnBattery` - `GEPARALLELUPS-MIB::upsTrapAlarmLowBattery` - `GEPARALLELUPS-MIB::upsTrapAlarmDepletedBattery` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inca Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inca Networks Inc SNMP Traps.mdx index ddaee3d27a..0e26d2ba6a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inca Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inca Networks Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Inca Networks Inc across **1 MIB** i - `INCA-TS-ALARM-MIB::tsStreamAlarmNotif` - `INCA-TS-ALARM-MIB::tsProgStartNotif` - `INCA-TS-ALARM-MIB::tsProgEndNotif` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Incognito Software Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Incognito Software Systems Inc SNMP Traps.mdx index 84a6df329f..d2369e0813 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Incognito Software Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Incognito Software Systems Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **39 trap definitions** from Incognito Software Systems Inc acro - `INCOGNITO-EXPR-IPCOMMANDER-MIB::incognitoIPCMDServerStart` - `INCOGNITO-EXPR-IPCOMMANDER-MIB::incognitoIPCMDServerStop` - `INCOGNITO-EXPR-IPCOMMANDER-MIB::incognitoIPCMDServicePaused` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Independence Technologies Inc Iti SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Independence Technologies Inc Iti SNMP Traps.mdx index 34c33b8fa7..bdd63e2da7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Independence Technologies Inc Iti SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Independence Technologies Inc Iti SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **7 trap definitions** from Independence Technologies Inc Iti ac - `BEA-WEBLOGIC-MIB::wlsServerShutDown` - `BEA-WEBLOGIC-MIB::wlsMonitorNotification` - `BEA-WEBLOGIC-MIB::wlsAttributeChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infinet LLC Formerly Aqua Project Group SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infinet LLC Formerly Aqua Project Group SNMP Traps.mdx index 44eba417d8..5beccd1866 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infinet LLC Formerly Aqua Project Group SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infinet LLC Formerly Aqua Project Group SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **11 trap definitions** from Infinet LLC Formerly Aqua Project G - `AQUAMINT-MIB::mintTopologyNotification` - `AQUAMINT-MIB::mintNewNeighborNotification` - `AQUAMINT-MIB::mintNeighborLostNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inflection Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inflection Systems SNMP Traps.mdx index 3495b7de25..30698aeff3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inflection Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inflection Systems SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Inflection Systems across **1 MIB** i ### Sample decoded traps - `EXAGRID-MIB::egTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infoblox Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infoblox Inc SNMP Traps.mdx index 88e188a843..9b5ac6bf0b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infoblox Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infoblox Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **7 trap definitions** from Infoblox Inc across **1 MIB** into s - `IB-TRAP-MIB::ibThresholdCrossingEvent` - `IB-TRAP-MIB::ibStateChangeEvent` - `IB-TRAP-MIB::ibProcStartStopTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infortrend Technology Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infortrend Technology Inc SNMP Traps.mdx index 8385d40d29..2f79f71992 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infortrend Technology Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infortrend Technology Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **775 trap definitions** from Infortrend Technology Inc across * - `IFT-SNMP-MIB::inconsistent-board-ID-between-the-controllers-has-been-found` - `IFT-SNMP-MIB::inconsistent-board-rev-number-between-the-controllers` - `IFT-SNMP-MIB::invalid-hardware-settings-have-been-detected` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infosim SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infosim SNMP Traps.mdx index 0dda7f4fe4..20f9919d1b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infosim SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infosim SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Infosim across **1 MIB** into structu ### Sample decoded traps - `INFOSIM-TRAPMIB::snAgentEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infratec Plus GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infratec Plus GmbH SNMP Traps.mdx index a195f0fb2c..dd86878ee8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infratec Plus GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Infratec Plus GmbH SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Infratec Plus GmbH across **1 MIB** - `INFRATEC-RMS-MIB::rmsFilterTrap` - `INFRATEC-RMS-MIB::rmsChipcardTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ingrasys SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ingrasys SNMP Traps.mdx index d677ed2911..a2e42fe23c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ingrasys SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ingrasys SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **246 trap definitions** from Ingrasys across **2 MIBs** into st - `USHA-MIB::ushaReturnFromLowBattery` - `USHA-MIB::ushaLowBattery` - `USHA-MIB::ushaUpsOk` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inktomi Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inktomi Corporation SNMP Traps.mdx index a15293e5e3..ea7a4fb0b9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inktomi Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inktomi Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **15 trap definitions** from Inktomi Corporation across **1 MIB* - `INKTOMI-TS-MIB::logSpaceCrisis` - `INKTOMI-TS-MIB::cacheError` - `INKTOMI-TS-MIB::cacheWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innominate Security Technologies AG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innominate Security Technologies AG SNMP Traps.mdx index 18b74bbe91..c4a1902485 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innominate Security Technologies AG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innominate Security Technologies AG SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **22 trap definitions** from Innominate Security Technologies AG - `MGUARDB-MIB::mGuardDHCPNewClientTrap` - `MGUARDB-MIB::mGuardTrapDiscFull` - `MGUARDB-MIB::mGuardTrapCpuLoadHigh` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innovaphone GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innovaphone GmbH SNMP Traps.mdx index d20fd356e1..bc2d372b76 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innovaphone GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innovaphone GmbH SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Innovaphone GmbH across **1 MIB** in - `INNO-MIB::innoLinkDown` - `INNO-MIB::innoLinkUp` - `INNO-MIB::innoAuthenticationFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innovative Circuit Technology Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innovative Circuit Technology Ltd SNMP Traps.mdx index 14b4359d05..c90785043a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innovative Circuit Technology Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Innovative Circuit Technology Ltd SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **64 trap definitions** from Innovative Circuit Technology Ltd a - `ICT-DISTRIBUTION-PANEL-MIB::sysOvercurrentAlarmTrap` - `ICT-DISTRIBUTION-PANEL-MIB::fuseAlarmTrap` - `ICT-DISTRIBUTION-PANEL-MIB::undercurrentAlarmTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inoc Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inoc Inc SNMP Traps.mdx index 45d3c8331e..d9892fa5d5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inoc Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inoc Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **7 trap definitions** from Inoc Inc across **2 MIBs** into stru - `SONICWALL-SSL-DEV-MIB::configChange` - `SONICWALL-SSL-TRAN-MIB::sslTpsChangeHi` - `SONICWALL-SSL-TRAN-MIB::sslTpsChangeLo` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inova Dc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inova Dc SNMP Traps.mdx index 355df7c555..dfb9141a9e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inova Dc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inova Dc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Inova Dc across **1 MIB** into struc - `PowerNet-Inova::rpduWarningCondition` - `PowerNet-Inova::rpduWarningConditionCleared` - `PowerNet-Inova::rpduInformationalCondition` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inovonics Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inovonics Inc SNMP Traps.mdx index 6abd959147..fcf5d78a0b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inovonics Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Inovonics Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **8 trap definitions** from Inovonics Inc across **2 MIBs** into - `INOVONICS-MODEL640-MIB::rdsErrorTrap` - `INOVONICS-MODEL640-MIB::pilotLossTrap` - `INOVONICS-MODEL650-MIB::audioLossTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Intel Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Intel Corporation SNMP Traps.mdx index 817b3acd22..f94b0b5db7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Intel Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Intel Corporation SNMP Traps.mdx @@ -172,4 +172,3 @@ Netdata decodes **290 trap definitions** from Intel Corporation across **27 MIBs - `INTEL-ES480-TRAP-MIB::fanOK` - `INTEL-ES480-TRAP-MIB::invalidLoginAttempt` - `INTEL-ES480-TRAP-MIB::powerSupplyFail` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Intersystems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Intersystems SNMP Traps.mdx index 6eda3a59fd..ed36e77ad8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Intersystems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Intersystems SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **19 trap definitions** from Intersystems across **2 MIBs** into - `ISC-CACHE::cacheDBExpand` - `ISC-CACHE::cacheDBOutOfSpace` - `ISC-CACHE::cacheDBStatusChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Invidi Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Invidi Technologies SNMP Traps.mdx index c50ea78bd4..bd90929816 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Invidi Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Invidi Technologies SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **38 trap definitions** from Invidi Technologies across **1 MIB* - `INVIDI-MIB::bdmsInterfaceError` - `INVIDI-MIB::adInserterErrors` - `INVIDI-MIB::cueProcessingErrors` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ip Infusion Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ip Infusion Inc SNMP Traps.mdx index 1e898316d0..91a41c677e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ip Infusion Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ip Infusion Inc SNMP Traps.mdx @@ -175,4 +175,3 @@ Netdata decodes **410 trap definitions** from Ip Infusion Inc across **30 MIBs** - `IPI-VRF-MIB::ipiVrfIfUpNotification` - `IPI-VRF-MIB::ipiVrfIfDownNotification` - `IPI-ICMP-TRAP-MIB::icmpV4ErrorNotify` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ipf Technology Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ipf Technology Ltd SNMP Traps.mdx index 76f6dba450..49a08e6818 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ipf Technology Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ipf Technology Ltd SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Ipf Technology Ltd across **1 MIB** i ### Sample decoded traps - `VOLIUS-OA-MIB::vlsEventTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ironport Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ironport Systems Inc SNMP Traps.mdx index 79aee5c862..f5b50e2a41 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ironport Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ironport Systems Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **13 trap definitions** from Ironport Systems Inc across **2 MIB - `ASYNCOS-MAIL-MIB::highTemperature` - `ASYNCOS-MAIL-MIB::fanFailure` - `ASYNCOS-MAIL-MIB::keyExpiration` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Isilon Ststems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Isilon Ststems SNMP Traps.mdx index e7a31d55c0..80cc5d4285 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Isilon Ststems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Isilon Ststems SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **203 trap definitions** from Isilon Ststems across **2 MIBs** i - `ISILON-TRAP-MIB::nodeExpStatusCrit` - `ISILON-TRAP-MIB::nodeShutdownInfo` - `ISILON-TRAP-MIB::nodeShutdownFailCrit` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/It Watchdogs Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/It Watchdogs Inc SNMP Traps.mdx index cb78d31b51..0df14516ae 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/It Watchdogs Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/It Watchdogs Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **1057 trap definitions** from It Watchdogs Inc across **4 MIBs* - `EATON-GENESIS-II-MIB::intDeciAmpsCT3TRAP` - `EATON-GENESIS-II-MIB::intDeciAmpsCT4TRAP` - `EATON-GENESIS-II-MIB::intDeciAmpsCT5TRAP` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ixsystems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ixsystems SNMP Traps.mdx index 3b271a49cd..72e754aed2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ixsystems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ixsystems SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Ixsystems across **1 MIB** into stru - `FREENAS-MIB::alert` - `FREENAS-MIB::alertCancellation` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacarta Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacarta Ltd SNMP Traps.mdx index d0af48b625..70f4d160e4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacarta Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacarta Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **22 trap definitions** from Jacarta Ltd across **1 MIB** into s - `InterSeptor-MIB::inSeptAlarm1Inactive` - `InterSeptor-MIB::inSeptAlarm1Active` - `InterSeptor-MIB::inSeptAlarm2Inactive` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacobs University Bremen SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacobs University Bremen SNMP Traps.mdx index b71256a27e..3b226ba105 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacobs University Bremen SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacobs University Bremen SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Jacobs University Bremen across **1 M ### Sample decoded traps - `JACOBS-FS20-MIB::fs20Notification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacques Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacques Technologies SNMP Traps.mdx index 4048c5a48e..504f378669 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacques Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jacques Technologies SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Jacques Technologies across **1 MIB* - `JACQUES-650-MIB::jacquesEndpointOnlineNotify` - `JACQUES-650-MIB::jacquesEndpointModeNotify` - `JACQUES-650-MIB::jacquesEndpointAlarmNotify` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Janitza Electronics GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Janitza Electronics GmbH SNMP Traps.mdx index c500c73151..7eb9a511ee 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Janitza Electronics GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Janitza Electronics GmbH SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **16 trap definitions** from Janitza Electronics GmbH across **1 - `JANITZA-MIB-UMG96::userTrap3` - `JANITZA-MIB-UMG96::userTrap4` - `JANITZA-MIB-UMG96::userTrap5` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jds Uniphase Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jds Uniphase Corporation SNMP Traps.mdx index 5dad74993e..fc953a2f0c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jds Uniphase Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Jds Uniphase Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Jds Uniphase Corporation across **1 - `JDSU-ONMSI-MIB::jdsuOnmsiPonTestResultTrap` - `JDSU-ONMSI-MIB::jdsuOnmsiMonitoringTestResultTrap` - `JDSU-ONMSI-MIB::jdsuOnmsiAlarmEventTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Johnson Controls Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Johnson Controls Inc SNMP Traps.mdx index 00bd74bfe1..61ac852e9e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Johnson Controls Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Johnson Controls Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **93 trap definitions** from Johnson Controls Inc across **1 MIB - `JCImSeries-MIB::n1HvacConditionalEventAcknowledged` - `JCImSeries-MIB::n1FireActiveConditionalEvent` - `JCImSeries-MIB::n1FireInactiveConditionalEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Funk Software SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Funk Software SNMP Traps.mdx index c2de79f150..744530300b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Funk Software SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Funk Software SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **117 trap definitions** from Juniper Networks Funk Software acr - `FNKSBRTR-MIB::funkSbrTrapThreadsNormal` - `FNKSBRTR-MIB::funkSbrTrapFSNormal` - `FNKSBRTR-MIB::funkSbrTrapConcurrencyReconnect` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Inc SNMP Traps.mdx index 2af7547c57..861f76b38d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Inc SNMP Traps.mdx @@ -196,4 +196,3 @@ Netdata decodes **229 trap definitions** from Juniper Networks Inc across **46 M - `JUNIPER-V1-TRAPS-CHAS::jnxOverTemperatureV1` - `MPLS-MIB::mplsLspInfoUp` - `MPLS-MIB::mplsLspInfoDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Unisphere SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Unisphere SNMP Traps.mdx index 9e718873a7..6dfb87968e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Unisphere SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Juniper Networks Unisphere SNMP Traps.mdx @@ -164,4 +164,3 @@ Netdata decodes **95 trap definitions** from Juniper Networks Unisphere across * - `Juniper-System-MIB::juniSystemModuleOperStatusChange` - `Juniper-System-MIB::juniSystemPowerStatusChange` - `Juniper-System-MIB::juniSystemFanStatusChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/K2Net SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/K2Net SNMP Traps.mdx index 5a2fae25bd..bdfc77f514 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/K2Net SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/K2Net SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **33 trap definitions** from K2Net across **2 MIBs** into struct - `CFG-PLCY-MIB::sitaraCfgPlcyNotifnsFailToReStart` - `CFG-PLCY-MIB::sitaraCfgPlcyNotifnsFailToUpdatePolicy` - `CFG-PLCY-MIB::sitaraCfgPlcyNotifnsFailToXlatePolicy` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kashya SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kashya SNMP Traps.mdx index 37b33edb47..d4d069e867 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kashya SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kashya SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Kashya across **1 MIB** into structu - `KASHYA-MIB::info` - `KASHYA-MIB::warning` - `KASHYA-MIB::error` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kaspersky Lab Zao SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kaspersky Lab Zao SNMP Traps.mdx index 8b676de6d0..f5eba5c7ef 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kaspersky Lab Zao SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kaspersky Lab Zao SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **26 trap definitions** from Kaspersky Lab Zao across **1 MIB** - `EVENTS-MIB::avBasesAttachedEvent` - `EVENTS-MIB::avBasesAreOutOfDateEvent` - `EVENTS-MIB::avBasesAreTotallyOutOfDateEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Katron Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Katron Technologies Inc SNMP Traps.mdx index d3e66025a8..48e7f35aeb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Katron Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Katron Technologies Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **13 trap definitions** from Katron Technologies Inc across **1 - `SWITCH_MIB::switch_Port_Enabled` - `SWITCH_MIB::switch_Port_Disabled` - `SWITCH_MIB::switch_Port_Speed_Duplex_Change` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kcp Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kcp Inc SNMP Traps.mdx index cd4aabec23..0c4545086e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kcp Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kcp Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **291 trap definitions** from Kcp Inc across **2 MIBs** into str - `HHMSAGENT-MIB::hhmsWarningStatus` - `HHMSAGENT-MIB::hhmsCriticalStatus` - `HHMSAGENT-MIB::hhmsDownStatus` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kentix GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kentix GmbH SNMP Traps.mdx index bc656ab974..36572467e2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kentix GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kentix GmbH SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **4 trap definitions** from Kentix GmbH across **3 MIBs** into s - `KAM-PRO::login` - `KAM-PRO::alarm` - `KENTIXDEVICES::event` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kentrox SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kentrox SNMP Traps.mdx index 43413f74f1..f512534522 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kentrox SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kentrox SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Kentrox across **1 MIB** into struct - `DATASMART-MIB::dsFmcSetNiRcvUpperBwThresh` - `DATASMART-MIB::dsFmcClrNiRcvUpperBwThresh` - `DATASMART-MIB::dsFmcSetNiXmtUpperBwThresh` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kevin Ether Boulain SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kevin Ether Boulain SNMP Traps.mdx index c514b1452a..dfe7410937 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kevin Ether Boulain SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kevin Ether Boulain SNMP Traps.mdx @@ -157,4 +157,3 @@ Netdata decodes **109 trap definitions** from Kevin Ether Boulain across **12 MI - `SUNMANAGEMENTCENTER-TRAP-MIB::statusChange` - `SUNMANAGEMENTCENTER-TRAP-MIB::valueRefresh` - `TRAPS-SUNMANAGEMENTCENTER-MIB::event` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Knuerr AG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Knuerr AG SNMP Traps.mdx index 23c18d9a50..0c2dc436e0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Knuerr AG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Knuerr AG SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Knuerr AG across **1 MIB** into stru - `RMS-MIB::rmsFilterTrap` - `RMS-MIB::rmsChipcardTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kyocera Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kyocera Corporation SNMP Traps.mdx index e846e92deb..6f2642e364 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kyocera Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Kyocera Corporation SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Kyocera Corporation across **1 MIB** - `KMTRAP::kmEventGenerateTrap` - `KMTRAP::kmEventReleaseTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lanart Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lanart Corp SNMP Traps.mdx index cc998757ae..6a3bef735b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lanart Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lanart Corp SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Lanart Corp across **1 MIB** into str ### Sample decoded traps - `LANART-MIB::laPortStatus` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancast Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancast Inc SNMP Traps.mdx index 6a3d64ad03..836d723e73 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancast Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancast Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **17 trap definitions** from Lancast Inc across **2 MIBs** into - `LC-PHYSICAL-ENTITIES-MIB::backPlaneFailure` - `LC-PHYSICAL-ENTITIES-MIB::powerSupply5vChange` - `LC-PHYSICAL-ENTITIES-MIB::powerSupplyStatusChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancity Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancity Corporation SNMP Traps.mdx index 155539a226..893b58d4ae 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancity Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancity Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **180 trap definitions** from Lancity Corporation across **1 MIB - `LANCITY-MCNS-MIB::lcErrUnknown` - `LANCITY-MCNS-MIB::lcErrSystemError` - `LANCITY-MCNS-MIB::lcErrTest` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancom Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancom Systems SNMP Traps.mdx index 4f5d3aa556..f467ac781a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancom Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lancom Systems SNMP Traps.mdx @@ -188,4 +188,3 @@ Netdata decodes **733 trap definitions** from Lancom Systems across **38 MIBs** - `LCOS-MIB::lcsTrapsUplsucc` - `LCOS-MIB::lcsTrapsUplfailto` - `LCOS-MIB::lcsTrapsUplfailincl` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lanex Sp Z O O SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lanex Sp Z O O SNMP Traps.mdx index 38f10d113f..8c06404503 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lanex Sp Z O O SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lanex Sp Z O O SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **14 trap definitions** from Lanex Sp Z O O across **2 MIBs** in - `TM62-MIB::trapOptiLine4LogIdn` - `TM62-MIB::trapOptiLine4Es` - `TM62-MIB::trapOptiLine4confn` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lannair Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lannair Ltd SNMP Traps.mdx index 397a9ab0c0..37656286db 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lannair Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lannair Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **17 trap definitions** from Lannair Ltd across **1 MIB** into s - `BREEZECOM-MIB::brzAPdisassociated` - `BREEZECOM-MIB::brzAPaging` - `BREEZECOM-MIB::brzAProamedOut` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lannet Company SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lannet Company SNMP Traps.mdx index d8fb0c0f33..0a676b5f74 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lannet Company SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lannet Company SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **69 trap definitions** from Lannet Company across **1 MIB** int - `Lannet-Trapsv2-MIB::lntSoftRedDelEvent` - `Lannet-Trapsv2-MIB::lntSoftRedNewEvent` - `Lannet-Trapsv2-MIB::lntTempratureWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lantronix SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lantronix SNMP Traps.mdx index 8cf860a336..eb353e63ed 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lantronix SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lantronix SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **32 trap definitions** from Lantronix across **2 MIBs** into st - `LANTRONIX-SLC-MIB::slcEventSLCShutdown` - `LANTRONIX-SLC-MIB::slcEventDevicePortData` - `LANTRONIX-SLC-MIB::slcEventDevicePortSLMData` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Last Mile Gear SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Last Mile Gear SNMP Traps.mdx index 6d6fe70532..067928baea 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Last Mile Gear SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Last Mile Gear SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **17 trap definitions** from Last Mile Gear across **1 MIB** int - `CTMMIB::masterSecondaryPowerLost` - `CTMMIB::gpsSignalLost` - `CTMMIB::masterTempatureError` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Latitude Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Latitude Communications SNMP Traps.mdx index 687e98161a..ea7a57378c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Latitude Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Latitude Communications SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Latitude Communications across **1 M - `CISCO-LATITUDE-MIB::mpMajHwAlarm` - `CISCO-LATITUDE-MIB::mpMinHwAlarm` - `CISCO-LATITUDE-MIB::mpMajSwAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Laurel Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Laurel Networks Inc SNMP Traps.mdx index 173b3b4752..e923c5c0d9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Laurel Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Laurel Networks Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **783 trap definitions** from Laurel Networks Inc across **1 MIB - `ECI-TRAPS::eciOverTemperature` - `ECI-TRAPS::eciOverTemperatureCleared` - `ECI-TRAPS::eciPhyCardRemoved` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lefthand Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lefthand Networks SNMP Traps.mdx index 9929311710..995afc2cb7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lefthand Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lefthand Networks SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **22 trap definitions** from Lefthand Networks across **1 MIB** - `LEFTHAND-NETWORKS-NSM-NOTIFICATION-MIB::lhnNsmNotificationController` - `LEFTHAND-NETWORKS-NSM-NOTIFICATION-MIB::lhnNsmNotificationRAID` - `LEFTHAND-NETWORKS-NSM-NOTIFICATION-MIB::lhnNsmNotificationDisk` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lenovo Enterprise Business Group SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lenovo Enterprise Business Group SNMP Traps.mdx index e3411c8a79..765aa8bdf2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lenovo Enterprise Business Group SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lenovo Enterprise Business Group SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **351 trap definitions** from Lenovo Enterprise Business Group a - `LENOVO-ENV-MIB::lenovoEnvMibFanFailure` - `LENOVO-ENV-MIB::lenovoEnvMibFanFixed` - `LENOVO-ENV-MIB::lenovoEnvMibTempSensorFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lenovoemc Ltd Formerly Iomega SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lenovoemc Ltd Formerly Iomega SNMP Traps.mdx index e6116968a9..0734ccbc26 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lenovoemc Ltd Formerly Iomega SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lenovoemc Ltd Formerly Iomega SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Lenovoemc Ltd Formerly Iomega across - `IOMEGANAS-MIB::iomegaNASNotificationError` - `IOMEGANAS-MIB::iomegaNASNotificationWarn` - `IOMEGANAS-MIB::iomegaNASNotificationInfo` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lexmark International SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lexmark International SNMP Traps.mdx index 569105852f..d2c1610299 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lexmark International SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lexmark International SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **13 trap definitions** from Lexmark International across **2 MI - `LEXMARK-PVT-MIB::irOutputFull` - `LEXMARK-PVT-MIB::irLoadPaper` - `LEXMARK-PVT-MIB::irPaperJam` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Librenms SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Librenms SNMP Traps.mdx index e108a7deeb..8f910074d9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Librenms SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Librenms SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Librenms across **1 MIB** into struct ### Sample decoded traps - `LIBRENMS-NOTIFICATIONS-MIB::defaultAlertEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ligowave SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ligowave SNMP Traps.mdx index c71b479503..e4f7cd167f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ligowave SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ligowave SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **23 trap definitions** from Ligowave across **5 MIBs** into str - `LIGO-GENERIC-MIB::ligoHeartbeat` - `LIGO-GENERIC-MIB::ligoHighPing` - `LIGO-802DOT11-EXT-MIB::ligoFrequencyChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Linksys SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Linksys SNMP Traps.mdx index 8fa5414488..3b5b71aa00 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Linksys SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Linksys SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **20 trap definitions** from Linksys across **5 MIBs** into stru - `LINKSYS-COPY-MIB::rlCopyFailed` - `LINKSYS-Physicaldescription-MIB::rlStackUnitRemoved` - `LINKSYS-Physicaldescription-MIB::rlStackConfigChangedRingChain` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Livingston Enterprises Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Livingston Enterprises Inc SNMP Traps.mdx index aebbe4e122..dbb53ca823 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Livingston Enterprises Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Livingston Enterprises Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **26 trap definitions** from Livingston Enterprises Inc across * - `LIVINGSTON-SNMP::livingstonFanFailTrap` - `LIVINGSTON-SNMP::livingstonFanRestoredTrap` - `LIVINGSTON-SNMP::livingstonBoardTempWarnTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Loop Telecommunication International Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Loop Telecommunication International Inc SNMP Traps.mdx index 4184d53390..8d907e27ed 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Loop Telecommunication International Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Loop Telecommunication International Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Loop Telecommunication International - `L-AM3440-A-Private::localTrap` - `L-AM3440-A-Private::remoteTrap` - `L-AM3440-A-Private::remove2Trap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Loral Wdl SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Loral Wdl SNMP Traps.mdx index 2616b54a19..ffed709b31 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Loral Wdl SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Loral Wdl SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Loral Wdl across **1 MIB** into stru - `LUCENT-GENERIC-DLOAD-MIB::luDloadTrapCompleted` - `LUCENT-GENERIC-DLOAD-MIB::luUpLoadTrapCompleted` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lotus Development Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lotus Development Corp SNMP Traps.mdx index c4c55fb00f..7b94a535e5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lotus Development Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lotus Development Corp SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **44 trap definitions** from Lotus Development Corp across **2 M - `LMS-TRAP-FORWARDING-MIB::lmsMinor` - `LMS-TRAP-FORWARDING-MIB::lmsWarning` - `LMS-TRAP-FORWARDING-MIB::lmsCleared` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lsi Logic SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lsi Logic SNMP Traps.mdx index 361693b44e..3df23ef673 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lsi Logic SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lsi Logic SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **271 trap definitions** from Lsi Logic across **3 MIBs** into s - `Adapter-1030-MIB::rtLogicalDriveStateChange` - `Adapter-1030-MIB::rtResyncStarted` - `Adapter-1030-MIB::rtResyncCompleted` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lucent Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lucent Technologies SNMP Traps.mdx index f70712752e..da14027c63 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lucent Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Lucent Technologies SNMP Traps.mdx @@ -160,4 +160,3 @@ Netdata decodes **514 trap definitions** from Lucent Technologies across **15 MI - `DHCP-SERVER-MIB::dhcpServerReload` - `DHCP-SERVER-MIB::dhcpServerSubnetDepleted` - `DHCP-SERVER-MIB::dhcpServerBadPacket` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Luminous Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Luminous Networks Inc SNMP Traps.mdx index ee7f38c2eb..0815ce83bd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Luminous Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Luminous Networks Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **21 trap definitions** from Luminous Networks Inc across **2 MI - `LUMINOUS-TRAP-MIB::lumCardStateChange` - `LUMINOUS-TRAP-MIB::lumDownloadComplete` - `LUMINOUS-TRAP-MIB::lumProvisionAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Luxn Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Luxn Inc SNMP Traps.mdx index 4dc3ce0b25..61a9296cd4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Luxn Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Luxn Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **285 trap definitions** from Luxn Inc across **1 MIB** into str - `LUXN-MIB::luxNVoadmDetectorFailureResolvedTrap` - `LUXN-MIB::luxNVoadmOutofRangeTrap` - `LUXN-MIB::luxNVoadmOutofRangeResolvedTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Madge Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Madge Networks Inc SNMP Traps.mdx index 23af4c2e27..ec3a6d46ba 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Madge Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Madge Networks Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **14 trap definitions** from Madge Networks Inc across **2 MIBs* - `MADGECAU-MIB::wrapStateChange` - `MADGECAU-MIB::lamPortDisabled` - `MADGECAU-MIB::mCaufanSpeedFailed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Maipu Electric Industrial Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Maipu Electric Industrial Co Ltd SNMP Traps.mdx index 9a25ac59cb..694f4853eb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Maipu Electric Industrial Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Maipu Electric Industrial Co Ltd SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **51 trap definitions** from Maipu Electric Industrial Co Ltd ac - `MAIPU-TRAPS::mpSysDown` - `MAIPU-TRAPS::mpTaskError` - `MAIPU-TRAPS::mpConfig` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Marc Hirsch SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Marc Hirsch SNMP Traps.mdx index 094ef98a7e..28a5663d04 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Marc Hirsch SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Marc Hirsch SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **498 trap definitions** from Marc Hirsch across **2 MIBs** into - `CPS6000-MIB::cps6000TrapDc1Faj` - `CPS6000-MIB::cps6000TrapDc1Fan` - `CPS6000-MIB::cps6000TrapDc1Vsf` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Associates Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Associates Inc SNMP Traps.mdx index ee7c78abab..d0e79b8a84 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Associates Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Associates Inc SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Mcafee Associates Inc across **1 MIB - `MCAFEE-MWG-MIB::trSystem` - `MCAFEE-MWG-MIB::trApplication` - `MCAFEE-MWG-MIB::trUser` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Formerly Secure Computing Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Formerly Secure Computing Corporation SNMP Traps.mdx index 2135baf6f0..05b14852e5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Formerly Secure Computing Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Formerly Secure Computing Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **11 trap definitions** from Mcafee Formerly Secure Computing Co - `SCC-SW-MIB::swNetTrafficThresholds` - `SCC-SW-MIB::swAttackAttempt` - `SCC-SW-MIB::swTeViolation` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Inc Formerly Network Associates Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Inc Formerly Network Associates Inc SNMP Traps.mdx index 0d13e7f8fd..2c1f4dedf6 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Inc Formerly Network Associates Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mcafee Inc Formerly Network Associates Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **93 trap definitions** from Mcafee Inc Formerly Network Associa - `TVD-MIB::mcafee-EVENT-FILECLEANED` - `TVD-MIB::mcafee-EVENT-FILECLEANERROR` - `TVD-MIB::mcafee-EVENT-FILEDELETED` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Media5 Corporation M5 Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Media5 Corporation M5 Technologies SNMP Traps.mdx index b000cb107b..16986eb58d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Media5 Corporation M5 Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Media5 Corporation M5 Technologies SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **9 trap definitions** from Media5 Corporation M5 Technologies a - `MX-MS-MIB::msTrapStatusInformation` - `MX-MS-MIB::msTrapStatusConfigFile` - `MX-CORNET-SYSTEM-MIB::corNetFaultManagementRebootTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mega System Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mega System Technologies Inc SNMP Traps.mdx index b9306043e8..69e02629f1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mega System Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mega System Technologies Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **62 trap definitions** from Mega System Technologies Inc across - `PROBE-MIB::probeTemperatureNormal` - `PROBE-MIB::probeHumidityOver` - `PROBE-MIB::probeHumidityDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Megapac SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Megapac SNMP Traps.mdx index c21d5e00a5..a38604a931 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Megapac SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Megapac SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **28 trap definitions** from Megapac across **1 MIB** into struc - `SATELCOM-MIB::configChange` - `SATELCOM-MIB::vcpConnect` - `SATELCOM-MIB::vcpDisconnect` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meinberg SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meinberg SNMP Traps.mdx index 82ec0da12e..15b536bb68 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meinberg SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meinberg SNMP Traps.mdx @@ -153,4 +153,3 @@ Netdata decodes **128 trap definitions** from Meinberg across **8 MIBs** into st - `MBG-SNMP-LT-MIB::mbgLtTrapServerBoot` - `MBG-SNMP-LT-MIB::mbgLtTrapReceiverNotResponding` - `MBG-SNMP-LT-MIB::mbgLtTrapReceiverNotSync` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Melco Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Melco Inc SNMP Traps.mdx index d2445dc5e1..4df18324b1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Melco Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Melco Inc SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Melco Inc across **1 MIB** into stru - `BUFFALO-NAS-MIB::nasErrorOccur` - `BUFFALO-NAS-MIB::nasInformationOccur` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mellanox Technologies Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mellanox Technologies Ltd SNMP Traps.mdx index 2ffecf3500..1d0951f74f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mellanox Technologies Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mellanox Technologies Ltd SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **48 trap definitions** from Mellanox Technologies Ltd across ** - `MELLANOX-EFM-MIB::cpuUtilHigh` - `MELLANOX-EFM-MIB::procUnexpectedExit` - `MELLANOX-EFM-MIB::unexpectedShutdown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Memotec Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Memotec Communications SNMP Traps.mdx index 58677dbedd..0d751c71cc 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Memotec Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Memotec Communications SNMP Traps.mdx @@ -157,4 +157,3 @@ Netdata decodes **23 trap definitions** from Memotec Communications across **12 - `CXMCVOX-MIB::cxMcVoxTrapDc` - `CXMCVOX-MIB::cxMcVoxHistoryTrap` - `CXIoHardware-MIB::cxIoHwCardTypeTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Memotec Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Memotec Inc SNMP Traps.mdx index d45079652a..f795e20d9c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Memotec Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Memotec Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **37 trap definitions** from Memotec Inc across **1 MIB** into s - `CLEARTRAC7-MIB::pvcDown` - `CLEARTRAC7-MIB::cardDown` - `CLEARTRAC7-MIB::connectionUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meraki Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meraki Networks Inc SNMP Traps.mdx index 8c72473e4c..7520625d97 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meraki Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meraki Networks Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **23 trap definitions** from Meraki Networks Inc across **1 MIB* - `MERAKI-CLOUD-CONTROLLER-MIB::deviceComesOnline` - `MERAKI-CLOUD-CONTROLLER-MIB::foreignAPDetected` - `MERAKI-CLOUD-CONTROLLER-MIB::cellularNetworkUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Merlin Gerin SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Merlin Gerin SNMP Traps.mdx index 2efdb503c4..8d25787137 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Merlin Gerin SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Merlin Gerin SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **68 trap definitions** from Merlin Gerin across **1 MIB** into - `MG-SNMP-UPS-MIB::upsmgBatteryReplacementIndicated` - `MG-SNMP-UPS-MIB::upsmgBatteryReplaceNotIndicated` - `MG-SNMP-UPS-MIB::upsmgAtLowBattery` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meru Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meru Networks SNMP Traps.mdx index f38b9f47b3..bb301fc0ce 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meru Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Meru Networks SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **102 trap definitions** from Meru Networks across **1 MIB** int - `MERU-WLAN-MIB::mwlTopoStaAtsModify` - `MERU-WLAN-MIB::mwlRogueApDetected` - `MERU-WLAN-MIB::mwlRogueApRemoved` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Metaswitch Networks Ltd Formerly Data Connection Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Metaswitch Networks Ltd Formerly Data Connection Ltd SNMP Traps.mdx index 0fddd3145b..1771b9815c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Metaswitch Networks Ltd Formerly Data Connection Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Metaswitch Networks Ltd Formerly Data Connection Ltd SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Metaswitch Networks Ltd Formerly Dat - `METASWITCH-MIB::alarmTrap` - `METASWITCH-MIB::alarmShortTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Metro Ethernet Forum SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Metro Ethernet Forum SNMP Traps.mdx index 252f600986..a98c12b8e3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Metro Ethernet Forum SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Metro Ethernet Forum SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Metro Ethernet Forum across **2 MIBs - `MEF-SOAM-PM-MIB::mefSoamDmSessionStartStopAlarm` - `MEF-SOAM-PM-MIB::mefSoamPmThresholdCrossingAlarm` - `MEF-UNI-EVC-MIB::mefServiceConfigurationAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Micom Communication Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Micom Communication Corporation SNMP Traps.mdx index c34d41b661..d13663169f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Micom Communication Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Micom Communication Corporation SNMP Traps.mdx @@ -158,4 +158,3 @@ Netdata decodes **209 trap definitions** from Micom Communication Corporation ac - `MICOM-NODE-MIB::mcmEventQueueEntry` - `MICOM-NODE-MIB::mcmEventCallFail` - `MICOM-NODE-MIB::mcmEventDDSInService` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microchip Technology Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microchip Technology Inc SNMP Traps.mdx index 15f54af279..e79b9d3dec 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microchip Technology Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microchip Technology Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Microchip Technology Inc across **2 - `CONTROLBOX-TH332-MIB::temperatureTrap` - `CONTROLBOX-TH332-MIB::humidityTrap` - `CONTROLBOX-TH332-MIB::dewpointTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Micromuse Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Micromuse Inc SNMP Traps.mdx index 4bd56862af..165c395182 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Micromuse Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Micromuse Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **9 trap definitions** from Micromuse Inc across **1 MIB** into - `OMNI-MIB::omniOK` - `OMNI-MIB::omniNotResponding` - `OMNI-MIB::omniResponding` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microsens GmbH Co KG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microsens GmbH Co KG SNMP Traps.mdx index d10534bf45..910c6d4310 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microsens GmbH Co KG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microsens GmbH Co KG SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **116 trap definitions** from Microsens GmbH Co KG across **2 MI - `MS-SWITCH30-MIB::temperatureLevelChangeNotification` - `MS-SWITCH30-MIB::errorcountNotification` - `MS-SWITCH30-MIB::underOverVoltageNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microsoft SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microsoft SNMP Traps.mdx index 1f602375ad..5a00ae761d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microsoft SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microsoft SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **15 trap definitions** from Microsoft across **2 MIBs** into st - `EVNTAGENT-MIB::w32NtpInaccessible` - `EVNTAGENT-MIB::w32SystemStartup` - `EVNTAGENT-MIB::w32SystemShutdown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microwave Data Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microwave Data Systems SNMP Traps.mdx index 0f427bf402..026ba3d492 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microwave Data Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microwave Data Systems SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Microwave Data Systems across **1 MIB ### Sample decoded traps - `MDS-EVENT-MIB::mdsEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microwave Networks Incorporated SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microwave Networks Incorporated SNMP Traps.mdx index 55af0e397f..56036eba6e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microwave Networks Incorporated SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Microwave Networks Incorporated SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Microwave Networks Incorporated acro - `MNI-PROTEUS-AMT-MIB::mnPrNotificationMinorAlarmSet` - `MNI-PROTEUS-AMT-MIB::mnPrNotificationInfoAlarmSet` - `MNI-PROTEUS-AMT-MIB::mnPrFNotificationMajorAlarmSet` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mikom GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mikom GmbH SNMP Traps.mdx index 0bf548d0aa..63f0c042bf 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mikom GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mikom GmbH SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **7 trap definitions** from Mikom GmbH across **1 MIB** into str - `AIMOS::aimosAlarmChanged` - `AIMOS::aimosAlarmCleared` - `AIMOS::aimosAlarmListRebuildInitiated` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mikrotik SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mikrotik SNMP Traps.mdx index 449032deed..ee789b9d57 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mikrotik SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mikrotik SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Mikrotik across **1 MIB** into struc - `MIKROTIK-MIB::mtxrTrap` - `MIKROTIK-MIB::mtxrTemperatureException` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Milestone Systems A S SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Milestone Systems A S SNMP Traps.mdx index f5989aed9c..a7436961a0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Milestone Systems A S SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Milestone Systems A S SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **64 trap definitions** from Milestone Systems A S across **1 MI - `MILESTONESYS-RECORDER-MIB::motionStopped` - `MILESTONESYS-RECORDER-MIB::inputActivated` - `MILESTONESYS-RECORDER-MIB::inputChanged` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mimosa Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mimosa Networks Inc SNMP Traps.mdx index a4a4845775..bb20d43bb8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mimosa Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mimosa Networks Inc SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Mimosa Networks Inc across **1 MIB** - `MIMOSA-NETWORKS-BASE-MIB::mimosaTempWarning` - `MIMOSA-NETWORKS-BASE-MIB::mimosaTempNormal` - `MIMOSA-NETWORKS-BASE-MIB::mimosaEthernetSpeedChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mission Critical Software Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mission Critical Software Inc SNMP Traps.mdx index 9858c21df9..1ec04fa5c7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mission Critical Software Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mission Critical Software Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **16 trap definitions** from Mission Critical Software Inc acros - `MISSION-CRITICAL-MIB::gathererServiceGoingDown` - `MISSION-CRITICAL-MIB::gathererServiceComingUp` - `MISSION-CRITICAL-MIB::eemRedAlert` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mitel Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mitel Corp SNMP Traps.mdx index 9ed01b7937..1fd8621817 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mitel Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mitel Corp SNMP Traps.mdx @@ -156,4 +156,3 @@ Netdata decodes **19 trap definitions** from Mitel Corp across **11 MIBs** into - `MITEL-IperaVoiceLAN-MIB::mitelIpera3000ShutdownAlarm` - `MITEL-IperaVoiceLAN-MIB::mitelIpera3000RestartCompleteAlarm` - `MITEL-IperaVoiceLAN-MIB::mitelIpera3000NotifResiltFirstSetFailover` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mitsubishi Electric Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mitsubishi Electric Corporation SNMP Traps.mdx index 2bfdaea27f..18a1261f09 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mitsubishi Electric Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mitsubishi Electric Corporation SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Mitsubishi Electric Corporation acros ### Sample decoded traps - `R2000-MIB::fddiAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moca Multimedia Over Coax Alliance SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moca Multimedia Over Coax Alliance SNMP Traps.mdx index ac752b3b42..b865c124a4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moca Multimedia Over Coax Alliance SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moca Multimedia Over Coax Alliance SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Moca Multimedia Over Coax Alliance a - `MOCA11-MIB::mocaTrapAbovePhyThreshold` - `MOCA11-MIB::mocaTrapIfStatusChange` - `MOCA11-MIB::mocaTrapIfNumNodesChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Monet Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Monet Systems Inc SNMP Traps.mdx index 47d13624ba..e8e8c63c35 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Monet Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Monet Systems Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **30 trap definitions** from Monet Systems Inc across **1 MIB** - `TWTRAP-MIB::rptr-Port-Enabled` - `TWTRAP-MIB::rptr-Port-Disabled` - `TWTRAP-MIB::rptr-Port-Link-Up` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Monnit Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Monnit Corporation SNMP Traps.mdx index 336452a9d7..1d371b4f73 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Monnit Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Monnit Corporation SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **8 trap definitions** from Monnit Corporation across **3 MIBs** - `MONNIT-EGW-MIB::WD-report-alarm` - `MONNIT-EGW-MIB::WD-report-normal` - `EGW4MIB::EGW4NewSensorTraffic` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moser Baer AG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moser Baer AG SNMP Traps.mdx index c087264bd5..1229933939 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moser Baer AG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moser Baer AG SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Moser Baer AG across **1 MIB** into - `MOBANetClocksV2-MIB::mbnscTrapsAlarm` - `MOBANetClocksV2-MIB::mbnscTrapsAlive` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Motorola SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Motorola SNMP Traps.mdx index 80dd7fb45c..444da67dfa 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Motorola SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Motorola SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **34 trap definitions** from Motorola across **6 MIBs** into str - `WHISP-APS-MIB::whispRegFailure` - `WHISP-APS-MIB::whispDefKeyUsed` - `WHISP-APS-MIB::whispGPSInSync` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moxa Technologies Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moxa Technologies Co Ltd SNMP Traps.mdx index 4dfcc00389..f8657a85bf 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moxa Technologies Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Moxa Technologies Co Ltd SNMP Traps.mdx @@ -173,4 +173,3 @@ Netdata decodes **354 trap definitions** from Moxa Technologies Co Ltd across ** - `MOXA-EDS508-MIB::powerOff2OnTrap` - `MOXA-EDS508-MIB::trafficOverloadTrap` - `MOXA-EDS508-MIB::redundancyTopologyChangedTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mpb Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mpb Communications Inc SNMP Traps.mdx index 3f17c2113b..09a75c044a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mpb Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mpb Communications Inc SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Mpb Communications Inc across **1 MI - `MPBC-2RU-MIB::mpbc2RUTrapMajor` - `MPBC-2RU-MIB::mpbc2RUTrapMinor` - `MPBC-2RU-MIB::mpbc2RUTrapInformational` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mrv Communications In Reach Product Division SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mrv Communications In Reach Product Division SNMP Traps.mdx index 21c9523fc8..0f54403dfc 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mrv Communications In Reach Product Division SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mrv Communications In Reach Product Division SNMP Traps.mdx @@ -153,4 +153,3 @@ Netdata decodes **993 trap definitions** from Mrv Communications In Reach Produc - `ITOUCH-CHARACTER-MIB::contactClosureChanged` - `ITOUCH-CHARACTER-MIB::powerAlarmFuseBankA` - `ITOUCH-CHARACTER-MIB::powerAlarmFuseBankB` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mts Allstream Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mts Allstream Inc SNMP Traps.mdx index 74169cc4d4..81a568fe5a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mts Allstream Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mts Allstream Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Mts Allstream Inc across **1 MIB** in ### Sample decoded traps - `MTSALLSTREAM-MIB::allstreamForwardCICEventTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mylex Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mylex Corporation SNMP Traps.mdx index c6545cd491..14722a9212 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mylex Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mylex Corporation SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **96 trap definitions** from Mylex Corporation across **2 MIBs** - `MYLEXRAID-MIB::fCArrayAssistant3` - `MYLEXRAID-MIB::fCArrayAssistant4` - `MYLEXRAID-MIB::fCArrayAssistant5` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mystrotv SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mystrotv SNMP Traps.mdx index d38b858903..e7355c76e6 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mystrotv SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Mystrotv SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Mystrotv across **1 MIB** into struc - `MYSTRO-VIDEOPORT-MIB::addService` - `MYSTRO-VIDEOPORT-MIB::removeService` - `MYSTRO-VIDEOPORT-MIB::updateService` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nag LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nag LLC SNMP Traps.mdx index d85da4c294..ef40727c00 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nag LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nag LLC SNMP Traps.mdx @@ -154,4 +154,3 @@ Netdata decodes **348 trap definitions** from Nag LLC across **9 MIBs** into str - `SNR-ERD-2::signalContact3Alarm` - `SNR-ERD-2::signalContact3Ok` - `SNR-ERD-2::voltageSignalAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nagios SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nagios SNMP Traps.mdx index 78b9583a18..201198d670 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nagios SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nagios SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Nagios across **1 MIB** into structu - `NAGIOS-NOTIFY-MIB::nHostNotify` - `NAGIOS-NOTIFY-MIB::nSvcEvent` - `NAGIOS-NOTIFY-MIB::nSvcNotify` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nasuni Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nasuni Corporation SNMP Traps.mdx index ded1a13e59..81728c57d3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nasuni Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nasuni Corporation SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Nasuni Corporation across **1 MIB** i ### Sample decoded traps - `NASUNI-FILER-MIB::filerTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nateks Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nateks Ltd SNMP Traps.mdx index 9e76df3aae..0a05106362 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nateks Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nateks Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Nateks Ltd across **1 MIB** into str - `NATEKS-MIB::tftpStatusChange` - `NATEKS-MIB::macFilterViolation` - `NATEKS-MIB::dInStateChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/National Standardization Committee Of Radio Television SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/National Standardization Committee Of Radio Television SNMP Traps.mdx index 7a874833c9..ab1f358efe 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/National Standardization Committee Of Radio Television SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/National Standardization Committee Of Radio Television SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **8 trap definitions** from National Standardization Committee O - `NSCRTV-HFCEMS-COMMON-MIB::hfcWarmStart` - `NSCRTV-HFCEMS-OPTICALSWITCH-MIB::osSwitchEvent` - `NSCRTV-EPON-ALARM-MGM-MIB::eponAlarmNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nbase Switch Communication SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nbase Switch Communication SNMP Traps.mdx index 6b046950c6..5bac4b432f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nbase Switch Communication SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nbase Switch Communication SNMP Traps.mdx @@ -171,4 +171,3 @@ Netdata decodes **216 trap definitions** from Nbase Switch Communication across - `OA-PORT-LIN-MIB::oaPortLinStateDown` - `DEV-CFG-MIB::invalidPassword` - `DEV-CFG-MIB::wrongAccess` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nec Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nec Corporation SNMP Traps.mdx index 3e5ec7df90..32cd8982b7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nec Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nec Corporation SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **46 trap definitions** from Nec Corporation across **6 MIBs** i - `MMPF-MIB::supervisorLoginFailure` - `MMPF-MIB::supervisorExit` - `PICO-SMI::picoTemperatureFault` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Neoteris Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Neoteris Inc SNMP Traps.mdx index fc5941f295..657bd7fbb5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Neoteris Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Neoteris Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **38 trap definitions** from Neoteris Inc across **1 MIB** into - `PULSESECURE-PSG-MIB::iveMaxConcurrentUsersSignedIn` - `PULSESECURE-PSG-MIB::iveTooManyFailedLoginAttempts` - `PULSESECURE-PSG-MIB::externalAuthServerUnreachable` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Insight AB SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Insight AB SNMP Traps.mdx index e5c32f7fd5..e33e78ec89 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Insight AB SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Insight AB SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Net Insight AB across **1 MIB** into - `NETI-EVT-MIB::nevtAlarmMinor` - `NETI-EVT-MIB::nevtAlarmWarning` - `NETI-EVT-MIB::nevtAlarmIndeterminate` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Snmp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Snmp SNMP Traps.mdx index 2e642855d1..1a485aa0ea 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Snmp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Snmp SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **6 trap definitions** from Net Snmp across **4 MIBs** into stru - `NET-SNMP-AGENT-MIB::nsNotifyStart` - `NET-SNMP-AGENT-MIB::nsNotifyShutdown` - `NET-SNMP-AGENT-MIB::nsNotifyRestart` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net To Net Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net To Net Technologies SNMP Traps.mdx index 06b39900b6..2a70565729 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net To Net Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net To Net Technologies SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Net To Net Technologies across **1 M - `NTNTECH-NMS-TRAPS-V1-MIB::envTempExceeded-v1` - `NTNTECH-NMS-TRAPS-V1-MIB::invIfModPresentTrap-v1` - `NTNTECH-NMS-TRAPS-V1-MIB::invIfModRemovedTrap-v1` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Track GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Track GmbH SNMP Traps.mdx index 1cc39545fc..aac0360054 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Track GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Net Track GmbH SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **20 trap definitions** from Net Track GmbH across **2 MIBs** in - `NETTRACK-E3METER-SNMP-MIB::e3IpmCurrentNormal` - `NETTRACK-E3METER-SNMP-MIB::e3IpmCurrentWarnHigh` - `NETTRACK-E3METER-SNMP-MIB::e3IpmCurrentCritHigh` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netbotz SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netbotz SNMP Traps.mdx index c8c37b40ac..e85595e492 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netbotz SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netbotz SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **449 trap definitions** from Netbotz across **2 MIBs** into str - `NETBOTZ-MIB::netBotz-prd-bot-trap-clear` - `NETBOTZ-MIB::netBotz-prd-bot-offline-trap` - `NETBOTZ-MIB::netBotz-prd-bot-online-trap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netcomm Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netcomm Ltd SNMP Traps.mdx index 1e02cf32f4..5165842d99 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netcomm Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netcomm Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **99 trap definitions** from Netcomm Ltd across **1 MIB** into s - `DV2-MIB::linkChanged` - `DV2-MIB::psuChanged` - `DV2-MIB::configChanged` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netgear SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netgear SNMP Traps.mdx index 195b606cb6..8af14854de 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netgear SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netgear SNMP Traps.mdx @@ -186,4 +186,3 @@ Netdata decodes **338 trap definitions** from Netgear across **36 MIBs** into st - `GSM7312-SWITCHING-MIB::broadcastStormEndTrap` - `GSM7312-SWITCHING-MIB::linkFailureTrap` - `GSM7312-SWITCHING-MIB::vlanRequestFailureTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netline SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netline SNMP Traps.mdx index 01442760e5..17c3bb4439 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netline SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netline SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **10 trap definitions** from Netline across **1 MIB** into struc - `Cxr-connect-MIB::linkUp` - `Cxr-connect-MIB::authenticationFailure` - `Cxr-connect-MIB::comStart` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netpartner S R O SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netpartner S R O SNMP Traps.mdx index c066defdf7..a5dc269c86 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netpartner S R O SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netpartner S R O SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **22 trap definitions** from Netpartner S R O across **1 MIB** i - `IMCO-BIG-MIB::imco3TrapNewAlarm` - `IMCO-BIG-MIB::imco3TrapAlarmEnd` - `IMCO-BIG-MIB::imco3TrapAlarmOut1ON` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netquest Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netquest Corp SNMP Traps.mdx index 354037974b..7afd433968 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netquest Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netquest Corp SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **33 trap definitions** from Netquest Corp across **1 MIB** into - `LINK-PROBE-MIB::pvcRTD` - `LINK-PROBE-MIB::frChanUtilizeToDTE` - `LINK-PROBE-MIB::frChanUtilizeToDCE` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netrake Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netrake Corporation SNMP Traps.mdx index bd463507ef..098fd97763 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netrake Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netrake Corporation SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **32 trap definitions** from Netrake Corporation across **2 MIBs - `Netrake-MIB::chasBrdStateChangeTrap` - `Netrake-MIB::systemOperStateChangeTrap` - `Netrake-MIB::postAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netreality Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netreality Inc SNMP Traps.mdx index 821fb29743..a729121f64 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netreality Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netreality Inc SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Netreality Inc across **1 MIB** into - `NETREALITY-MIB::nrShortResources` - `NETREALITY-MIB::nrDiagnosticFailure` - `NETREALITY-MIB::nrDLCIRemove` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netscaler SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netscaler SNMP Traps.mdx index ce5f5f9f4a..d2d6241d90 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netscaler SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netscaler SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **288 trap definitions** from Netscaler across **3 MIBs** into s - `NS-ROOT-MIB::cpuUtilization` - `NS-ROOT-MIB::linkUp` - `NS-ROOT-MIB::linkDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netscreen Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netscreen Technologies Inc SNMP Traps.mdx index 6b3a0166da..63c0d2d8e8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netscreen Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netscreen Technologies Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **28 trap definitions** from Netscreen Technologies Inc across * - `NETSCREEN-TRAP-MIB::netscreenTrapSw` - `NETSCREEN-TRAP-MIB::netscreenTrapTrf` - `NETSCREEN-TRAP-MIB::netscreenTrapVpn` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netstar Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netstar Inc SNMP Traps.mdx index 031348acc0..4880d92d1e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netstar Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Netstar Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **53 trap definitions** from Netstar Inc across **1 MIB** into s - `NETSTAR-MIB::grFanFailure` - `NETSTAR-MIB::grCardDown` - `NETSTAR-MIB::grCardUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Alchemy Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Alchemy Inc SNMP Traps.mdx index 6b38bc7b67..243b545fd3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Alchemy Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Alchemy Inc SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Network Alchemy Inc across **1 MIB** - `NETWORK-ALCHEMY-CLUSTER-MIB::clusterMemberJoin` - `NETWORK-ALCHEMY-CLUSTER-MIB::clusterMemberLeft` - `NETWORK-ALCHEMY-CLUSTER-MIB::clusterMemberBecameMaster` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Appliance Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Appliance Corporation SNMP Traps.mdx index 07420ec546..156143da44 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Appliance Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Appliance Corporation SNMP Traps.mdx @@ -157,4 +157,3 @@ Netdata decodes **1065 trap definitions** from Network Appliance Corporation acr - `NETAPP-MIB::dhmNoticePFAEvent` - `NETAPP-MIB::emergencyTrap` - `NETAPP-MIB::alertTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Technologies Inc SNMP Traps.mdx index dadd1f0869..9bbebd3e22 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Network Technologies Inc SNMP Traps.mdx @@ -156,4 +156,3 @@ Netdata decodes **3510 trap definitions** from Network Technologies Inc across * - `NETWORK-TECHNOLOGIES-GLOBAL-REG::humiditySensor1Trap` - `NETWORK-TECHNOLOGIES-GLOBAL-REG::humiditySensor2Trap` - `NETWORK-TECHNOLOGIES-GLOBAL-REG::dryContactSensor1Trap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Networth Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Networth Inc SNMP Traps.mdx index 92ac7a3618..a70e36a4d9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Networth Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Networth Inc SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Networth Inc across **1 MIB** into s - `NETWORTH-FASTPIPES-MIB::nwfpPowerSupplyUp` - `NETWORTH-FASTPIPES-MIB::nwfpfanDown` - `NETWORTH-FASTPIPES-MIB::nwfpfanUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/New Oak Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/New Oak Communications Inc SNMP Traps.mdx index 8ae5f4a123..bf68dea3e7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/New Oak Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/New Oak Communications Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **71 trap definitions** from New Oak Communications Inc across * - `CONTIVITY-TRAPS-V1-MIB::hardDisk1StatusTrap` - `CONTIVITY-TRAPS-V1-MIB::hardDisk0StatusTrap` - `CONTIVITY-TRAPS-V1-MIB::memoryUsageTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Newbridge Networks Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Newbridge Networks Corporation SNMP Traps.mdx index 50fe6816aa..44c355e93d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Newbridge Networks Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Newbridge Networks Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **14 trap definitions** from Newbridge Networks Corporation acro - `NNC-NOTIFICATION-MIB::nncExtNotifSoftwareTT` - `NNC-NOTIFICATION-MIB::nncExtNotifCommTT` - `NNC-NOTIFICATION-MIB::nncExtNotifUserTT` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Newtec Cy SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Newtec Cy SNMP Traps.mdx index b55c958d48..1449a7d5cd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Newtec Cy SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Newtec Cy SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Newtec Cy across **1 MIB** into struc ### Sample decoded traps - `NEWTEC-NOTIFICATION-MIB::ntcNotifAlReport` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nextnet SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nextnet SNMP Traps.mdx index 36f731c982..4510368fb4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nextnet SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nextnet SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Nextnet across **1 MIB** into structu ### Sample decoded traps - `NEXTNET-MIB::nextnetTraps` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nice Systems Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nice Systems Ltd SNMP Traps.mdx index 968838b4bb..25bf9232ae 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nice Systems Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nice Systems Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **350 trap definitions** from Nice Systems Ltd across **1 MIB** - `Nice-MIB-II::clsRecordIsInsertedToDB` - `Nice-MIB-II::clsCommunicationProblemWithLogger` - `Nice-MIB-II::clsCommunicationToLoggerIsOK` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nimble Storage SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nimble Storage SNMP Traps.mdx index 64cdfab2c2..888c3ee929 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nimble Storage SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nimble Storage SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **448 trap definitions** from Nimble Storage across **1 MIB** in - `NIMBLE-TRAP-MIB::nimbleDsdSpaceCrit0103Deprecated` - `NIMBLE-TRAP-MIB::nimbleDsdSpaceUtilizationHigh` - `NIMBLE-TRAP-MIB::nimbleDsdSpaceUtilizationOk` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Alcatel Lucent SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Alcatel Lucent SNMP Traps.mdx index d9d3e801ca..a62bcebc2c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Alcatel Lucent SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Alcatel Lucent SNMP Traps.mdx @@ -277,4 +277,3 @@ Netdata decodes **5948 trap definitions** from Nokia Formerly Alcatel Lucent acr - `TSDIM-SUPPORT-MIB::tsdimAVCNotification` - `TSDIM-SUPPORT-MIB::tsdimStateChangeNotification` - `TSDIM-SUPPORT-MIB::tsdimAlertNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Coriant R D GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Coriant R D GmbH SNMP Traps.mdx index e4113955f8..1b9b33e67f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Coriant R D GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Coriant R D GmbH SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **46 trap definitions** from Nokia Formerly Coriant R D GmbH acr - `TNMS-NBI-MIB::enmsProxyStateChangeTrap` - `TNMS-NBI-MIB::enmsNEObjectCreationTrap` - `TNMS-NBI-MIB::enmsNEObjectDeletionTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Infinera Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Infinera Corp SNMP Traps.mdx index 0ef5ac594f..919b2724f2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Infinera Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Infinera Corp SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **10 trap definitions** from Nokia Formerly Infinera Corp across - `INFINERA-NOTIFICATION-MIB::infnAdminEventNotification` - `INFINERA-NOTIFICATION-MIB::infnAuditEventNotification` - `INFINERA-NOTIFICATION-MIB::infnSecurityEventNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Lumentis AB SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Lumentis AB SNMP Traps.mdx index bd59ea9222..d212d78a33 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Lumentis AB SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Lumentis AB SNMP Traps.mdx @@ -158,4 +158,3 @@ Netdata decodes **52 trap definitions** from Nokia Formerly Lumentis AB across * - `LUM-ALARM-MIB::alarmNotificationIndeterminate` - `LUM-ALARM-MIB::alarmNotificationWarning` - `LUM-ALARM-MIB::alarmNotificationMinor` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Transmode Systems AB SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Transmode Systems AB SNMP Traps.mdx index 928a0a5da5..3b60a55d4c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Transmode Systems AB SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Formerly Transmode Systems AB SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **93 trap definitions** from Nokia Formerly Transmode Systems AB - `TRANSMODE1100::trm6001TrapExternal3` - `TRANSMODE1100::trm6001CascadeFailure` - `TRANSMODE1100::trm9xxxTrapFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Networks Formerly Nokia Siemens Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Networks Formerly Nokia Siemens Networks SNMP Traps.mdx index d98a716e93..9443f23386 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Networks Formerly Nokia Siemens Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia Networks Formerly Nokia Siemens Networks SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **7 trap definitions** from Nokia Networks Formerly Nokia Siemen - `NETGUARD-STREAM-TRAPS-MIB::ssmHAActiveOutrankingPeer` - `NETGUARD-STREAM-TRAPS-MIB::ssmHAActiveUserRequest` - `NETGUARD-STREAM-TRAPS-MIB::ssmHAInactiveOutrankedByPeer` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia SNMP Traps.mdx index 0f86db2fb3..89290639f0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nokia SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **42 trap definitions** from Nokia across **6 MIBs** into struct - `NOKIA-IPSO-SYSTEM-MIB::systemTrapConfigurationSaveChange` - `NOKIA-IPSO-SYSTEM-MIB::systemTrapLowDiskSpace` - `NOKIA-IPSO-SYSTEM-MIB::systemTrapNoDiskSpace` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nomadix SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nomadix SNMP Traps.mdx index 334ac4f0be..2f5987a75f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nomadix SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nomadix SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Nomadix across **1 MIB** into struct - `NOMADIX-MIB::subCapacityReached` - `NOMADIX-MIB::nseReboot` - `NOMADIX-MIB::nseRadCapacityReached` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Northern Telecom Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Northern Telecom Ltd SNMP Traps.mdx index 868c7db575..7dcb47c194 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Northern Telecom Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Northern Telecom Ltd SNMP Traps.mdx @@ -168,4 +168,3 @@ Netdata decodes **169 trap definitions** from Northern Telecom Ltd across **23 M - `Nortel-Magellan-Passport-AlarmMIB::minorAlarm` - `Nortel-Magellan-Passport-AlarmMIB::warningAlarm` - `Nortel-Magellan-Passport-AlarmMIB::clearedAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Novell SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Novell SNMP Traps.mdx index 9889147d5f..0f37ce1489 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Novell SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Novell SNMP Traps.mdx @@ -161,4 +161,3 @@ Netdata decodes **676 trap definitions** from Novell across **16 MIBs** into str - `LANtern-MIB::duplicateIPAddr` - `LANtern-MIB::utilizationAlarm` - `LANtern-MIB::errorsAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Novelsat SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Novelsat SNMP Traps.mdx index b63f456638..dcad21bb53 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Novelsat SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Novelsat SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Novelsat across **1 MIB** into struct ### Sample decoded traps - `NOVELSAT-COMMON-MIB::nsCommonMonitorEventNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsc Communications Siberia Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsc Communications Siberia Ltd SNMP Traps.mdx index 41f7649a26..1d9d983b5a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsc Communications Siberia Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsc Communications Siberia Ltd SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **8 trap definitions** from Nsc Communications Siberia Ltd acros - `EMUX-TRAPS-V1-MIB::tdmLinkUpV1` - `EMUX-TRAPS-V1-MIB::trapDyingGasp` - `EMUX-MIB::e1LinkChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsc SNMP Traps.mdx index 8041bb93a1..af08e0f5cc 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsc SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **23 trap definitions** from Nsc across **3 MIBs** into structur - `NSC-BORDERGUARD-TRAP::nscBorderGuardBadFileSystem` - `NSC-BORDERGUARD-TRAP::nscBorderGuardSoftFault` - `NSCTRAP::protocolBound` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsi Software SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsi Software SNMP Traps.mdx index 27715e0f21..008ee670c9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsi Software SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nsi Software SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **40 trap definitions** from Nsi Software across **1 MIB** into - `DTMIB::dttrapLicenseViolationStartingSource` - `DTMIB::dttrapLicenseViolationOnNetwork` - `DTMIB::dttrapSourceStarted` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nutanix Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nutanix Inc SNMP Traps.mdx index 54020f3f2f..713f52759d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nutanix Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nutanix Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **860 trap definitions** from Nutanix Inc across **1 MIB** into - `NUTANIX-MIB::ntxTrapClusterRunningOutOfStorageCapacitylowRunway` - `NUTANIX-MIB::ntxTrapClusterRunningOutOfCPUCapacitylowRunway` - `NUTANIX-MIB::ntxTrapNodeRunningOutOfCPUCapacitylowRunway` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nxnetworks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nxnetworks SNMP Traps.mdx index ea13d17fe9..f35c0820f4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nxnetworks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Nxnetworks SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **4 trap definitions** from Nxnetworks across **3 MIBs** into st - `PROTEON-MIB::proElsTrapV2` - `CHANNEL-CHANGE-MIB::channelChangeCAFailed` - `DECserver-Accounting-MIB::acctThresholdExceeded` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Occam Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Occam Networks Inc SNMP Traps.mdx index 324a4d41b9..6b6c269dee 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Occam Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Occam Networks Inc SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **11 trap definitions** from Occam Networks Inc across **3 MIBs* - `OCCAM-SENSOR-MIB::occamExtAlarmRaised` - `OCCAM-SENSOR-MIB::occamExtAlarmCleared` - `OCCAM-SHELF-MIB::cardPresenceNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Octel Communications Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Octel Communications Corp SNMP Traps.mdx index a120d3f8e5..88ca724ec3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Octel Communications Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Octel Communications Corp SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Octel Communications Corp across **1 ### Sample decoded traps - `VMX-DIAL::hwerrTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oid 0 SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oid 0 SNMP Traps.mdx index 4c4f8e503e..e6fc57b512 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oid 0 SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oid 0 SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **9 trap definitions** from Oid 0 across **5 MIBs** into structu - `H323MC-MIB::conferenceTermination` - `H323-GATEKEEPER-MIB::h323GatekeeperStart` - `H323-GATEKEEPER-MIB::h323GatekeeperGoingDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oid 1 SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oid 1 SNMP Traps.mdx index 403a8d1c48..a98dbc906b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oid 1 SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oid 1 SNMP Traps.mdx @@ -197,4 +197,3 @@ Netdata decodes **216 trap definitions** from Oid 1 across **47 MIBs** into stru - `DC-RTM-MIB::rtmPathActivityChange` - `DC-ISIS-MIB::isisDatabaseOverload` - `DC-ISIS-MIB::isisManualAddressDrops` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oki Data Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oki Data Corporation SNMP Traps.mdx index 8d05864654..b9939f8c12 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oki Data Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oki Data Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Oki Data Corporation across **1 MIB* - `OKIDATA-MIB::trapNoPrinterAttached` - `OKIDATA-MIB::trapPrinterTonerLow` - `OKIDATA-MIB::trapPrinterPaperOut` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Olicom A S SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Olicom A S SNMP Traps.mdx index 2673ab816b..6c47bf51be 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Olicom A S SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Olicom A S SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **17 trap definitions** from Olicom A S across **2 MIBs** into s - `Olicom-crossfireAtmSwitch-MIB::restart` - `Olicom-crossfireAtmSwitch-MIB::globalCongestionTrap` - `Olicom-crossfireAtmSwitch-MIB::globalInvalidCellRateTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Omnitron Systems Technology SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Omnitron Systems Technology SNMP Traps.mdx index a545f34bd7..4d1bc364af 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Omnitron Systems Technology SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Omnitron Systems Technology SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **201 trap definitions** from Omnitron Systems Technology across - `OMNITRON-TRAP-MIB::icModlinkdown` - `OMNITRON-TRAP-MIB::icModlinkup` - `OMNITRON-TRAP-MIB::icModdipsw` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/One4Net GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/One4Net GmbH SNMP Traps.mdx index d230dbf30a..bde84dde86 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/One4Net GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/One4Net GmbH SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from One4Net GmbH across **1 MIB** into s - `B100-MIB::rSstateChange` - `B100-MIB::hAstateChange` - `B100-MIB::licenseExceeded` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oneaccess SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oneaccess SNMP Traps.mdx index b9133a07b2..1846e30e0a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oneaccess SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oneaccess SNMP Traps.mdx @@ -156,4 +156,3 @@ Netdata decodes **38 trap definitions** from Oneaccess across **11 MIBs** into s - `ONEACCESS-NAT-MIB::oacNatNotificationWarningSessionReachingLimit` - `ONEACCESS-ACL-MIB::oacAclNotificationMaximumSessionReached` - `ONEACCESS-ACL-MIB::oacAclNotificationWarningSessionReachingLimit` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Onstream Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Onstream Networks SNMP Traps.mdx index 3f4618e729..0eaa6fa351 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Onstream Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Onstream Networks SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Onstream Networks across **1 MIB** i - `LX-10-MIB::alarmOnReport` - `LX-10-MIB::alarmOffReport` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Opencode Systems Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Opencode Systems Ltd SNMP Traps.mdx index 89c890da05..ab42917d3d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Opencode Systems Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Opencode Systems Ltd SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **224 trap definitions** from Opencode Systems Ltd across **7 MI - `OPCD-USSDB-MIB-V2::ocussdbrowser-Crash` - `OPCD-USSDB-MIB-V2::ocussdbrowser-Crash-Canceled` - `OPCD-USSDB-MIB-V2::ocussdbrowser-Smsc-Conn` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Opengear Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Opengear Inc SNMP Traps.mdx index 7608fff977..c61c63b005 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Opengear Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Opengear Inc SNMP Traps.mdx @@ -158,4 +158,3 @@ Netdata decodes **101 trap definitions** from Opengear Inc across **13 MIBs** in - `OGTRAPv2-MIB::ogSerialUserNotification` - `OGTRAPv2-MIB::ogHostPingNotification` - `OGTRAPv2-MIB::ogHostServiceNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Openvision Technologies Limited SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Openvision Technologies Limited SNMP Traps.mdx index 86d87def04..01696e76fd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Openvision Technologies Limited SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Openvision Technologies Limited SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **26 trap definitions** from Openvision Technologies Limited acr - `VRTS-SNMP-MIBv1::nbuExtEvent` - `VRTS-SNMP-MIBv1::dbBackupFailed` - `VRTS-SNMP-MIBv1::dbBackupIsDisabled` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oplink Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oplink Communications Inc SNMP Traps.mdx index 3b80b8782f..4fc2daec35 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oplink Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oplink Communications Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **28 trap definitions** from Oplink Communications Inc across ** - `OPLINK-BTI-OPS-MIB::oplinkemuFanRemove` - `OPLINK-BTI-OPS-MIB::oplinkemuFanInsert` - `OPLINK-BTI-OPS-MIB::oplinkemuPowerRemove` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Access Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Access Inc SNMP Traps.mdx index 24803b46f8..987de2363e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Access Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Access Inc SNMP Traps.mdx @@ -162,4 +162,3 @@ Netdata decodes **193 trap definitions** from Optical Access Inc across **17 MIB - `OA-EFRM-CPE-MIB::oaEfmCpeEventLinkFault` - `OA-EFRM-CPE-MIB::oaEfmCpeEventErrSymbolPeriod` - `OA-EFRM-CPE-MIB::oaEfmCpeEventErrFrame` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Data Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Data Systems SNMP Traps.mdx index 51f759c253..fca2696255 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Data Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Data Systems SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Optical Data Systems across **1 MIB* - `ODSLANBlazer7000-MIB::lanBlazer7000TemperatureTrap` - `ODSLANBlazer7000-MIB::lanBlazer7000ResourceTrap` - `ODSLANBlazer7000-MIB::lanBlazer7000FanTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Transmission Labs Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Transmission Labs Inc SNMP Traps.mdx index 64c8341144..fd364ebd5b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Transmission Labs Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Optical Transmission Labs Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Optical Transmission Labs Inc across ### Sample decoded traps - `ONS15501-MIB::ons15501GenericNotificationTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oracle SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oracle SNMP Traps.mdx index 55e9d24bea..2891771881 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oracle SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Oracle SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **7 trap definitions** from Oracle across **4 MIBs** into struct - `ORAINTERCHANGE-MIB::oraCmanagerStateChange` - `ORACLE-AGENT-MIB::oraAgentEventOcc` - `ORACLE-ENTERPRISE-MANAGER-4-MIB::oraEM4Alert` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Os Nexus Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Os Nexus Inc SNMP Traps.mdx index 0f5afcc3ca..6f42400ce0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Os Nexus Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Os Nexus Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Os Nexus Inc across **1 MIB** into st ### Sample decoded traps - `QUANTASTOR-SYS-STATS::quantastor-notif` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Overland Data Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Overland Data Inc SNMP Traps.mdx index 589aa7ccb2..c3f86beb34 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Overland Data Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Overland Data Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **12 trap definitions** from Overland Data Inc across **1 MIB** - `OVERLAND-NEXTGEN::eventHardFault` - `OVERLAND-NEXTGEN::eventSlaveFailed` - `OVERLAND-NEXTGEN::eventPowerSupplyFailed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/P Cube Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/P Cube Ltd SNMP Traps.mdx index c4f32581e4..ffe2e06136 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/P Cube Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/P Cube Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **45 trap definitions** from P Cube Ltd across **1 MIB** into st - `PCUBE-SE-MIB::operationalStatusFailureTrap` - `PCUBE-SE-MIB::systemResetTrap` - `PCUBE-SE-MIB::chassisTempAlarmOnTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Broadband Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Broadband Communications SNMP Traps.mdx index f490a256ad..5aad78f91c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Broadband Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Broadband Communications SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **11 trap definitions** from Pacific Broadband Communications ac - `PBC-CMTS-MIB::pbcCmtsChassisNotification` - `PBC-CMTS-MIB::pbcCmtsSoftwareNotification` - `PBC-CMTS-MIB::pbcCmtsAccessNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Broadbank Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Broadbank Networks SNMP Traps.mdx index dbb27f7fc0..c66a581a2c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Broadbank Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Broadbank Networks SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **138 trap definitions** from Pacific Broadbank Networks across - `PBN-MIB::module17` - `PBN-MIB::module18` - `PBN-MIB::module19` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Softworks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Softworks Inc SNMP Traps.mdx index ffa1ef56f8..502c23d446 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Softworks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pacific Softworks Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **124 trap definitions** from Pacific Softworks Inc across **1 M - `IBM-TS3500-MIBv1::ibm3584Trap003` - `IBM-TS3500-MIBv1::ibm3584Trap004` - `IBM-TS3500-MIBv1::ibm3584Trap005` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Packeteer Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Packeteer Inc SNMP Traps.mdx index 9e03e5741e..5e43910c42 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Packeteer Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Packeteer Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **13 trap definitions** from Packeteer Inc across **1 MIB** into - `PACKETEER-MIB::psAlarmPowerSystemTwo` - `PACKETEER-MIB::psAlarmFanOne` - `PACKETEER-MIB::psAlarmFanTwo` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Packetlight Networks Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Packetlight Networks Ltd SNMP Traps.mdx index 1109e8af08..fe68ce68a9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Packetlight Networks Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Packetlight Networks Ltd SNMP Traps.mdx @@ -167,4 +167,3 @@ Netdata decodes **42 trap definitions** from Packetlight Networks Ltd across **2 - `SL-TRAP-MIB::edfaStatusChangeV1` - `SL-TRAP-MIB::edfaControlModeChangeV1` - `SL-TRAP-MIB::optApsTrapSwitchoverV1` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Padtec Optical Components And Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Padtec Optical Components And Systems SNMP Traps.mdx index d3fd113634..b872f99ae5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Padtec Optical Components And Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Padtec Optical Components And Systems SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **12 trap definitions** from Padtec Optical Components And Syste - `METROPAD3::alarmAckNotification` - `METROPAD3::eventNotification` - `METROPAD3::isAliveNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pairgain Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pairgain Technologies Inc SNMP Traps.mdx index e276603488..932d6dcd16 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pairgain Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pairgain Technologies Inc SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **26 trap definitions** from Pairgain Technologies Inc across ** - `PAIRGAIN-DSLAM-TRAP-MIB::pgDSLAMchassisConfigChange` - `PAIRGAIN-DSLAM-TRAP-MIB::pgDSLAMchassisTemperatureThresholdExceeded` - `PAIRGAIN-DSLAM-TRAP-MIB::pgDSLAMHDSLESThresholdExceeded` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Palo Alto Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Palo Alto Networks SNMP Traps.mdx index 604c4809fa..00d0a5507a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Palo Alto Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Palo Alto Networks SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **665 trap definitions** from Palo Alto Networks across **2 MIBs - `PAN-TRAPS::panTrafficTrap` - `PAN-TRAPS::panThreatTrap` - `PAN-TRAPS::panHipMatchTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pan Dacom Direkt GmbH Formerly Pan Dacom Networking AG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pan Dacom Direkt GmbH Formerly Pan Dacom Networking AG SNMP Traps.mdx index f93f1b415e..817b3dc542 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pan Dacom Direkt GmbH Formerly Pan Dacom Networking AG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pan Dacom Direkt GmbH Formerly Pan Dacom Networking AG SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **44 trap definitions** from Pan Dacom Direkt GmbH Formerly Pan - `SPEEDCARRIER-MIB::fanError` - `SPEEDCARRIER-MIB::fanOK` - `SPEEDCARRIER-MIB::powerFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pan Dacom Telekommunikations SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pan Dacom Telekommunikations SNMP Traps.mdx index f019af0d83..369808fc34 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pan Dacom Telekommunikations SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pan Dacom Telekommunikations SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **21 trap definitions** from Pan Dacom Telekommunikations across - `PANDATEL-MODEM-MIB::modemAdded` - `PANDATEL-MODEM-MIB::modemRemoved` - `PANDATEL-MODEM-MIB::portLoopEnabled` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Panasas Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Panasas Inc SNMP Traps.mdx index 443c015392..11463f2db3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Panasas Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Panasas Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **45 trap definitions** from Panasas Inc across **1 MIB** into s - `PANASAS-NOTIFY-MIB-V1::panNotifyHwCompPS1Incompatible` - `PANASAS-NOTIFY-MIB-V1::panNotifyHwCompPS1BadReplacement` - `PANASAS-NOTIFY-MIB-V1::panNotifyHwCompPS2BadReplacement` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Panduit Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Panduit Corp SNMP Traps.mdx index 91dbc7264e..eb9691f98f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Panduit Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Panduit Corp SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **10 trap definitions** from Panduit Corp across **2 MIBs** into - `PANDUIT-OLD-MIB::trapInformation` - `PANDUIT-OLD-MIB::trapCleared` - `PANDUIT-OLD-MIB::trapTest` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Papouch Elektronika SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Papouch Elektronika SNMP Traps.mdx index 6d0b898141..6fd2e2a262 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Papouch Elektronika SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Papouch Elektronika SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **2 trap definitions** from Papouch Elektronika across **2 MIBs* - `QUIDOS-MIB::temp-msg` - `Th2e-v01-MIB::temp-msg` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Paradyne SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Paradyne SNMP Traps.mdx index ff80e818bb..cb9696f5a1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Paradyne SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Paradyne SNMP Traps.mdx @@ -168,4 +168,3 @@ Netdata decodes **125 trap definitions** from Paradyne across **23 MIBs** into s - `HOTWIRE-XDSL-INTERFACE-MIB::xdslLinkUpDownTransitions` - `HOTWIRE-XDSL-INTERFACE-MIB::xdslPortSpeedLow` - `HOTWIRE-XDSL-INTERFACE-MIB::xdslMarginLow` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Parameter LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Parameter LLC SNMP Traps.mdx index bed25b4767..e089cc7c31 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Parameter LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Parameter LLC SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **287 trap definitions** from Parameter LLC across **3 MIBs** in - `RLE-FALCON-MIB::falconAccessGranted` - `RLE-FALCON-MIB::falconAccessDenied` - `RLE-FALCON-EM-MIB::falconAlarmEntryAdded` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pdu5 SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pdu5 SNMP Traps.mdx index fed4ab7d4a..b56ddf3274 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pdu5 SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pdu5 SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **17 trap definitions** from Pdu5 across **1 MIB** into structur - `SCHLEIFENBAUER-GENERIC-MIB::restarted` - `SCHLEIFENBAUER-GENERIC-MIB::userLogin` - `SCHLEIFENBAUER-GENERIC-MIB::userLogout` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pentair Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pentair Inc SNMP Traps.mdx index 33878bf252..16e775ed0a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pentair Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pentair Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **10 trap definitions** from Pentair Inc across **1 MIB** into s - `COMM-BOARD-MIB::startUpLowTempEV` - `COMM-BOARD-MIB::highTempAlarmEV` - `COMM-BOARD-MIB::lowTempAlarmEV` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Peribit Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Peribit Networks SNMP Traps.mdx index aa819a9828..76ba51d5fa 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Peribit Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Peribit Networks SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **40 trap definitions** from Peribit Networks across **2 MIBs** - `JUNIPER-WX-COMMON-MIB::jnxWxCommonEventPowerSupplyOk` - `JUNIPER-WX-COMMON-MIB::jnxWxCommonEventLicenseExpired` - `JUNIPER-WX-COMMON-MIB::jnxWxCommonEventThruputLimitExceeded` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Periphonics Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Periphonics Corporation SNMP Traps.mdx index 53b8be0dd6..febc87c18a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Periphonics Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Periphonics Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **10 trap definitions** from Periphonics Corporation across **1 - `PERIPHONICS-VRU-NETWORK-MIB::notifyLineAppStateChg` - `PERIPHONICS-VRU-NETWORK-MIB::notifySpanStateChg` - `PERIPHONICS-VRU-NETWORK-MIB::notifyHostStateChg` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Perle Systems Limited SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Perle Systems Limited SNMP Traps.mdx index 3beff6a19f..9af032e5ab 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Perle Systems Limited SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Perle Systems Limited SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **267 trap definitions** from Perle Systems Limited across **2 M - `PERLE-IOLAN-SDS-MIB::sdsMIBIoLineInputDCDAlarm` - `PERLE-IOLAN-SDS-MIB::sdsMIBIoLineInputCTSAlarm` - `PERLE-IOLAN-SDS-MIB::sdsMIBIoAnalogInputAlarmSeverityLevel1` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phihong USA SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phihong USA SNMP Traps.mdx index 921b8cdee7..c0f28ee0f1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phihong USA SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phihong USA SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Phihong USA across **1 MIB** into st - `PHIHONG-PoE-MIB::poePortOverloadTrap` - `PHIHONG-PoE-MIB::poePortDiscoveryFailTrap` - `PHIHONG-PoE-MIB::poePortClassificationFailTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Philips Communication D Entreprise Claude Lubin SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Philips Communication D Entreprise Claude Lubin SNMP Traps.mdx index fca9f4a4c5..a228ffe81e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Philips Communication D Entreprise Claude Lubin SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Philips Communication D Entreprise Claude Lubin SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **9 trap definitions** from Philips Communication D Entreprise C - `PCE-MIB::frxStateChange` - `PCE-MIB::frxNodeStateChange` - `PCE-MIB::frxLineStateChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phobos Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phobos Corporation SNMP Traps.mdx index ed23e9950e..261eb1bc57 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phobos Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phobos Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **7 trap definitions** from Phobos Corporation across **1 MIB** - `SONICWALL-SSL-MIB::sslTpsChangeHi` - `SONICWALL-SSL-MIB::sslTpsChangeLo` - `SONICWALL-SSL-MIB::sslTotalConnectsChangeHi` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenix Contact GmbH Co KG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenix Contact GmbH Co KG SNMP Traps.mdx index f123cf262a..3c381100c3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenix Contact GmbH Co KG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenix Contact GmbH Co KG SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **26 trap definitions** from Phoenix Contact GmbH Co KG across * - `FL-MGD-INFRASTRUCT-MIB::trapFWConf` - `FL-MGD-INFRASTRUCT-MIB::trapPowerSupply` - `FL-MGD-INFRASTRUCT-MIB::trapSecurityPort` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenix Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenix Technologies Inc SNMP Traps.mdx index e3f7ae664f..ef0a60402d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenix Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenix Technologies Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **16 trap definitions** from Phoenix Technologies Inc across **1 - `ROMPILOT-MIB::rpDiagResetTrap` - `ROMPILOT-MIB::rpIDEResetTrap` - `ROMPILOT-MIB::rpBootTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenixtec Power Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenixtec Power Co Ltd SNMP Traps.mdx index e3b40ddee8..ce484961ca 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenixtec Power Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Phoenixtec Power Co Ltd SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **263 trap definitions** from Phoenixtec Power Co Ltd across **3 - `XPPC-MIB::upsDiagnosticsFailed` - `XPPC-MIB::upsDischarged` - `XPPC-MIB::upsOnBattery` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Picturetel Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Picturetel Corporation SNMP Traps.mdx index a304048480..a4e393f838 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Picturetel Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Picturetel Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **32 trap definitions** from Picturetel Corporation across **1 M - `PICTURETEL-VCS-MIB::pictureTelTrapAgentStarted` - `PICTURETEL-VCS-MIB::pictureTelTrapAgentShutdown` - `PICTURETEL-VCS-MIB::pictureTelTrapH320IncomingCall` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Plaintree Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Plaintree Systems Inc SNMP Traps.mdx index ce40ea0c65..23da3831e0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Plaintree Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Plaintree Systems Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Plaintree Systems Inc across **1 MIB* ### Sample decoded traps - `PLAINTREE-SWITCH-MIB::switchTouched` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Planet Technology Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Planet Technology Corp SNMP Traps.mdx index 6c13086329..e61e1009f8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Planet Technology Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Planet Technology Corp SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **50 trap definitions** from Planet Technology Corp across **1 M - `DIGIPDU-MIB::inFeedHighCurrentTrap` - `DIGIPDU-MIB::inFeedLowCurrentTrap` - `DIGIPDU-MIB::inFeedBranchOverloadTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Platform Computing Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Platform Computing Corporation SNMP Traps.mdx index 21cc83009a..6f14e55484 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Platform Computing Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Platform Computing Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **9 trap definitions** from Platform Computing Corporation acros - `LSF-SNMP-MIB::lsfSbdDown` - `LSF-SNMP-MIB::lsfHostUnlicensed` - `LSF-SNMP-MIB::lsfMasterElect` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Plexcom Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Plexcom Inc SNMP Traps.mdx index 7a8b3577f5..e5fbfb6ccd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Plexcom Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Plexcom Inc SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Plexcom Inc across **1 MIB** into st - `PLEXCOM-MIB::plxPanicMesgTrap` - `PLEXCOM-MIB::plxGenericHubTrap` - `PLEXCOM-MIB::plxSecurityViolationTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Polycom Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Polycom Inc SNMP Traps.mdx index 31038fdcca..e0944dfc2b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Polycom Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Polycom Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **339 trap definitions** from Polycom Inc across **2 MIBs** into - `POLYCOM-RMX-MIB::rmxNoIpServiceParamsAlarmFault` - `POLYCOM-RMX-MIB::rmxTaskTerminatedAlarmFault` - `POLYCOM-RMX-MIB::rmxCfgChangedAlarmFault` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Power Distribution Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Power Distribution Inc SNMP Traps.mdx index 59810a476e..737f17b741 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Power Distribution Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Power Distribution Inc SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Power Distribution Inc across **1 MI - `DIRISBCMS::pb1AlarmSummary` - `DIRISBCMS::pb2AlarmSummary` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powerdsine SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powerdsine SNMP Traps.mdx index d1defc5cd5..6f2312782a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powerdsine SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powerdsine SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Powerdsine across **1 MIB** into str - `MICROSEMI-PDSINE-MIB::powerBackupStatusNotification` - `MICROSEMI-PDSINE-MIB::internalPowerSourceStatusNotification` - `MICROSEMI-PDSINE-MIB::externalPowerSourceStatusNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powershield Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powershield Ltd SNMP Traps.mdx index 2b8d9f086f..7b679956c4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powershield Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powershield Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **28 trap definitions** from Powershield Ltd across **1 MIB** in - `PS-POWERSHIELD-MIB::psAlarmMonoblockVoltageVariation` - `PS-POWERSHIELD-MIB::psAlarmMonoblockVoltageIdle` - `PS-POWERSHIELD-MIB::psAlarmStringVoltageChargeDischarge` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powertek Limited SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powertek Limited SNMP Traps.mdx index 83fdfeea59..f117cd1330 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powertek Limited SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Powertek Limited SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **372 trap definitions** from Powertek Limited across **4 MIBs** - `SPS2v1-MIB::pduSystemRestart` - `SPS2v1-MIB::pduResetToDefault` - `SPS2v1-MIB::pduSystemLogClear` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Premier Network Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Premier Network Co Ltd SNMP Traps.mdx index a378523ea2..ef6362f924 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Premier Network Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Premier Network Co Ltd SNMP Traps.mdx @@ -172,4 +172,3 @@ Netdata decodes **202 trap definitions** from Premier Network Co Ltd across **27 - `UBIQUOSS-INTERFACE-MIB::ubiPortOperStatusChangeNotification` - `UBIQUOSS-INTERFACE-MIB::ubiPortAdminStatusChangeNotification` - `UBIQUOSS-INTERFACE-MIB::ubiPortBlockStatusChangeNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Printer Working Group SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Printer Working Group SNMP Traps.mdx index bfccf6458f..bb62ba6350 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Printer Working Group SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Printer Working Group SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Printer Working Group across **1 MIB* ### Sample decoded traps - `PWG-IMAGING-COUNTER-MIB::icAlertV2Trap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Prominet Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Prominet Corporation SNMP Traps.mdx index 159afac45c..2f095959dd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Prominet Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Prominet Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Prominet Corporation across **1 MIB* - `PROMINET-MIB::promTemperatureTrap` - `PROMINET-MIB::promResourceTrap` - `PROMINET-MIB::promFanTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Promise Technology Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Promise Technology Inc SNMP Traps.mdx index 60c90f4691..3e52294c14 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Promise Technology Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Promise Technology Inc SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **75 trap definitions** from Promise Technology Inc across **3 M - `FASTTRAK-MIB::trpDiskDown` - `FASTTRAK-MIB::trpDiskOffline` - `FASTTRAK-MIB::trpDiskPlugin` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Protection One Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Protection One Inc SNMP Traps.mdx index 30fc60996f..d625566bbc 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Protection One Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Protection One Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **27 trap definitions** from Protection One Inc across **1 MIB** - `RMCU::trap-analog-over2` - `RMCU::trap-analog-over3` - `RMCU::trap-analog-over4` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Proxim Wireless Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Proxim Wireless Inc SNMP Traps.mdx index 3cffe25ec8..2b226e7e97 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Proxim Wireless Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Proxim Wireless Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **57 trap definitions** from Proxim Wireless Inc across **1 MIB* - `PROXIM-MIB::wirelessInterfaceInvalidRegDomain` - `PROXIM-MIB::wirelessInterfaceWorldModeCCNotSet` - `PROXIM-MIB::wirelessInterfaceChannelChanged` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pulizzi Engineering Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pulizzi Engineering Inc SNMP Traps.mdx index 2587b5db22..ad769b7885 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pulizzi Engineering Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pulizzi Engineering Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **10 trap definitions** from Pulizzi Engineering Inc across **1 - `EATON-EPDU-PU-SW-MIB::notifyVoltageThreshold` - `EATON-EPDU-PU-SW-MIB::notifyTempSensorThreshold` - `EATON-EPDU-PU-SW-MIB::notifyHumidSensorThreshold` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pulse Power And Measurement Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pulse Power And Measurement Ltd SNMP Traps.mdx index 2ad7686197..4dbeff1d79 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pulse Power And Measurement Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pulse Power And Measurement Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **46 trap definitions** from Pulse Power And Measurement Ltd acr - `PPM-IGNIS-V1TRAPS-MIB::minorAlarm` - `PPM-IGNIS-V1TRAPS-MIB::minorCleared` - `PPM-IGNIS-V1TRAPS-MIB::agcAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pure Storage SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pure Storage SNMP Traps.mdx index ef33418f90..9882e2c7ca 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pure Storage SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Pure Storage SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Pure Storage across **1 MIB** into s - `PURESTORAGE-MIB::pureInfoTrap` - `PURESTORAGE-MIB::pureWarningTrap` - `PURESTORAGE-MIB::pureCriticalTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qlogic SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qlogic SNMP Traps.mdx index 47d898117d..d619e6cda2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qlogic SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qlogic SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **2 trap definitions** from Qlogic across **2 MIBs** into struct - `QLGC-QLASPTrap-MIB::failoverEvent` - `QLGC-MP-MIB::qlgcMPStatusChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qnap Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qnap Systems Inc SNMP Traps.mdx index 1aeac8a9d7..dde51d92f4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qnap Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qnap Systems Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **6 trap definitions** from Qnap Systems Inc across **2 MIBs** i - `NAS-MIB::eventError` - `QTS-MIB::eventInform` - `QTS-MIB::eventWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qsan Technology Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qsan Technology Inc SNMP Traps.mdx index 8bb58aa284..567e17a18a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qsan Technology Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qsan Technology Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **292 trap definitions** from Qsan Technology Inc across **1 MIB - `QSAN-SNMP-MIB::evtid-hdd-jbod-readerr` - `QSAN-SNMP-MIB::evtid-hdd-writeerr` - `QSAN-SNMP-MIB::evtid-hdd-jbod-writeerr` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qtech LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qtech LLC SNMP Traps.mdx index 3c69683d58..d368b603bd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qtech LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qtech LLC SNMP Traps.mdx @@ -220,4 +220,3 @@ Netdata decodes **360 trap definitions** from Qtech LLC across **70 MIBs** into - `QTECH-GBNPlatformOAM-MIB::snmpNotifyTypeSaveConfiguration` - `QTECH-GBNPlatformOAMSyslog-MIB::syslogTrap` - `QTECH-GBNPlatformGNLink-MIB::ggmpClientPortLoop` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qualix Group Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qualix Group Inc SNMP Traps.mdx index b8a1977dbd..e8ebbc0eb5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qualix Group Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Qualix Group Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Qualix Group Inc across **1 MIB** int ### Sample decoded traps - `LEGATO-CLUSTER-MIB::legatoClusterUserTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quanta Computer Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quanta Computer Inc SNMP Traps.mdx index 8e3f8461f7..a562d778e1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quanta Computer Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quanta Computer Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **38 trap definitions** from Quanta Computer Inc across **4 MIBs - `SWITCHING-MIB::broadcastStormEndTrap` - `SWITCHING-MIB::linkFailureTrap` - `SWITCHING-MIB::vlanRequestFailureTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Bridge SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Bridge SNMP Traps.mdx index a26a1ecd63..64338f1765 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Bridge SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Bridge SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **21 trap definitions** from Quantum Bridge across **3 MIBs** in - `QBSYS-SYSTEM-MIB::qbSysModuleDown` - `QBSYS-SYSTEM-MIB::qbSysModuleInserted` - `QBSYS-SYSTEM-MIB::qbSysModuleRemoved` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Corp Formerly Pathlight Technology Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Corp Formerly Pathlight Technology Inc SNMP Traps.mdx index 53a6c67c6c..98cf93d495 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Corp Formerly Pathlight Technology Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Corp Formerly Pathlight Technology Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **87 trap definitions** from Quantum Corp Formerly Pathlight Tec - `SANMgrV1-MIB::ssaUidAddedEvent` - `SANMgrV1-MIB::ssaUidRemovedEvent` - `SANMgrV1-MIB::ssaWebReconfiguredEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Corporation Formerly Advanced Digital Information Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Corporation Formerly Advanced Digital Information Corporation SNMP Traps.mdx index 9c1cf0b9f8..75192cc30c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Corporation Formerly Advanced Digital Information Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Quantum Corporation Formerly Advanced Digital Information Corporation SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **158 trap definitions** from Quantum Corporation Formerly Advan - `ADIC-INTELLIGENT-STORAGE-MIB::componentAdded` - `ADIC-INTELLIGENT-STORAGE-MIB::componentRemoved` - `ADIC-INTELLIGENT-STORAGE-MIB::productLibraryClassChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Racktivity SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Racktivity SNMP Traps.mdx index 3b549f605e..e40093b620 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Racktivity SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Racktivity SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **25 trap definitions** from Racktivity across **1 MIB** into st - `ES-RACKTIVITY-MIB::errorRaised` - `ES-RACKTIVITY-MIB::errorValueTooHighCleared` - `ES-RACKTIVITY-MIB::errorValueTooLowCleared` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Racom S R O SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Racom S R O SNMP Traps.mdx index ef3c453dca..42dfcd6b89 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Racom S R O SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Racom S R O SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **37 trap definitions** from Racom S R O across **2 MIBs** into - `RAY-MIB::airWdog` - `RAY-MIB::tempAlarm` - `RAY-MIB::powerAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rad Data Communications Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rad Data Communications Ltd SNMP Traps.mdx index bcbea328c4..b95ee5c76a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rad Data Communications Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rad Data Communications Ltd SNMP Traps.mdx @@ -187,4 +187,3 @@ Netdata decodes **409 trap definitions** from Rad Data Communications Ltd across - `RAD-EthIf-MIB::erpPortStateChange` - `RAD-EthIf-MIB::oamEfmRemoteLoopback` - `RAD-EthIf-MIB::oamEfmRemoteLoopbackOff` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Radwin Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Radwin Ltd SNMP Traps.mdx index 9324d9a589..ab850be607 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Radwin Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Radwin Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **110 trap definitions** from Radwin Ltd across **1 MIB** into s - `RADWIN-MIB-WINLINK1000::bitFailedAlarm` - `RADWIN-MIB-WINLINK1000::wrongConfigurationLoadedAlarm` - `RADWIN-MIB-WINLINK1000::lanPort1DisconnectedAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rapid City Communication SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rapid City Communication SNMP Traps.mdx index b7e572dc4d..7309c880d7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rapid City Communication SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rapid City Communication SNMP Traps.mdx @@ -156,4 +156,3 @@ Netdata decodes **305 trap definitions** from Rapid City Communication across ** - `RAPID-CITY::rcIpBgpTmpAfEstablishedNotification` - `RAPID-CITY::rcIpBgpTmpAfBackwardTransitionNotification` - `RAPID-CITY::rcnFdbProtectViolation` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rapidstream Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rapidstream Inc SNMP Traps.mdx index a71fdc9c16..c3f4247e5e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rapidstream Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rapidstream Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **10 trap definitions** from Rapidstream Inc across **2 MIBs** i - `RAPID-SYSTEM-CONFIG-MIB::rsSnmpShutdown` - `RAPID-IPSEC-SA-MON-MIB-EXT::rsEspAuthFailureTrap` - `RAPID-IPSEC-SA-MON-MIB-EXT::rsAhAuthFailureTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Raptor Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Raptor Systems Inc SNMP Traps.mdx index 9e5a8ba02e..53a131182b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Raptor Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Raptor Systems Inc SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **2 trap definitions** from Raptor Systems Inc across **2 MIBs** - `RAPTOR-SNMPv1-MIB::raptorNotifyTrap` - `RAPTOR-SNMPv2-MIB::raptorNotifyTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Raritan Computer Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Raritan Computer Inc SNMP Traps.mdx index 1caee158f9..c0f8169bd4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Raritan Computer Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Raritan Computer Inc SNMP Traps.mdx @@ -154,4 +154,3 @@ Netdata decodes **389 trap definitions** from Raritan Computer Inc across **9 MI - `RARITANCC-MIB::ccUserLogin` - `RARITANCC-MIB::ccUserLogout` - `RARITANCC-MIB::ccSPortConnectionStarted` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rbb Rundfunk Berlin Brandenburg SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rbb Rundfunk Berlin Brandenburg SNMP Traps.mdx index 0fcf158f1d..b3e3518512 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rbb Rundfunk Berlin Brandenburg SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rbb Rundfunk Berlin Brandenburg SNMP Traps.mdx @@ -157,4 +157,3 @@ Netdata decodes **363 trap definitions** from Rbb Rundfunk Berlin Brandenburg ac - `IRT-DVBT-SINGLETRANSMITTER-MIB::dvbSTTransmitterOpModeEvent` - `IRT-DVBT-SINGLETRANSMITTER-MIB::dvbSTRFPresentEvent` - `IRT-DVBT-SINGLETRANSMITTER-MIB::dvbSTResetFaultEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Creek Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Creek Communications Inc SNMP Traps.mdx index 5ecb39a347..aa5d5e9019 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Creek Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Creek Communications Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Red Creek Communications Inc across - `REDCREEK-TRAP-MIB::rcFirmwareDownloadSucceded` - `REDCREEK-TRAP-MIB::rcFirmwareDownloadFailed` - `REDCREEK-TRAP-MIB::rcTunnelStatusThreshold` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Lion Controls N Tron SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Lion Controls N Tron SNMP Traps.mdx index 602618d528..7568b53d63 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Lion Controls N Tron SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Lion Controls N Tron SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Red Lion Controls N Tron across **1 M ### Sample decoded traps - `NTRON714FX6-MIB::ntronPowerChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Lion Controls Sixnet SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Lion Controls Sixnet SNMP Traps.mdx index 79bf9e44ca..8930a62327 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Lion Controls Sixnet SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Red Lion Controls Sixnet SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Red Lion Controls Sixnet across **1 - `SIXNET-MIB::swAuthenticationFailure` - `SIXNET-MIB::swAuthenticationSuccess` - `SIXNET-MIB::swLoopbackDetectionTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Redline Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Redline Communications Inc SNMP Traps.mdx index adc334cd63..1a6ca05f3d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Redline Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Redline Communications Inc SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **26 trap definitions** from Redline Communications Inc across * - `REDLINE-AN50-MIB::an50PswdChangeFailTrap` - `REDLINE-AN50-MIB::an50FirmwareConfigFailTrap` - `REDLINE-AN50-MIB::an50EepromCorruptedTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Redstone Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Redstone Communications Inc SNMP Traps.mdx index 5ec7209415..6f299b1b70 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Redstone Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Redstone Communications Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Redstone Communications Inc across * - `REDSTONE-RXSYS-MIB::rsRXSysTempFanStatusChange` - `REDSTONE-RXSYS-MIB::rsRXSysTempStatusChange` - `REDSTONE-FILE-XFER-MIB::rsFileXferTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Reltec Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Reltec Corporation SNMP Traps.mdx index 304127e133..d3431b4d3d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Reltec Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Reltec Corporation SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **90 trap definitions** from Reltec Corporation across **2 MIBs* - `VEC-MIBv5-9::psAlarmLowVoltage` - `VEC-MIBv5-9::psAlarmSystemHighVoltage1` - `VEC-MIBv5-9::psAlarmSystemHighVoltage2` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Research In Motion Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Research In Motion Ltd SNMP Traps.mdx index fd6f05ac72..1ac686d18a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Research In Motion Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Research In Motion Ltd SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **37 trap definitions** from Research In Motion Ltd across **2 M - `BLACKBERRYSERVER-MIB::besMailServerDownEvent` - `BLACKBERRYSERVER-MIB::besMDStoBESConnectionEvent` - `BLACKBERRYSERVER-MIB::besMDSStartStopEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Richard Hirschmann GmbH Co SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Richard Hirschmann GmbH Co SNMP Traps.mdx index a36f09d9ef..8a9b80de6c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Richard Hirschmann GmbH Co SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Richard Hirschmann GmbH Co SNMP Traps.mdx @@ -205,4 +205,3 @@ Netdata decodes **897 trap definitions** from Richard Hirschmann GmbH Co across - `HM2-LICENSE-MGMT-MIB::hm2LMFeatureChangeTrap` - `HM2-DEVMGMT-MIB::hm2SfpChangeTrap` - `HM2-DEVMGMT-MIB::hm2AutoDisablePortTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rittal GmbH Co KG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rittal GmbH Co KG SNMP Traps.mdx index 8e58290b13..60f2883770 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rittal GmbH Co KG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rittal GmbH Co KG SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **151 trap definitions** from Rittal GmbH Co KG across **5 MIBs* - `CMC-MIB::alarmFan1` - `CMC-MIB::alarmFan2` - `CMC-MIB::alarmVoltage` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverbed Technology Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverbed Technology Inc SNMP Traps.mdx index 29649c10ac..a98f2d63c5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverbed Technology Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverbed Technology Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **535 trap definitions** from Riverbed Technology Inc across **4 - `STEELHEAD-MIB::cpuUtil` - `STEELHEAD-MIB::pagingActivity` - `STEELHEAD-MIB::smartError` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverdelta Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverdelta Networks SNMP Traps.mdx index 84910fd860..64a6386c2c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverdelta Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverdelta Networks SNMP Traps.mdx @@ -154,4 +154,3 @@ Netdata decodes **102 trap definitions** from Riverdelta Networks across **9 MIB - `RDN-EVT-NOTIFICATIONS::rdnEvtMacrtrUnknownCase` - `RDN-EVT-NOTIFICATIONS::rdnEvtMacrtrMsgQReceiveFailure` - `RDN-EVT-NOTIFICATIONS::rdnEvtMacrtrRdbDefineTableFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverstone Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverstone Networks SNMP Traps.mdx index ab4dfa907c..53dc503dc9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverstone Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Riverstone Networks SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **23 trap definitions** from Riverstone Networks across **4 MIBs - `RIVERSTONE-LFAP-MIB::rsLfapQueueFull` - `RIVERSTONE-CONFIG-MIB::rsCfgActiveConfigChange` - `RIVERSTONE-CONFIG-MIB::rsCfgStartupConfigChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rnd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rnd SNMP Traps.mdx index ea08b9b46a..1e56726890 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rnd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rnd SNMP Traps.mdx @@ -164,4 +164,3 @@ Netdata decodes **217 trap definitions** from Rnd across **19 MIBs** into struct - `Dell-TRAPS-MIB::txOverflowHWFault` - `Dell-TRAPS-MIB::routeTableOverflow` - `RADWARE-MIB::fanNotWorking` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rogue Engineering Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rogue Engineering Inc SNMP Traps.mdx index 049b163e90..6bfd9fb5ad 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rogue Engineering Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rogue Engineering Inc SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Rogue Engineering Inc across **1 MIB - `Rogue-Engineering-Inc-Sentinel-Remote-IO-with-SNMP::trapInputLevel` - `Rogue-Engineering-Inc-Sentinel-Remote-IO-with-SNMP::trapSequenceInputLevel` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rohde Schwarz GmbH Co KG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rohde Schwarz GmbH Co KG SNMP Traps.mdx index 1ebbfcefe3..fea4dbd1ec 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rohde Schwarz GmbH Co KG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rohde Schwarz GmbH Co KG SNMP Traps.mdx @@ -159,4 +159,3 @@ Netdata decodes **289 trap definitions** from Rohde Schwarz GmbH Co KG across ** - `RS-XX8000-COMMON-MIB::ntpSyncFailed` - `RS-XX8000-DVB-TX-MIB::txSummaryFault` - `RS-XX8000-DVB-TX-MIB::txSummaryWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ross Video Limited SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ross Video Limited SNMP Traps.mdx index 7263b2a8a8..ffe5400b28 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ross Video Limited SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ross Video Limited SNMP Traps.mdx @@ -184,4 +184,3 @@ Netdata decodes **152 trap definitions** from Ross Video Limited across **34 MIB - `OPEN-GEAR-FRAME-MIB::openGearFrameAVRStateEvent` - `OPEN-GEAR-FRAME-MIB::openGearDataSafeStateEvent` - `OPEN-GEAR-FRAME-MIB::openGearPSU1StatusEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rtbrick Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rtbrick Inc SNMP Traps.mdx index 3394d30764..5292557793 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rtbrick Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Rtbrick Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Rtbrick Inc across **1 MIB** into str ### Sample decoded traps - `RTBRICK-SYSLOG-MIB::rtbrickSyslogTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruby Tech Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruby Tech Corp SNMP Traps.mdx index ada3515c19..7116c078e9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruby Tech Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruby Tech Corp SNMP Traps.mdx @@ -160,4 +160,3 @@ Netdata decodes **232 trap definitions** from Ruby Tech Corp across **15 MIBs** - `PRIVATETECH-GEPoEL2ESW12-MIB::gepoel2esw12Critical` - `PRIVATETECH-GEPoEL2ESW12-MIB::gepoel2esw12Error` - `PRIVATETECH-GEPoEL2ESW12-MIB::gepoel2esw12Warning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruckus Wireless Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruckus Wireless Inc SNMP Traps.mdx index 71a6f1e63b..15a2ec5d9b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruckus Wireless Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruckus Wireless Inc SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **483 trap definitions** from Ruckus Wireless Inc across **5 MIB - `RUCKUS-EVENT-MIB::ruckusEventSetErrorTrap` - `RUCKUS-EVENT-MIB::ruckusEventConnectTrap` - `RUCKUS-EVENT-MIB::ruckusEventDisconnectTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruggedcom Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruggedcom Inc SNMP Traps.mdx index a49ea6c148..6b50d1fc81 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruggedcom Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruggedcom Inc SNMP Traps.mdx @@ -154,4 +154,3 @@ Netdata decodes **57 trap definitions** from Ruggedcom Inc across **9 MIBs** int - `RUGGEDCOM-TRAPS-MIB::swUpgradeTrap` - `RUGGEDCOM-TRAPS-MIB::cfgChangeTrap` - `RUGGEDCOM-TRAPS-MIB::cfgChangeNoRevTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruijie Networks Co Ltd Formerly Start Network Technology Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruijie Networks Co Ltd Formerly Start Network Technology Co Ltd SNMP Traps.mdx index bd0d645430..ff939a6d2a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruijie Networks Co Ltd Formerly Start Network Technology Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ruijie Networks Co Ltd Formerly Start Network Technology Co Ltd SNMP Traps.mdx @@ -224,4 +224,3 @@ Netdata decodes **440 trap definitions** from Ruijie Networks Co Ltd Formerly St - `RAISECOM-V1-TRAP::stormViolationAlarm` - `RAISECOM-V1-TRAP::macNotification` - `RAISECOM-V1-TRAP::powerStateChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Node Attribution.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Node Attribution.mdx index 8b3ae8261d..bad81d749e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Node Attribution.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Node Attribution.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Relay Source Resolution.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Relay Source Resolution.mdx index 256eaa1e22..e73e59b853 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Relay Source Resolution.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Relay Source Resolution.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Reverse DNS Enrichment.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Reverse DNS Enrichment.mdx index be595c5907..77b71aa52f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Reverse DNS Enrichment.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/SNMP Trap Reverse DNS Enrichment.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Saf Tehnika SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Saf Tehnika SNMP Traps.mdx index 1ee98e536a..f003771839 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Saf Tehnika SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Saf Tehnika SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Saf Tehnika across **2 MIBs** into s - `SAF-ALARM-MIB::safAlarmActiveState` - `SAF-ALARM-MIB::safAlarmActiveTState` - `SAF-ALARM-MIB::safAlarmClearState` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Safran Trusted 4D Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Safran Trusted 4D Inc SNMP Traps.mdx index 4f6182a504..8ee046c8d5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Safran Trusted 4D Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Safran Trusted 4D Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **24 trap definitions** from Safran Trusted 4D Inc across **1 MI - `SPECTRACOM-XSYNC-MIB::ssEvtV2FrequencyError` - `SPECTRACOM-XSYNC-MIB::ssEvtV2FrequencyOK` - `SPECTRACOM-XSYNC-MIB::ssEvtV2UserMinorAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sagemcom Sas SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sagemcom Sas SNMP Traps.mdx index 53c4cd3d58..22228094a2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sagemcom Sas SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sagemcom Sas SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **3 trap definitions** from Sagemcom Sas across **2 MIBs** into - `PERFORMANCE-MIB::qualityTrap` - `LOG-MIB::logTrap` - `LOG-MIB::thresholdTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Salix Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Salix Technologies Inc SNMP Traps.mdx index 5ac022ded4..9c0aeaf875 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Salix Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Salix Technologies Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **14 trap definitions** from Salix Technologies Inc across **4 M - `SALIX-SYSTEM-MIB::salixSysSyncClockModeAlarm` - `SALIX-SYSTEM-MIB::salixSysSyncClockModeStateChange` - `SALIX-SYSTEM-MIB::salixSysFileSystemUnavailable` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Samlex America Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Samlex America Inc SNMP Traps.mdx index 2d06bbbf6d..a30b0db010 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Samlex America Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Samlex America Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Samlex America Inc across **1 MIB** i ### Sample decoded traps - `SAMLEXAMERICA-MIB::snmpTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Samsung Electronics Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Samsung Electronics Co Ltd SNMP Traps.mdx index 5408a9dab2..1e7802d771 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Samsung Electronics Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Samsung Electronics Co Ltd SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Samsung Electronics Co Ltd across **1 ### Sample decoded traps - `SAMSUNG-CLONING-MIB::scmCloningTrapResult` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sandvine Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sandvine Corporation SNMP Traps.mdx index 84c2517f52..56433ad0e7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sandvine Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sandvine Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **23 trap definitions** from Sandvine Corporation across **1 MIB - `PACKETLOGIC-TRAP-MIB::pl2TrapSystemStatsAlert` - `PACKETLOGIC-TRAP-MIB::pl2TrapSystemStatsAlert64` - `PACKETLOGIC-TRAP-MIB::pl2TrapSystemStatsAlertClear` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sangoma Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sangoma Technologies SNMP Traps.mdx index 1e3dabd1ad..ecb64d408c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sangoma Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sangoma Technologies SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **39 trap definitions** from Sangoma Technologies across **1 MIB - `Vega-MIB::fileServerUnknownError` - `Vega-MIB::fileDoesNotExist` - `Vega-MIB::recurFileServerGetError` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sap AG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sap AG SNMP Traps.mdx index 8986019108..4c7ff7edf2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sap AG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sap AG SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **84 trap definitions** from Sap AG across **1 MIB** into struct - `SAP-MIB::r3trapStateChange` - `SAP-MIB::r3trapSyslogIdNormal` - `SAP-MIB::r3trapSyslogIdWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Scannex Electronics Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Scannex Electronics Ltd SNMP Traps.mdx index 378a905bd0..970c66cb19 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Scannex Electronics Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Scannex Electronics Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **45 trap definitions** from Scannex Electronics Ltd across **1 - `SCANNEX-MIB::powerfailTrap` - `SCANNEX-MIB::ipchangeTrap` - `SCANNEX-MIB::heartbeatTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schechtertech LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schechtertech LLC SNMP Traps.mdx index 678a2acf0c..dabbf2cdf7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schechtertech LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schechtertech LLC SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Schechtertech LLC across **1 MIB** i - `TEMPERATUREALERT-MIB::taHighAlarm` - `TEMPERATUREALERT-MIB::taLowAlarm` - `TEMPERATUREALERT-MIB::taShutdown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schleifenbauer Products B.V. SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schleifenbauer Products B.V. SNMP Traps.mdx index 78f0a5f748..51f8a2a4e9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schleifenbauer Products B.V. SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schleifenbauer Products B.V. SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **10 trap definitions** from Schleifenbauer Products B.V. across - `SCHLEIFENBAUER-DATABUS-MIB::sdbDevSsInputCurrentAlertDetected` - `SCHLEIFENBAUER-DATABUS-MIB::sdbDevSsOutletCurrentAlertDetected` - `SCHLEIFENBAUER-DATABUS-MIB::sdbDevSsInputVoltageAlertDetected` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schmid Telecom AG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schmid Telecom AG SNMP Traps.mdx index 1fde73dc5f..b73b3e748a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schmid Telecom AG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schmid Telecom AG SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Schmid Telecom AG across **1 MIB** in ### Sample decoded traps - `PEGASUS-LEAN-TRAP-MIB::pegasusAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Electric Apc Netbotz SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Electric Apc Netbotz SNMP Traps.mdx index 9923c9e6ad..6b9e4ba011 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Electric Apc Netbotz SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Electric Apc Netbotz SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **172 trap definitions** from Schneider Electric Apc Netbotz acr - `NetBotz50-MIB::netBotzTempTooLow` - `NetBotz50-MIB::netBotzTempUnplugged` - `NetBotz50-MIB::netBotzTempErrorRTN` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Electric SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Electric SNMP Traps.mdx index 9cc38806ed..7f7b533bf8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Electric SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Electric SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Schneider Electric across **1 MIB** - `PM8ECCMIB::pm8OnBoardAlarmP1` - `PM8ECCMIB::pm8OnBoardAlarmP2` - `PM8ECCMIB::pm8OnBoardAlarmP3` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Koch Co Datensysteme GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Koch Co Datensysteme GmbH SNMP Traps.mdx index 280413e00c..e10242a49e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Koch Co Datensysteme GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Schneider Koch Co Datensysteme GmbH SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **13 trap definitions** from Schneider Koch Co Datensysteme GmbH - `SK-CONC-MIB::skfddiPortDisconnect` - `SK-CONC-MIB::skfddiPortReconnect` - `SK-GE-MIB::skGeSensorWarningLower` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Scte SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Scte SNMP Traps.mdx index a0cfecbb5c..75e925ef8b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Scte SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Scte SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **5 trap definitions** from Scte across **4 MIBs** into structur - `SCTE-HMS-COMMON-MIB::hmsWarmStart` - `SCTE-HMS-HE-COMMON-MIB::heCommonAlarmEvent` - `SCTE-HMS-HMTS-MIB::hmtsRegistrationFailedEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Seagate Technology SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Seagate Technology SNMP Traps.mdx index 12201c3826..24f0753e6f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Seagate Technology SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Seagate Technology SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Seagate Technology across **1 MIB** - `SEAGATESYSTEMTRAP-MIB::seagateEventErrorTrap` - `SEAGATESYSTEMTRAP-MIB::seagateEventCriticalTrap` - `SEAGATESYSTEMTRAP-MIB::seagateEventResolvedTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Securitymatrix Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Securitymatrix Inc SNMP Traps.mdx index 56fe9c28f9..b44ddb5cf3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Securitymatrix Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Securitymatrix Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Securitymatrix Inc across **1 MIB** i ### Sample decoded traps - `AirDefense-airCommand-MIB::airCommandAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Seh Computertechnik GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Seh Computertechnik GmbH SNMP Traps.mdx index 99deada07b..a649c72ddc 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Seh Computertechnik GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Seh Computertechnik GmbH SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Seh Computertechnik GmbH across **1 M ### Sample decoded traps - `SEH-PSRV-MIB::prtFault` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Senao International Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Senao International Co Ltd SNMP Traps.mdx index 72a670292d..63e5983dc1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Senao International Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Senao International Co Ltd SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **19 trap definitions** from Senao International Co Ltd across * - `ENGENIUS-MESH-MIB::userTrapsUserLogin` - `ENGENIUS-MESH-MIB::userTrapsUserLogout` - `ENGENIUS-MESH-MIB::systemTrapsSystemReboot` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sensoria Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sensoria Corporation SNMP Traps.mdx index 1b87aef1ae..4a0d309227 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sensoria Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sensoria Corporation SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Sensoria Corporation across **1 MIB* - `TRANZEO-ENROUTE-MUNIWIFI-MIB::enRouteConfigChange` - `TRANZEO-ENROUTE-MUNIWIFI-MIB::enRouteConfigReset` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sensu Enterprise SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sensu Enterprise SNMP Traps.mdx index 4c7dbb5ca7..65467879f4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sensu Enterprise SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sensu Enterprise SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **2 trap definitions** from Sensu Enterprise across **2 MIBs** i - `SENSU-ENTERPRISE-V1-MIB::sensuEnterpriseEventTrap` - `SENSU-ENTERPRISE-NOTIFY-MIB::sensuEnterpriseEventTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Server Technology Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Server Technology Inc SNMP Traps.mdx index 41360d3ee9..972ab18fc4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Server Technology Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Server Technology Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **40 trap definitions** from Server Technology Inc across **2 MI - `Sentry3-MIB::infeedLoadEvent` - `Sentry3-MIB::outletStatusEvent` - `Sentry3-MIB::outletLoadEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sgte Ies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sgte Ies SNMP Traps.mdx index fb5ec2625e..44e5954202 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sgte Ies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sgte Ies SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **31 trap definitions** from Sgte Ies across **1 MIB** into stru - `SGTE-MIB::aLiaisonJbus` - `SGTE-MIB::aTestEnCours` - `SGTE-MIB::aUBMin` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shanghai Baud Data Communication Development Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shanghai Baud Data Communication Development Corp SNMP Traps.mdx index 9cea7e4b07..b1956f1f49 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shanghai Baud Data Communication Development Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shanghai Baud Data Communication Development Corp SNMP Traps.mdx @@ -184,4 +184,3 @@ Netdata decodes **65 trap definitions** from Shanghai Baud Data Communication De - `BDCOM-REMOTE-PING-MIB::rPingNotification` - `BDCOM-FILTER-TRAP::bdFilterNotification` - `BDCOM-ETHERRING::bdEtherRingNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shanghai Meridian Technologies Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shanghai Meridian Technologies Co Ltd SNMP Traps.mdx index be12e29d25..d11828b07b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shanghai Meridian Technologies Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shanghai Meridian Technologies Co Ltd SNMP Traps.mdx @@ -167,4 +167,3 @@ Netdata decodes **37 trap definitions** from Shanghai Meridian Technologies Co L - `QTECH-NMS-REMOTE-PING-MIB::rPingNotification` - `QTECH-NMS-FILTER-TRAP::nmsFilterNotification` - `QTECH-NMS-ETHERRING::nmsEtherRingNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shasta Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shasta Networks SNMP Traps.mdx index 772091fca4..918e2a54d3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shasta Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shasta Networks SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **11 trap definitions** from Shasta Networks across **1 MIB** in - `SSG-5000-CHASSIS-MIB::ssg5000CardAlarmNotification` - `SSG-5000-CHASSIS-MIB::ssg5000PortAlarmNotification` - `SSG-5000-CHASSIS-MIB::ssg5000SSMAlarmNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen C Data Technology Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen C Data Technology Co Ltd SNMP Traps.mdx index 49c10fe750..54d976e2bd 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen C Data Technology Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen C Data Technology Co Ltd SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **43 trap definitions** from Shenzhen C Data Technology Co Ltd a - `XXX-MIB::shelf-psuA-On` - `XXX-MIB::shelf-psuA-Off` - `XXX-MIB::shelf-psuB-On` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen First Mile Communications Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen First Mile Communications Ltd SNMP Traps.mdx index 469f91a974..b20ff743ed 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen First Mile Communications Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen First Mile Communications Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **214 trap definitions** from Shenzhen First Mile Communications - `OnAccess2200-MIB::mc2200-card-Local-Tx-Up` - `OnAccess2200-MIB::mc2200-card-Local-Tx-Down` - `OnAccess2200-MIB::mc2200-card-Local-Fx-Up` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen Smartbyte Technology Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen Smartbyte Technology Co Ltd SNMP Traps.mdx index fab9dd21d4..090bb62cb7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen Smartbyte Technology Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shenzhen Smartbyte Technology Co Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Shenzhen Smartbyte Technology Co Ltd - `NMS-SYS-MIB::batteryRecover` - `NMS-SYS-MIB::fanFailure` - `NMS-SYS-MIB::fanNormal` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shiva Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shiva Corporation SNMP Traps.mdx index 35514a74b0..959de705f4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shiva Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Shiva Corporation SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **9 trap definitions** from Shiva Corporation across **5 MIBs** - `SHIVA-ACCT-MIB::acctMemoryAvailableTrap` - `SHIVA-ACCT-MIB::acctVolatileTrap` - `SHIVA-DMC-MIB::dmcModemDownTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siae Microelettronica S P A SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siae Microelettronica S P A SNMP Traps.mdx index 12cd403694..24def780d0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siae Microelettronica S P A SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siae Microelettronica S P A SNMP Traps.mdx @@ -153,4 +153,3 @@ Netdata decodes **14 trap definitions** from Siae Microelettronica S P A across - `SIAE-EQUIP-MIB::equipLOMDisconnected` - `SIAE-EQUIP-MIB::equipConfigChangeStatus` - `SIAE-EQUIP-MIB::equipManagerWakeUpNotify` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siemens AG Automation Drives SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siemens AG Automation Drives SNMP Traps.mdx index ba8efa8aeb..a457e2d4a6 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siemens AG Automation Drives SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siemens AG Automation Drives SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Siemens AG Automation Drives across - `SN-OSM-PRIV-MIB::snOsmStandbyActiveState` - `SN-OSM-PRIV-MIB::snOsmStandbyPassiveState` - `SN-OSM-PRIV-MIB::snOsmPowerLineDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siemens AG SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siemens AG SNMP Traps.mdx index 7716f753b4..4140cf0890 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siemens AG SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siemens AG SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **93 trap definitions** from Siemens AG across **6 MIBs** into s - `SIEMENS-HP4KHIM-MIB::internalErrorHimSubagent` - `SIEMENS-HP4KHIM-MIB::himDiscovSucc` - `SIEMENS-HP4KHIM-MIB::himDiscovErr` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sigma Network Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sigma Network Systems Inc SNMP Traps.mdx index ba75bfa819..1472f3edf3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sigma Network Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sigma Network Systems Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **35 trap definitions** from Sigma Network Systems Inc across ** - `CT-ELS10-MIB::els10-27PortFunctionsTrap` - `CT-ELS10-MIB::els10-27RxQueuesTrap` - `CT-ELS10-MIB::els10-27RxStormFlagTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sigur SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sigur SNMP Traps.mdx index c8d817d7a4..a92ff12cda 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sigur SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sigur SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Sigur across **1 MIB** into structur - `SIGUR-MIB::tamperStateInform` - `SIGUR-MIB::batteryStateInform` - `SIGUR-MIB::breakInInform` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siklu Communication Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siklu Communication Ltd SNMP Traps.mdx index caa2809321..b6106c76ea 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siklu Communication Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Siklu Communication Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **17 trap definitions** from Siklu Communication Ltd across **1 - `RADIO-BRIDGE-MIB::trapTemperatureInRange` - `RADIO-BRIDGE-MIB::trapSfpIn` - `RADIO-BRIDGE-MIB::trapSfpOut` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Silver Peak Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Silver Peak Systems Inc SNMP Traps.mdx index faf58926e2..34a2d61a54 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Silver Peak Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Silver Peak Systems Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Silver Peak Systems Inc across **1 MI ### Sample decoded traps - `SILVERPEAK-MGMT-MIB::spsNotifyAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sinclair Internetworking Services SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sinclair Internetworking Services SNMP Traps.mdx index 1b0875ccc8..a056aad003 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sinclair Internetworking Services SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sinclair Internetworking Services SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Sinclair Internetworking Services ac - `OPMANTEK-MIB::omkEvent` - `OPMANTEK-MIB::nmisEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sinetica SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sinetica SNMP Traps.mdx index 297604a66a..e7188c467d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sinetica SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sinetica SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **72 trap definitions** from Sinetica across **7 MIBs** into str - `NETCOM-MIB::netcomHumidityReturnToNormal` - `NETCOM-MIB::netcomLowTemperature` - `NETCOM-MIB::netcomHighTemperature` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sita Ads SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sita Ads SNMP Traps.mdx index 9fd3a99f65..7b977a44a2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sita Ads SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sita Ads SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **12 trap definitions** from Sita Ads across **5 MIBs** into str - `TIGER::tigIdle` - `MATIP-MIB::matipUserStateChange` - `MATIP-MIB::matipSessionStateChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Skyhigh Security LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Skyhigh Security LLC SNMP Traps.mdx index 1fecb7cdac..10f0062b73 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Skyhigh Security LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Skyhigh Security LLC SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Skyhigh Security LLC across **1 MIB* - `SKYHIGHSECURITY-SWG-MIB::trSystem` - `SKYHIGHSECURITY-SWG-MIB::trApplication` - `SKYHIGHSECURITY-SWG-MIB::trUser` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Smartoptics AS SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Smartoptics AS SNMP Traps.mdx index 2be56c958d..1bbc349333 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Smartoptics AS SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Smartoptics AS SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **10 trap definitions** from Smartoptics AS across **2 MIBs** in - `MSERIES-ALARM-MIB::alarmNotificationMinor` - `MSERIES-ALARM-MIB::alarmNotificationMajor` - `MSERIES-ALARM-MIB::alarmNotificationCritical` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Smc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Smc SNMP Traps.mdx index 3a1a4282e9..8daa30c412 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Smc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Smc SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Smc across **1 MIB** into structured - `SMC6152L2-MIB::swPowerStatusChangeTrap` - `SMC6152L2-MIB::swPortSecurityTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Snarlsnmp Dynamic Web Application Monitor Developers Group SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Snarlsnmp Dynamic Web Application Monitor Developers Group SNMP Traps.mdx index a03bd15fc3..926bcb9d47 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Snarlsnmp Dynamic Web Application Monitor Developers Group SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Snarlsnmp Dynamic Web Application Monitor Developers Group SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Snarlsnmp Dynamic Web Application Mo - `SNARLSNMP-MIB::snarlsnmpWarning` - `SNARLSNMP-MIB::snarlsnmpCritical` - `SNARLSNMP-MIB::snarlsnmpSuspended` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Socomec Sicon Ups SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Socomec Sicon Ups SNMP Traps.mdx index 6f6adf9428..e5b99f17e0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Socomec Sicon Ups SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Socomec Sicon Ups SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **383 trap definitions** from Socomec Sicon Ups across **6 MIBs* - `SOCOMECUPS-ADICOM-MIB::adicomUpsTrapBatteryLow` - `SOCOMECUPS-ADICOM-MIB::adicomUpsTrapPowerRestored` - `SOCOMECUPS-ADICOM-MIB::adicomUpsTrapImminentStop` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonicwall Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonicwall Inc SNMP Traps.mdx index 56ffe737c3..2e10a1dc60 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonicwall Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonicwall Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **12 trap definitions** from Sonicwall Inc across **2 MIBs** int - `SONICWALL-FIREWALL-TRAP-MIB::swFwTrapBlkWebSite` - `SONICWALL-FIREWALL-TRAP-MIB::swFwTrapIpsecTunnel` - `SONICWALL-FIREWALL-TRAP-MIB::swFwTrapWlanIDS` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonix Communications Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonix Communications Ltd SNMP Traps.mdx index bf54ee8d8e..f7ac804df1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonix Communications Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonix Communications Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **9 trap definitions** from Sonix Communications Ltd across **1 - `REMOTEACCESS-MIB::isdnLinkUpEvent` - `REMOTEACCESS-MIB::q931FailCauseEvent` - `REMOTEACCESS-MIB::dass2FailCauseEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonus Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonus Networks Inc SNMP Traps.mdx index 4077c20664..3a7eeede06 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonus Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sonus Networks Inc SNMP Traps.mdx @@ -175,4 +175,3 @@ Netdata decodes **571 trap definitions** from Sonus Networks Inc across **30 MIB - `FRX-MIB::configChangedTrap` - `FRX-MIB::nodeCongestedTrap` - `FRX-MIB::portInstalledTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sophos PLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sophos PLC SNMP Traps.mdx index e6f4c1093e..67f83c7a3c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sophos PLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sophos PLC SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Sophos PLC across **1 MIB** into stru ### Sample decoded traps - `SFOS-FIREWALL-MIB::sfosNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spectra Logic SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spectra Logic SNMP Traps.mdx index 49cec592e5..ba24c4622d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spectra Logic SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spectra Logic SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **11 trap definitions** from Spectra Logic across **1 MIB** into - `SPECTRA-LOGIC-STRATA-MIB::nDataDriveStatus` - `SPECTRA-LOGIC-STRATA-MIB::nFanStatus` - `SPECTRA-LOGIC-STRATA-MIB::nPoolStatus` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spidcom Technologies S.A. SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spidcom Technologies S.A. SNMP Traps.mdx index 8b4bd2f56a..1aca36f3bc 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spidcom Technologies S.A. SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spidcom Technologies S.A. SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Spidcom Technologies S.A. across **2 - `SPIDCOM-TRAPS::deviceUp` - `SPIDCOM-TRAPS::maxAttenuation` - `SPIDCOM-TRAPS::maxNoise` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spring Tide Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spring Tide Networks Inc SNMP Traps.mdx index 43733fdfba..a9f20fb4fa 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spring Tide Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Spring Tide Networks Inc SNMP Traps.mdx @@ -158,4 +158,3 @@ Netdata decodes **79 trap definitions** from Spring Tide Networks Inc across **1 - `STN-POLICY-MIB::stnPmQosFlowCBRemoved` - `STN-POLICY-MIB::stnPmQosShapingPacketDiscard` - `STN-POLICY-MIB::stnPmQosThresholdPacketDiscard` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Standard SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Standard SNMP Traps.mdx index 286ec816c5..9a98352398 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Standard SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Standard SNMP Traps.mdx @@ -317,4 +317,3 @@ Netdata decodes **864 trap definitions** from Standard across **167 MIBs** into - `T11-ZONE-SERVER-MIB::t11ZsMergeSuccessNotify` - `T11-ZONE-SERVER-MIB::t11ZsDefZoneChangeNotify` - `T11-ZONE-SERVER-MIB::t11ZsActivateNotify` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Starent Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Starent Networks SNMP Traps.mdx index b95bca2f7b..a479d2c142 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Starent Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Starent Networks SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **821 trap definitions** from Starent Networks across **1 MIB** - `STARENT-MIB::starCardReset` - `STARENT-MIB::starCardRebootRequest` - `STARENT-MIB::starCardUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Starline Holdings SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Starline Holdings SNMP Traps.mdx index 7ffda4d5ec..ef5c679373 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Starline Holdings SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Starline Holdings SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **28 trap definitions** from Starline Holdings across **1 MIB** - `UEC-STARLINE-MIB::cpmAcInfUnCurrAssertEv` - `UEC-STARLINE-MIB::cpmAcInfUnCurrDeassertEv` - `UEC-STARLINE-MIB::cpmAcInfOvVoltAssertEv` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stonesoft Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stonesoft Corp SNMP Traps.mdx index 3718ea1851..93221d3cb7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stonesoft Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stonesoft Corp SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **24 trap definitions** from Stonesoft Corp across **4 MIBs** in - `STONESOFT-NETNODE-MIB::nodeOnline` - `STONESOFT-NETNODE-MIB::nodeOffline` - `STONESOFT-NETNODE-MIB::nodeBoot` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Computer Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Computer Corporation SNMP Traps.mdx index fc7c652f30..265151df15 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Computer Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Computer Corporation SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Storage Computer Corporation across - `SCC-RAID7-MIB::raid7EnvironmentFailure` - `SCCRAID7-PROXY-MIB::raid7LinkUp` - `SCCRAID7-PROXY-MIB::raid7LinkDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Networking Industry Association SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Networking Industry Association SNMP Traps.mdx index 0eb36ff6a1..07e2497517 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Networking Industry Association SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Networking Industry Association SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **13 trap definitions** from Storage Networking Industry Associa - `SNIA-SML-MIB::libraryAddedTrap` - `SNIA-SML-MIB::libraryDeletedTrap` - `SNIA-SML-MIB::libraryOpStatusChangedTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Technology Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Technology Corporation SNMP Traps.mdx index 6bc222f57d..87383fc491 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Technology Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Storage Technology Corporation SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **25 trap definitions** from Storage Technology Corporation acro - `HORIZON-LIBRARY-MONITOR-MIB::hlmTrpInfo` - `HORIZON-LIBRARY-MONITOR-MIB::hlmTrpUncl` - `HORIZON-LIBRARY-MONITOR-MIB::hlmTrpNorStatus` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stormshield Formerly Netasq SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stormshield Formerly Netasq SNMP Traps.mdx index b4620ebe57..4f29e73a80 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stormshield Formerly Netasq SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stormshield Formerly Netasq SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Stormshield Formerly Netasq across ** ### Sample decoded traps - `STORMSHIELD-ALARM-MIB::snsNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stratacom SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stratacom SNMP Traps.mdx index d72c48e103..8eb063d0e5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stratacom SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stratacom SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **365 trap definitions** from Stratacom across **2 MIBs** into s - `CISCO-MGX82XX-TRAPS-MIB::functionModuleRemovedTrap` - `CISCO-MGX82XX-TRAPS-MIB::functionModuleInsertedTrap` - `CISCO-MGX82XX-TRAPS-MIB::functionModuleSwitchoverTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stratus Computer SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stratus Computer SNMP Traps.mdx index 8b30ff48d7..8b38305cd5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stratus Computer SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stratus Computer SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **15 trap definitions** from Stratus Computer across **1 MIB** i - `STRATUS-MIB::ftsmTrapEnterOnlineState` - `STRATUS-MIB::ftsmTrapLeaveOnlineState` - `STRATUS-MIB::ftsmTrapEnterOutOfServiceState` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Streamcore SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Streamcore SNMP Traps.mdx index 1ed0a1a2fb..1c5ae179d7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Streamcore SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Streamcore SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **49 trap definitions** from Streamcore across **1 MIB** into st - `STREAMCORE-MIB::scHDPartitionNearlyFull` - `STREAMCORE-MIB::scFreeMemoryTooLow` - `STREAMCORE-MIB::scHDFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stulz GmbH Klimatechnik SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stulz GmbH Klimatechnik SNMP Traps.mdx index a649622526..5cb4c498f3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stulz GmbH Klimatechnik SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Stulz GmbH Klimatechnik SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **258 trap definitions** from Stulz GmbH Klimatechnik across **1 - `Stulz-WIB8000-MIB::trpairflow3` - `Stulz-WIB8000-MIB::trphighpressure1` - `Stulz-WIB8000-MIB::trphighpressure2` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sub10 Systems Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sub10 Systems Ltd SNMP Traps.mdx index 1f881d7eb6..5249172033 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sub10 Systems Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sub10 Systems Ltd SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **7 trap definitions** from Sub10 Systems Ltd across **2 MIBs** - `SUB10SYSTEMS-MIB::sub10RadioAlarm` - `V320-MIB::terminalLinkQualityImprovedTrap` - `V320-MIB::terminalLinkQualityReducedTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Super Micro Computer Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Super Micro Computer Inc SNMP Traps.mdx index f97ce1f227..ceaca81b29 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Super Micro Computer Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Super Micro Computer Inc SNMP Traps.mdx @@ -211,4 +211,3 @@ Netdata decodes **331 trap definitions** from Super Micro Computer Inc across ** - `SUPERMICRO-SD5-MIB::trapFanCritical` - `SUPERMICRO-SD5-MIB::trapVoltageNormal` - `SUPERMICRO-SD5-MIB::trapVoltageWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Swapcom SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Swapcom SNMP Traps.mdx index 3cb39df534..a15928564d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Swapcom SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Swapcom SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **15 trap definitions** from Swapcom across **2 MIBs** into stru - `SWAPCOM-SNMP::platformStop` - `SWAPCOM-SNMP::unknownLog` - `SWAPCOM-SNMP::infoLog` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Swichtec Power Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Swichtec Power Systems SNMP Traps.mdx index 914362fa47..f06aa2019e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Swichtec Power Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Swichtec Power Systems SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **55 trap definitions** from Swichtec Power Systems across **2 M - `RPS-SC200-MIB::major-AI-Low-Active` - `RPS-SC200-MIB::major-DI-Active` - `RPS-SC200-MIB::major-Smart-Active` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symantec Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symantec Corporation SNMP Traps.mdx index 395bbcec76..0fd1bee4d6 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symantec Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symantec Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **41 trap definitions** from Symantec Corporation across **1 MIB - `PCA-Alert-MIB::pcaHostAbnormalEnd` - `PCA-Alert-MIB::pcaHostConnFailDeviceError` - `PCA-Alert-MIB::pcaHostStopped` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symbol Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symbol Technologies Inc SNMP Traps.mdx index 87d44c7609..b23d795c27 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symbol Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symbol Technologies Inc SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **593 trap definitions** from Symbol Technologies Inc across **7 - `SYMBOL-ENTERPRISE-PRIVATE-MIB::apAPIdConflictTrap` - `SYMBOL-ENTERPRISE-PRIVATE-MIB::apMUAssocTrap` - `SYMBOL-ENTERPRISE-PRIVATE-MIB::apMUUnAssocTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symmetricom SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symmetricom SNMP Traps.mdx index 141a2d730d..8fa91ef840 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symmetricom SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symmetricom SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Symmetricom across **2 MIBs** into s - `TP5000E::tp5000eTrapEvent` - `TP5000E::tp5000eClientNotification` - `TP5000E::tp5000ePtpMgmtEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symplex Communications Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symplex Communications Corp SNMP Traps.mdx index 929bb2465f..52db9e2e53 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symplex Communications Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Symplex Communications Corp SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **15 trap definitions** from Symplex Communications Corp across - `D5-MIB::stopDisasterRecovery` - `D5-MIB::noBChannel` - `D5-MIB::dailyConnLimit` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synaccess Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synaccess Networks Inc SNMP Traps.mdx index 362686f70f..1bab2e45ba 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synaccess Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synaccess Networks Inc SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **55 trap definitions** from Synaccess Networks Inc across **2 M - `SYNSYS-MIB::autoPingRebootEvent` - `SYNSYS-MIB::temperatureAlarmEvent` - `SYNSYS-MIB::temperatureControlledOutletEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synamedia SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synamedia SNMP Traps.mdx index 7b8e19ea0c..f6ac657070 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synamedia SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synamedia SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Synamedia across **1 MIB** into stru - `SAEUROPE-TRAPCONTROL-MIB::trapControlMsgTrap` - `SAEUROPE-TRAPCONTROL-MIB::trapControlMsgTrap2` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sync Research Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sync Research Inc SNMP Traps.mdx index 7da7e78a11..001d2b5793 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sync Research Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Sync Research Inc SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **346 trap definitions** from Sync Research Inc across **5 MIBs* - `SYNC-RESEARCH-MIB::dumpExists` - `SYNC-RESEARCH-MIB::dumpArchived` - `SYNC-RESEARCH-MIB::lineStatusChanged` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synernetics Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synernetics Inc SNMP Traps.mdx index c13c6028df..7164a93c20 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synernetics Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synernetics Inc SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **27 trap definitions** from Synernetics Inc across **4 MIBs** i - `LANPLEX-MIB-1-2-9::lpBridgeAddressThresholdEvent` - `LANPLEX-MIB-1-2-9::lpSystemOverTemperatureEvent` - `LANPLEX-MIB-1-2-9::lpSlotOverTemperatureEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synoptics SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synoptics SNMP Traps.mdx index 3e3b162ed0..45d8f8c8d0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synoptics SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synoptics SNMP Traps.mdx @@ -182,4 +182,3 @@ Netdata decodes **287 trap definitions** from Synoptics across **32 MIBs** into - `SYNOPTICS-BASIC-ETHTOK-MIB::portAutoPartition` - `SYNOPTICS-BASIC-ETHTOK-MIB::portDTEJabbering` - `SYNOPTICS-BASIC-ETHTOK-MIB::localBridgeDiagnostic` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synso Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synso Inc SNMP Traps.mdx index a45990b641..859a4f43f5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synso Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Synso Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **7 trap definitions** from Synso Inc across **1 MIB** into stru - `SYNSO-UPSMIB::syupsTrapOverVoltage` - `SYNSO-UPSMIB::syupsTrapUnderVoltage` - `SYNSO-UPSMIB::syupsOffFrequency` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/System Engineering International SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/System Engineering International SNMP Traps.mdx index b7ccecdfc8..013162e009 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/System Engineering International SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/System Engineering International SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from System Engineering International acr - `SEI-SMI::juiceBoxAllocatedPowerThresholdReached` - `SEI-SMI::juiceBoxPortStatusChange` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/System Management Arts Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/System Management Arts Inc SNMP Traps.mdx index 491f604f9e..fa5d64588f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/System Management Arts Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/System Management Arts Inc SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from System Management Arts Inc across ** - `DFM-MIB::smTrapSeverityChange` - `DFM-MIB::smTrapNotification` - `DFM-MIB::smTrapNotificationClear` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tail F Systems AB SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tail F Systems AB SNMP Traps.mdx index 2c17dc6aee..96a9a52570 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tail F Systems AB SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tail F Systems AB SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Tail F Systems AB across **1 MIB** i - `TAILF-ALARM-MIB::tfAlarmMinor` - `TAILF-ALARM-MIB::tfAlarmMajor` - `TAILF-ALARM-MIB::tfAlarmCritical` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tailyn Communication Company SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tailyn Communication Company SNMP Traps.mdx index 28aed6b70e..f023f244f0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tailyn Communication Company SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tailyn Communication Company SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **65 trap definitions** from Tailyn Communication Company across - `IMP-HF528-MIB::iswTrapEvtSysDownloadSuccess` - `IMP-HF528-MIB::iswTrapEvtSysDownloadFail` - `IMP-HF528-MIB::iswTrapEvtSysProvisiondataExport` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tait International Limited SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tait International Limited SNMP Traps.mdx index 0cb7960ca9..ecb6e5b4d2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tait International Limited SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tait International Limited SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **48 trap definitions** from Tait International Limited across * - `TAIT-TN9300-MIB::tn9300SiteOkEvent` - `TAIT-TN9300-MIB::tn9300ChannelMinorAlarmEvent` - `TAIT-TN9300-MIB::tn9300ChannelMajorAlarmEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Talari Networks SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Talari Networks SNMP Traps.mdx index ce7e96d31f..fd6b6829b2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Talari Networks SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Talari Networks SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from Talari Networks across **1 MIB** int - `TALARI-MIB::talariEventNotification` - `TALARI-MIB::talariNetworkEventNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tandberg Television SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tandberg Television SNMP Traps.mdx index cefcc195db..bcfa925ac0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tandberg Television SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tandberg Television SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **9 trap definitions** from Tandberg Television across **2 MIBs* - `ETV-AlarmTrap-MIB::alarmIndeterminate` - `ETV-AlarmTrap-MIB::alarmWarning` - `ETV-AlarmTrap-MIB::alarmMinor` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tandem Computers SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tandem Computers SNMP Traps.mdx index f86f66710b..fe26ba8874 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tandem Computers SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tandem Computers SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **21 trap definitions** from Tandem Computers across **5 MIBs** - `SNMP-HMSA-MIB::zhrmRAMThreshold` - `SNMP-HMSA-MIB::zhrmDiskThreshold` - `EthernetSubagentPvt-MIB::zesalinkUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tasman Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tasman Networks Inc SNMP Traps.mdx index 5fe0740190..c36d2b00bf 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tasman Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tasman Networks Inc SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **22 trap definitions** from Tasman Networks Inc across **7 MIBs - `TIARA-NETWORKS-SYSTEM-MIB::userLogOffNotification` - `TIARA-NETWORKS-SYSTEM-MIB::userLoginFailNotification` - `TIARA-NETWORKS-SYSTEM-MIB::failOverNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tavve Software Co SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tavve Software Co SNMP Traps.mdx index a3da73f6ff..8762995d86 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tavve Software Co SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tavve Software Co SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **90 trap definitions** from Tavve Software Co across **1 MIB** - `TAVVE-MIB::tscEwSourceUp` - `TAVVE-MIB::tscEwInferredUp` - `TAVVE-MIB::tscEwNodeDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tecnair S P A SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tecnair S P A SNMP Traps.mdx index 650ab6f9b0..baaa3dcc4e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tecnair S P A SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tecnair S P A SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **442 trap definitions** from Tecnair S P A across **1 MIB** int - `SNMPSERVER-MIB::criticalAlTrap_1` - `SNMPSERVER-MIB::fansAlTrap_1` - `SNMPSERVER-MIB::compAlTrap_1` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tecnopro S.A. SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tecnopro S.A. SNMP Traps.mdx index 72f313f451..02484bcb8c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tecnopro S.A. SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tecnopro S.A. SNMP Traps.mdx @@ -159,4 +159,3 @@ Netdata decodes **377 trap definitions** from Tecnopro S.A. across **14 MIBs** i - `APPIAN-CHASSIS-MIB::acChassisFanFailureTrap` - `APPIAN-CHASSIS-MIB::acChassisTemperatureClearTrap` - `APPIAN-CHASSIS-MIB::acChassisFanFailureClearTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tegile Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tegile Systems Inc SNMP Traps.mdx index ba132a0ffe..b40a9c8245 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tegile Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tegile Systems Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **153 trap definitions** from Tegile Systems Inc across **1 MIB* - `TEGILE-MIB::diskGoneOffline` - `TEGILE-MIB::diskError` - `TEGILE-MIB::spareDiskReplaced` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telco Systems Nac SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telco Systems Nac SNMP Traps.mdx index 7d2b52f35a..53dbcb2a50 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telco Systems Nac SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telco Systems Nac SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Telco Systems Nac across **1 MIB** in ### Sample decoded traps - `EDGELINK-MIB::edgeLinkEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teldat S A SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teldat S A SNMP Traps.mdx index 701492a3b3..9ba57614b9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teldat S A SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teldat S A SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Teldat S A across **1 MIB** into str - `TELDAT-MIB::telTECircuitTrapUp` - `TELDAT-MIB::telTECircuitTrapBackup` - `TELDAT-MIB::telTECircuitTrapDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telefonaktiebolaget Lm Ericsson SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telefonaktiebolaget Lm Ericsson SNMP Traps.mdx index 813e6ddce1..546c54310f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telefonaktiebolaget Lm Ericsson SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telefonaktiebolaget Lm Ericsson SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Telefonaktiebolaget Lm Ericsson acro - `ERICSSON-ALARM-IRP-MIB::alarmNew` - `ERICSSON-ALARM-IRP-MIB::alarmChanged` - `ERICSSON-ALARM-IRP-MIB::alarmCleared` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telematics International Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telematics International Inc SNMP Traps.mdx index ed8067e0ff..6291c4f62a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telematics International Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telematics International Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **50 trap definitions** from Telematics International Inc across - `Telematics-Nevada-MIB::nvTrapDuiportavail` - `Telematics-Nevada-MIB::nvTrapNoIdlePorts` - `Telematics-Nevada-MIB::nvTrapDatatimerexpird` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telesend Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telesend Inc SNMP Traps.mdx index 2311049969..5fc4500d67 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telesend Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telesend Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Telesend Inc across **1 MIB** into s - `Cisco90Series-MIB::frxInsertChUTrap` - `Cisco90Series-MIB::frxRemoveChUTrap` - `Cisco90Series-MIB::frxDConfigFailed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teleste Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teleste Corporation SNMP Traps.mdx index 5ffa6f372c..84c09daadf 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teleste Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teleste Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **170 trap definitions** from Teleste Corporation across **1 MIB - `TELESTE-LUMINATO-MIB2::extendedServiceMissingAlarmEvent` - `TELESTE-LUMINATO-MIB2::extendedPidConflictAlarmEvent` - `TELESTE-LUMINATO-MIB2::extendedTemperatureTooHighAlarmEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telesystems Slw Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telesystems Slw Inc SNMP Traps.mdx index 79f9b6f7b0..6cf7a17ecb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telesystems Slw Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telesystems Slw Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Telesystems Slw Inc across **1 MIB** ### Sample decoded traps - `AWCVX-MIB::awcTrapLog` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Televes S A SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Televes S A SNMP Traps.mdx index c690960d29..d1a921a6c2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Televes S A SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Televes S A SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **170 trap definitions** from Televes S A across **1 MIB** into - `TREDESS-FS-MIB::amplifierSumTrap` - `TREDESS-FS-MIB::exceededOutputPowerTrap` - `TREDESS-FS-MIB::decreasedOutputPowerTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Television Systems Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Television Systems Ltd SNMP Traps.mdx index fa38b5b172..c901972f95 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Television Systems Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Television Systems Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **6 trap definitions** from Television Systems Ltd across **1 MI - `TSL-MIB::alarmEqptTempOkTrap` - `TSL-MIB::mduPowerStatusTrap` - `TSL-MIB::mduVoltageStatusTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telstrat International Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telstrat International Ltd SNMP Traps.mdx index 5193fed443..2413b27301 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telstrat International Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Telstrat International Ltd SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **5 trap definitions** from Telstrat International Ltd across ** - `ISHELF-SYS-MIB::iShelfSysDbChangeTrap` - `ISHELF-CARD-MIB::iShelfPanicDumpAvailableTrap` - `ISHELF-SYS-MIB::iShelfSysDbDeleteTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teltonika SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teltonika SNMP Traps.mdx index 62cbfc9393..394e4a36a1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teltonika SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teltonika SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **19 trap definitions** from Teltonika across **4 MIBs** into st - `TELTONIKA-RUTX-MIB::connectionTypeNotification` - `TELTONIKA-MIB::trapConnectionType` - `TELTONIKA-RUTX-MIB::digitalInputNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teracom Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teracom Ltd SNMP Traps.mdx index d26d830ab9..ae375c64f1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teracom Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teracom Ltd SNMP Traps.mdx @@ -154,4 +154,3 @@ Netdata decodes **16 trap definitions** from Teracom Ltd across **9 MIBs** into - `TERACOM-TCW111-MIB::trcVoltagex10Int` - `TERACOM-TCW111-MIB::trcTempx10Int` - `TERACOM-TCW111-MIB::trcHumix10Int` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teracom Telematica Ltda SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teracom Telematica Ltda SNMP Traps.mdx index 0ef7a7b40a..7b214acf9b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teracom Telematica Ltda SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Teracom Telematica Ltda SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **184 trap definitions** from Teracom Telematica Ltda across **6 - `DATACOM-GENERIC-DEVICE-TRAPS-MIB::mtGenDvStSnmpManagementStatusTrap` - `DATACOM-GENERIC-DEVICE-TRAPS-MIB::mtGenDvStLatchedPossibleNewCfgTrap` - `DATACOM-GENERIC-DEVICE-TRAPS-MIB::agFwRemDownTempMemTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Terra SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Terra SNMP Traps.mdx index b06123518e..e21119493e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Terra SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Terra SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **45 trap definitions** from Terra across **3 MIBs** into struct - `TERRA-sdi410C-MIB::notifyInpsig` - `TERRA-sdi410C-MIB::notifyBitovf` - `TERRA-sdi410C-MIB::notifyLinks` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Thales E Security SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Thales E Security SNMP Traps.mdx index 3d249b72f5..3ac1a783f7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Thales E Security SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Thales E Security SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **15 trap definitions** from Thales E Security across **1 MIB** - `THALES-ESECURITY-PAYSHIELD-MIB::payShieldEraseAlarm` - `THALES-ESECURITY-PAYSHIELD-MIB::payShieldNewLicenseAlarm` - `THALES-ESECURITY-PAYSHIELD-MIB::payShieldNewSoftwareAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/The Advantage Group SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/The Advantage Group SNMP Traps.mdx index abff73722d..7c144f133b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/The Advantage Group SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/The Advantage Group SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from The Advantage Group across **1 MIB** - `MITSUBISHI-UPS-MIB::alarmInformation` - `MITSUBISHI-UPS-MIB::upsAlarmCleared` - `MITSUBISHI-UPS-MIB::upsTrapInitialization` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/The Freeradius Server Project SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/The Freeradius Server Project SNMP Traps.mdx index 7464ff4524..eae844e37c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/The Freeradius Server Project SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/The Freeradius Server Project SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **19 trap definitions** from The Freeradius Server Project acros - `FREERADIUS-NOTIFICATION-MIB::serverMaxRequests` - `FREERADIUS-NOTIFICATION-MIB::signalHup` - `FREERADIUS-NOTIFICATION-MIB::signalTerm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timeplex SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timeplex SNMP Traps.mdx index c394c4a41c..77a0a55d56 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timeplex SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timeplex SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **22 trap definitions** from Timeplex across **1 MIB** into stru - `HPNSATRAP-MIB::rtLogicalDriveStateChange` - `HPNSATRAP-MIB::rtInitializeStarted` - `HPNSATRAP-MIB::rtInitializeCompleted` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timesten Performance Software SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timesten Performance Software SNMP Traps.mdx index b9164d5920..ae06fc766c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timesten Performance Software SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timesten Performance Software SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **25 trap definitions** from Timesten Performance Software acros - `TimesTen::ttPartitionSpaceStateTrap` - `TimesTen::ttPartitionSpaceExhaustedTrap` - `TimesTen::ttDSDataCorruptionTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timestep Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timestep Corp SNMP Traps.mdx index 912d1c0a51..39611ec04c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timestep Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Timestep Corp SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **8 trap definitions** from Timestep Corp across **1 MIB** into - `TIMESTEP-IPSEC-MIB::ipsecTrapInvalidCookie` - `TIMESTEP-IPSEC-MIB::ipsecTrapIpsecNegFailure` - `TIMESTEP-IPSEC-MIB::ipsecTrapIpsecAuthFailure` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tintri Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tintri Inc SNMP Traps.mdx index ddb91a903d..653ccabb28 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tintri Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tintri Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **156 trap definitions** from Tintri Inc across **1 MIB** into s - `VMSTORE-MIB::systemFailure` - `VMSTORE-MIB::maxFileLimitReached` - `VMSTORE-MIB::maxSnapshotFileLimitReached` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Toshiba Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Toshiba Corporation SNMP Traps.mdx index 28c0a4a033..0010e2d8a8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Toshiba Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Toshiba Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **44 trap definitions** from Toshiba Corporation across **1 MIB* - `TIC-RMTI4-G9000-G2020-MIB::upsTrapOnBattery` - `TIC-RMTI4-G9000-G2020-MIB::upsTrapOnBatteryClear` - `TIC-RMTI4-G9000-G2020-MIB::upsTrapBatteryLow` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tp Link Systems Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tp Link Systems Inc SNMP Traps.mdx index ccad8c68e8..cc5f8f70ae 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tp Link Systems Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tp Link Systems Inc SNMP Traps.mdx @@ -157,4 +157,3 @@ Netdata decodes **35 trap definitions** from Tp Link Systems Inc across **12 MIB - `TPLINK-SYSTOOL-MIB::fan` - `TPLINK-SYSTOOL-MIB::temperature` - `TPLINK-SYSTOOL-MIB::mCard` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trango Networks LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trango Networks LLC SNMP Traps.mdx index 2e6ebb5de7..e25ae59c32 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trango Networks LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trango Networks LLC SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **58 trap definitions** from Trango Networks LLC across **5 MIBs - `TRANGOM5800S-MIB::apOpModeFailure` - `TRANGOM5830S-MIB::suLinkUp` - `TRANGOM5830S-MIB::suLinkDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Transition Engineering Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Transition Engineering Inc SNMP Traps.mdx index 38386dc6ca..f9e14e706f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Transition Engineering Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Transition Engineering Inc SNMP Traps.mdx @@ -164,4 +164,3 @@ Netdata decodes **85 trap definitions** from Transition Engineering Inc across * - `TNI-MIB::sfbrm100VTUMemberViolation` - `TNI-MIB::sfbrm100VTUMissViolation` - `TNI-MIB::sfbrm100ATUMemberViolation` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trapeze Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trapeze Networks Inc SNMP Traps.mdx index c327adbf3c..52b09028c3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trapeze Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trapeze Networks Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **88 trap definitions** from Trapeze Networks Inc across **1 MIB - `TRAPEZE-NETWORKS-TRAP-MIB::trpzPoEFailTrap` - `TRAPEZE-NETWORKS-TRAP-MIB::trpzApTimeoutTrap` - `TRAPEZE-NETWORKS-TRAP-MIB::trpzAPBootTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trend Micro Inc Formerly Tippingpoint Technologies SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trend Micro Inc Formerly Tippingpoint Technologies SNMP Traps.mdx index da5f11e7aa..07140e3113 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trend Micro Inc Formerly Tippingpoint Technologies SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trend Micro Inc Formerly Tippingpoint Technologies SNMP Traps.mdx @@ -161,4 +161,3 @@ Netdata decodes **69 trap definitions** from Trend Micro Inc Formerly Tippingpoi - `TPT-MISC-NOTIFY-MIB::tptManagedNotify` - `TPT-MISC-NOTIFY-MIB::tptUnmanagedNotify` - `TPT-MISC-NOTIFY-MIB::tptRolloverNotify` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trend Micro Incorporated SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trend Micro Incorporated SNMP Traps.mdx index 11aec19321..a68f171e25 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trend Micro Incorporated SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Trend Micro Incorporated SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Trend Micro Incorporated across **1 - `TRENDMICRO-NVW-MIB::bootFactory` - `TRENDMICRO-NVW-MIB::bootPrevious` - `TRENDMICRO-NVW-MIB::haFailover` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tridium SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tridium SNMP Traps.mdx index 87abb7c2f9..d22ccf48e8 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tridium SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tridium SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Tridium across **1 MIB** into structu ### Sample decoded traps - `TRIDIUMR3-MIB::stationAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tripp Lite SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tripp Lite SNMP Traps.mdx index 3d1b2736a5..307ecb575e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tripp Lite SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tripp Lite SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **94 trap definitions** from Tripp Lite across **4 MIBs** into s - `TRIPPUPS1-MIB::lowBattery` - `TRIPPUPS1-MIB::returnFromLowBattery` - `TRIPPUPS1-MIB::communicationEstablished` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tu Braunschweig SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tu Braunschweig SNMP Traps.mdx index 12e01c035b..51d9293757 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tu Braunschweig SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tu Braunschweig SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **2 trap definitions** from Tu Braunschweig across **2 MIBs** in - `TUBS-IBR-PING-MIB::pingNoResponse` - `TUBS-IBR-LINUX-NETFILTER-MIB::lnfRuleMatch` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tylink SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tylink SNMP Traps.mdx index 281524987f..b00807edfe 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tylink SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Tylink SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **50 trap definitions** from Tylink across **3 MIBs** into struc - `TY1250I-MIB::ty1250LineInServiceTrap` - `TY1250I-MIB::ty1250ConnectedTrap` - `TY1250I-MIB::ty1250ConnectFailureTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/U C Davis Ece Dept Tom SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/U C Davis Ece Dept Tom SNMP Traps.mdx index bb19389da9..319990ef87 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/U C Davis Ece Dept Tom SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/U C Davis Ece Dept Tom SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **4 trap definitions** from U C Davis Ece Dept Tom across **3 MI - `UCD-SNMP-MIB::ucdStart` - `UCD-SNMP-MIB::ucdShutdown` - `NOTIFICATION-TEST-MIB::demo-notif` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/UK Mod De S SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/UK Mod De S SNMP Traps.mdx index 2cd86e20b1..2742de40d2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/UK Mod De S SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/UK Mod De S SNMP Traps.mdx @@ -143,4 +143,3 @@ Netdata decodes **2 trap definitions** from UK Mod De S across **1 MIB** into st - `VIVOE-MIB::deviceError` - `VIVOE-MIB::ipAddressConflict` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ucopia Communications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ucopia Communications SNMP Traps.mdx index 0211e9d613..d89b3de6e2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ucopia Communications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ucopia Communications SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Ucopia Communications across **1 MIB* ### Sample decoded traps - `CONTROLLER-MIB::ucpServiceFaultStateNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Unisys Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Unisys Corp SNMP Traps.mdx index a1d37e2db6..bcd7e22d9b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Unisys Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Unisys Corp SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **53 trap definitions** from Unisys Corp across **2 MIBs** into - `VISINET2-MIB::uemTrapSensorWarning` - `VISINET2-MIB::uemTrapSensorNormal` - `VISINET2-MIB::uemTrapSwitchAlert` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Unitrends Software Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Unitrends Software Corp SNMP Traps.mdx index 562f2de13b..d55e80b5c3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Unitrends Software Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Unitrends Software Corp SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **16 trap definitions** from Unitrends Software Corp across **1 - `UNITRENDS-SNMP::trapGroupPCI` - `UNITRENDS-SNMP::trapGroupProcess` - `UNITRENDS-SNMP::trapGroupDisk` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ups Manufacturing SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ups Manufacturing SNMP Traps.mdx index 319b8eb3cf..356381d264 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ups Manufacturing SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Ups Manufacturing SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **24 trap definitions** from Ups Manufacturing across **4 MIBs** - `SENSORTRAP-MIB::sensorAlarmTMin` - `SENSORTRAP-MIB::sensorAlarmTMinRemoved` - `SENSORTRAP-MIB::sensorIOAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Utstarcom Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Utstarcom Inc SNMP Traps.mdx index f4e5f6b856..955e429236 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Utstarcom Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Utstarcom Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **19 trap definitions** from Utstarcom Inc across **1 MIB** into - `UTEPON4000FAULT-MIB::utsChassisInvalidCardPlugout` - `UTEPON4000FAULT-MIB::utsChassisInvalidCardInsert` - `UTEPON4000FAULT-MIB::utsTemperatureNormal` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Utstarcom Incorporated SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Utstarcom Incorporated SNMP Traps.mdx index a02d24870c..138811d0ee 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Utstarcom Incorporated SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Utstarcom Incorporated SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **61 trap definitions** from Utstarcom Incorporated across **1 M - `USR-TRAP-MIB::psuWarning` - `USR-TRAP-MIB::psuFailure` - `USR-TRAP-MIB::tempWarning` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/V Solution SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/V Solution SNMP Traps.mdx index 820e5b8704..1a610a1e41 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/V Solution SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/V Solution SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from V Solution across **1 MIB** into stru ### Sample decoded traps - `V1600D::dataAlarmTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veeam Software SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veeam Software SNMP Traps.mdx index 8bf904e423..4509f9cff0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veeam Software SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veeam Software SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **16 trap definitions** from Veeam Software across **1 MIB** int - `VEEAM-MIB::onLinuxFLRMountStarted` - `VEEAM-MIB::onLinuxFLRCopyToStarted` - `VEEAM-MIB::onLinuxFLRToOriginalStarted` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Venturi Wireless SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Venturi Wireless SNMP Traps.mdx index faea787829..bf534f9d4d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Venturi Wireless SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Venturi Wireless SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **90 trap definitions** from Venturi Wireless across **2 MIBs** - `FOURELLE-VENTURI2-MIB::venturi2cpuOverload` - `FOURELLE-VENTURI2-MIB::venturi2memoryOverload` - `FOURELLE-VENTURI2-MIB::venturi2diskOverload` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Verax Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Verax Systems SNMP Traps.mdx index 8e57bc2579..fda817098f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Verax Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Verax Systems SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **56 trap definitions** from Verax Systems across **1 MIB** into - `VERAX-NMS-AGENT-MIB::psWarningThresholdExceeded` - `VERAX-NMS-AGENT-MIB::psCriticalThresholdExceeded` - `VERAX-NMS-AGENT-MIB::psTimeoutReached` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Verilink Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Verilink Corp SNMP Traps.mdx index 755782f54b..224c92dcd4 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Verilink Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Verilink Corp SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **599 trap definitions** from Verilink Corp across **4 MIBs** in - `VERILINK-ENTERPRISE-NCMALARM-MIB::ncmncmfarCSUPowrUP` - `VERILINK-ENTERPRISE-NCMALARM-MIB::ncmnearBERexceeded` - `VERILINK-ENTERPRISE-NCMALARM-MIB::ncmnearBERexceededCleared` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veritas Software Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veritas Software Corp SNMP Traps.mdx index bc6429bf8b..a15d675fb5 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veritas Software Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veritas Software Corp SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **107 trap definitions** from Veritas Software Corp across **4 M - `Backup-Exec-MIB::blockingmessage` - `Backup-Exec-MIB::warningmessage` - `Backup-Exec-MIB::informationmessage` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veritas Technologies LLC SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veritas Technologies LLC SNMP Traps.mdx index 7939aca5a6..bc31165dff 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veritas Technologies LLC SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Veritas Technologies LLC SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **35 trap definitions** from Veritas Technologies LLC across **1 - `VERITAS-APPLIANCE-MONITORING-MIB::vrtsfibrechannelTrap` - `VERITAS-APPLIANCE-MONITORING-MIB::vrtstemperatureTrap` - `VERITAS-APPLIANCE-MONITORING-MIB::vrtscpuTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Versa Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Versa Networks Inc SNMP Traps.mdx index bc60a6a28f..9a6262af91 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Versa Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Versa Networks Inc SNMP Traps.mdx @@ -168,4 +168,3 @@ Netdata decodes **71 trap definitions** from Versa Networks Inc across **23 MIBs - `HA-TRAP::haStateChange` - `HA-TRAP::haSyncStatus` - `IF-TRAP::interfaceUp` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertical Networks Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertical Networks Inc SNMP Traps.mdx index 9e0b02f3f4..363e08767b 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertical Networks Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertical Networks Inc SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **63 trap definitions** from Vertical Networks Inc across **7 MI - `VERTICALT1-E1-MIB::vdsx1TrunkYellowClear` - `VERTICALT1-E1-MIB::vdsx1TrunkYellow` - `VERTICALT1-E1-MIB::vdsx1TrunkBlueClear` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Emerson Computer Power SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Emerson Computer Power SNMP Traps.mdx index 31657895da..ed67093954 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Emerson Computer Power SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Emerson Computer Power SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **81 trap definitions** from Vertiv Formerly Emerson Computer Po - `LIEBERT-MICRO-UPS-MIB::lcUpsOnBatteryTrap` - `LIEBERT-MICRO-UPS-MIB::lcUpsLowBatteryWarningTrap` - `LIEBERT-UPS-MIB::lcUpsLowBatteryShutdownTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Emerson Energy Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Emerson Energy Systems SNMP Traps.mdx index 60966eee0f..8b74aab527 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Emerson Energy Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Emerson Energy Systems SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **6 trap definitions** from Vertiv Formerly Emerson Energy Syste - `EES-POWER-MIB::alarmCeaseTrap` - `NETSURE-DISTRIB-MIB::alarmTrap` - `NETSURE-DISTRIB-MIB::alarmActiveTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Geist Manufacturing Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Geist Manufacturing Inc SNMP Traps.mdx index eb23c73228..fbeff77605 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Geist Manufacturing Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Formerly Geist Manufacturing Inc SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **1318 trap definitions** from Vertiv Formerly Geist Manufacturi - `GEIST-MIB::gstClimateHumidityTRAP` - `GEIST-MIB::gstClimateAirflowTRAP` - `GEIST-MIB::gstClimateLightTRAP` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Tech Co Ltd Formerly Emerson Network Power Co Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Tech Co Ltd Formerly Emerson Network Power Co Ltd SNMP Traps.mdx index f42d9749b0..2ac5b5f9e6 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Tech Co Ltd Formerly Emerson Network Power Co Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vertiv Tech Co Ltd Formerly Emerson Network Power Co Ltd SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Vertiv Tech Co Ltd Formerly Emerson N ### Sample decoded traps - `DCS-MIB::systemAlarmTrapDefine` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Viavideo Communications Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Viavideo Communications Inc SNMP Traps.mdx index 5924615c22..2effb45d55 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Viavideo Communications Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Viavideo Communications Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **35 trap definitions** from Viavideo Communications Inc across - `POLYCOM-VIDEO-MIB::lowBattery` - `POLYCOM-VIDEO-MIB::callUp` - `POLYCOM-VIDEO-MIB::callDown` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Videoframe Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Videoframe Systems SNMP Traps.mdx index 67b978405d..cea7b07cef 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Videoframe Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Videoframe Systems SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **23 trap definitions** from Videoframe Systems across **6 MIBs* - `VIDEOFRAME-GENERIC-MIB::boxFailoverEvent` - `VIDEOFRAME-GENERIC-MIB::boxStateChangeEvent` - `VIDEOFRAME-SIGMON-VM0001-MIB::analogAudioAPLHighAlarm` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Videoserver Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Videoserver Inc SNMP Traps.mdx index 61f8f005e5..2c50b8f2be 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Videoserver Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Videoserver Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Videoserver Inc across **1 MIB** into ### Sample decoded traps - `MC-MIB::conferenceTermination` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vigintos Elektronika SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vigintos Elektronika SNMP Traps.mdx index e150838d20..97b27dd5d3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vigintos Elektronika SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vigintos Elektronika SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Vigintos Elektronika across **1 MIB* - `VEL-HOST2-MIB::host2DevConnectionTrap` - `VEL-HOST2-MIB::host2DevEvtStateTrap` - `VEL-HOST2-MIB::host2DevParStateTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Viptela Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Viptela Inc SNMP Traps.mdx index a7cbed970a..36ab747e9a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Viptela Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Viptela Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **110 trap definitions** from Viptela Inc across **1 MIB** into - `VIPTELA-TRAPS::viptelaActionsSystemRebootComplete` - `VIPTELA-TRAPS::viptelaBfdBfdStateChange` - `VIPTELA-TRAPS::viptelaHardwareFlashFault` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vmware Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vmware Inc SNMP Traps.mdx index 6b34a8f81f..f511bebd67 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vmware Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vmware Inc SNMP Traps.mdx @@ -159,4 +159,3 @@ Netdata decodes **1445 trap definitions** from Vmware Inc across **14 MIBs** int - `VMWARE-OBSOLETE-MIB::vmHBLost` - `VMWARE-OBSOLETE-MIB::vmHBDetected` - `VMWARE-OBSOLETE-MIB::vmSuspended` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vocaltec Communications Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vocaltec Communications Ltd SNMP Traps.mdx index ed51628ceb..ee7ebd7ba6 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vocaltec Communications Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vocaltec Communications Ltd SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **23 trap definitions** from Vocaltec Communications Ltd across - `VTCOMMON-MIB::serverShuttingDown` - `VTCOMMON-MIB::serverMaintenance` - `VTCOMMON-MIB::serverConfigurationFault` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Voice Print International Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Voice Print International Inc SNMP Traps.mdx index 4536b6267d..668f9c7ed3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Voice Print International Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Voice Print International Inc SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Voice Print International Inc across ### Sample decoded traps - `VPIEVENT-MIB::eventNotif` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Volubill SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Volubill SNMP Traps.mdx index a84f444ab0..36e6b83a8e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Volubill SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Volubill SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **42 trap definitions** from Volubill across **1 MIB** into stru - `KENYA-COMPONENT-TRAPS::snmpUnreachableHost` - `KENYA-COMPONENT-TRAPS::dataCollectorThresholdExceeded` - `KENYA-COMPONENT-TRAPS::dataCollectorSystemRequirement` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vpnet SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vpnet SNMP Traps.mdx index 9e1c4c73e9..3c86a61e17 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vpnet SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vpnet SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **7 trap definitions** from Vpnet across **1 MIB** into structur - `VPN-MIB::skipAlgMismatch` - `VPN-MIB::authFailure` - `VPN-MIB::authHdrErr` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vutlan Sro Formerly Sky Control Sro SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vutlan Sro Formerly Sky Control Sro SNMP Traps.mdx index 4459b89896..6ff1c7e5c3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vutlan Sro Formerly Sky Control Sro SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Vutlan Sro Formerly Sky Control Sro SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Vutlan Sro Formerly Sky Control Sro a ### Sample decoded traps - `VUTLAN-SYSTEM-MIB::ctlUnitTrapNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wago Kontakttechnik GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wago Kontakttechnik GmbH SNMP Traps.mdx index 0844e8e1ce..74b3b18fb6 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wago Kontakttechnik GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wago Kontakttechnik GmbH SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **10 trap definitions** from Wago Kontakttechnik GmbH across **1 - `WAGO-MIB::wioPlcStop` - `WAGO-MIB::wioPlcReset` - `WAGO-MIB::wioPlcSoftwareWatchdog` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Watchguard Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Watchguard Technologies Inc SNMP Traps.mdx index 5fe2da9100..e88f7ffdba 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Watchguard Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Watchguard Technologies Inc SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **3 trap definitions** from Watchguard Technologies Inc across * - `WATCHGUARD-SYSTEM-CONFIG-MIB::wgAlarmTrap` - `WATCHGUARD-SYSTEM-CONFIG-MIB::wgSnmpShutdown` - `WATCHGUARD-SYSTEM-CONFIG-MIB::wgSnmpStart` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Waystream AB Formerly Packetfront Network Products AB SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Waystream AB Formerly Packetfront Network Products AB SNMP Traps.mdx index 15817dadb2..c9bd0f99b7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Waystream AB Formerly Packetfront Network Products AB SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Waystream AB Formerly Packetfront Network Products AB SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **13 trap definitions** from Waystream AB Formerly Packetfront N - `WAYSTREAM-MIB::wsIbosVoltLow` - `WAYSTREAM-MIB::wsIbosVoltHigh` - `WAYSTREAM-MIB::wsIbosFanRPMLow` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Webscreen Technology Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Webscreen Technology Ltd SNMP Traps.mdx index a3723e2a13..d3af65d7f9 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Webscreen Technology Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Webscreen Technology Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **291 trap definitions** from Webscreen Technology Ltd across ** - `DDOSSECURE4-MIB::apOutputErrorMIEvent` - `DDOSSECURE4-MIB::apNewConfigEvent` - `DDOSSECURE4-MIB::apNotLicensedEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Websense Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Websense Inc SNMP Traps.mdx index 56ff0fed28..bf5c9458ea 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Websense Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Websense Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **46 trap definitions** from Websense Inc across **1 MIB** into - `WBSN-APPLIANCE-MIB::memMaxUsageExceed` - `WBSN-APPLIANCE-MIB::networkMaxBandwidthExceed` - `WBSN-APPLIANCE-MIB::diskFreeMinSizeExceed` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wellfleet SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wellfleet SNMP Traps.mdx index 74edfef904..16d90a10f3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wellfleet SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wellfleet SNMP Traps.mdx @@ -144,4 +144,3 @@ Netdata decodes **2 trap definitions** from Wellfleet across **2 MIBs** into str - `Wellfleet-ACCT-MIB::wfAcctBufferFull` - `Wellfleet-DSUCSU-MIB::wfDsuCsuIfTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westek Technology Ltd John Tucker SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westek Technology Ltd John Tucker SNMP Traps.mdx index b3ed0afbd0..253bedd91c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westek Technology Ltd John Tucker SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westek Technology Ltd John Tucker SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Westek Technology Ltd John Tucker ac - `GUARDIAN-MIB::tempAlert` - `GUARDIAN-MIB::isaAlert` - `GUARDIAN-MIB::dcAlert` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westell Inc Formerly Kentrox SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westell Inc Formerly Kentrox SNMP Traps.mdx index bc8abae7bf..e6ea072233 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westell Inc Formerly Kentrox SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westell Inc Formerly Kentrox SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **11 trap definitions** from Westell Inc Formerly Kentrox across - `AISYSCFGPOWER-MIB::aiSCPowerTrapConverterFail` - `AISYSCFGPOWER-MIB::aiSCPowerTrapConverterOk` - `AISYSCFGFAN-MIB::aiSCFanTrapFail` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westermo Teleindustri AB SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westermo Teleindustri AB SNMP Traps.mdx index 8f932fc883..ed1dc7192e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westermo Teleindustri AB SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Westermo Teleindustri AB SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **56 trap definitions** from Westermo Teleindustri AB across **7 - `WESTERMO-LYNX-MIB::linkUpChangeWarning` - `WESTERMO-LYNX-MIB::linkDownChangeWarning` - `WESTERMO-MRD-300-MIB::wirelessState` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Digital Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Digital Corporation SNMP Traps.mdx index 528082819a..e39e79ee5a 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Digital Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Digital Corporation SNMP Traps.mdx @@ -145,4 +145,3 @@ Netdata decodes **4 trap definitions** from Western Digital Corporation across * - `WDMYCLOUDEX4-MIB::notifyFirmwareUpgraded` - `WDMYCLOUDEX4-MIB::notifyNetworkChanged` - `WDMYCLOUDEX4-MIB::notifyTemperatureExceeded` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Multiplex SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Multiplex SNMP Traps.mdx index 84c3a53189..27394e3dc2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Multiplex SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Multiplex SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **13 trap definitions** from Western Multiplex across **2 MIBs** - `WESTERN-MULTIPLEX-RAD10006-MIB::nmuLinkTrap` - `WESTERN-MULTIPLEX-RAD10006-MIB::t1InTrap` - `WESTERN-MULTIPLEX-RAD10006-MIB::t1CvTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Telematic Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Telematic Inc SNMP Traps.mdx index 2b6909d599..799b847651 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Telematic Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Western Telematic Inc SNMP Traps.mdx @@ -148,4 +148,3 @@ Netdata decodes **78 trap definitions** from Western Telematic Inc across **3 MI - `WTI-CONSOLE-MIB::bufferThresholdCrossedClearTrap` - `WTI-CONSOLE-MIB::overCurrentInitialSetTrap` - `WTI-CONSOLE-MIB::overCurrentInitialClearTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wiesemann Theis GmbH SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wiesemann Theis GmbH SNMP Traps.mdx index 6c87182378..0c743fb2f6 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wiesemann Theis GmbH SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wiesemann Theis GmbH SNMP Traps.mdx @@ -165,4 +165,3 @@ Netdata decodes **728 trap definitions** from Wiesemann Theis GmbH across **20 M - `Webio-ANx-MIB::wtWebioAn8Alert1` - `Webio-ANx-MIB::wtWebioAn8Alert2` - `Webio-ANx-MIB::wtWebioAn8Alert3` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wind River Systems SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wind River Systems SNMP Traps.mdx index 511df0fa01..f4c2347b2d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wind River Systems SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wind River Systems SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Wind River Systems across **1 MIB** i ### Sample decoded traps - `TMS-COMMON-MIB::tmsCommonSnmpV2TestTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wired For Management SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wired For Management SNMP Traps.mdx index 297ea99037..6d4d093320 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wired For Management SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wired For Management SNMP Traps.mdx @@ -151,4 +151,3 @@ Netdata decodes **1100 trap definitions** from Wired For Management across **6 M - `INTEL-WFM-MIB::wfmTempOKLNCGH` - `DELL-ASF-MIB::asfTrapUnderTemperature` - `INTEL-WFM-MIB::wfmTempLowWarningCritWarnLCGH` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wisi SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wisi SNMP Traps.mdx index 00c8d91e2b..a1e3f76cb0 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wisi SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wisi SNMP Traps.mdx @@ -149,4 +149,3 @@ Netdata decodes **22 trap definitions** from Wisi across **4 MIBs** into structu - `WISI-GTMODULES-MIB::gtModulesNotifyFailure` - `WISI-GTMODULES-MIB::gtModulesNotifyRedundancy` - `WISI-GTMODULES-MIB::gtModulesNotifyRedundancyClear` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wordperfect Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wordperfect Corp SNMP Traps.mdx index db1d4ed81d..99bfb7caa1 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wordperfect Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wordperfect Corp SNMP Traps.mdx @@ -150,4 +150,3 @@ Netdata decodes **23 trap definitions** from Wordperfect Corp across **5 MIBs** - `NGWASYNC::ngwasyncRestartTrap` - `NGWASYNC::ngwasyncGroupWiseLinkTrap` - `GWOVVMMIB::ngwovvmStartTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/World Wide Packets SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/World Wide Packets SNMP Traps.mdx index c571a4f978..4dc715c85e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/World Wide Packets SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/World Wide Packets SNMP Traps.mdx @@ -184,4 +184,3 @@ Netdata decodes **183 trap definitions** from World Wide Packets across **34 MIB - `WWP-ENVIRON-MIB::wwpEnvPowerSupplyStatusNotification` - `WWP-ENVIRON-MIB::wwpEnvFanModuleNotification` - `WWP-ENVIRON-MIB::wwpEnvTempNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wuhan Research Institute Of Posts And Telecommunications SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wuhan Research Institute Of Posts And Telecommunications SNMP Traps.mdx index 88701be2ba..0e433ee6a2 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wuhan Research Institute Of Posts And Telecommunications SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wuhan Research Institute Of Posts And Telecommunications SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **19 trap definitions** from Wuhan Research Institute Of Posts A - `WRI-POWER-MIB::powerFault` - `WRI-POWER-MIB::powerOk` - `WRI-CPU-MIB::cpuOverThreshold` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wyse Technology SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wyse Technology SNMP Traps.mdx index 0ff906b7ba..e739df6e85 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wyse Technology SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Wyse Technology SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **7 trap definitions** from Wyse Technology across **1 MIB** int - `WYSE-MIB::wbt3TrapDHCPUpdNotComplete` - `WYSE-MIB::wbt3TrapSNMPAccptLd` - `WYSE-MIB::wbt3TrapSNMPLdDone` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xedia Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xedia Corporation SNMP Traps.mdx index 6355d51e31..d93e24f8e7 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xedia Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xedia Corporation SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Xedia Corporation across **1 MIB** in ### Sample decoded traps - `XEDIA-SYSTEM-MIB::xsysSystemEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xerox SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xerox SNMP Traps.mdx index 596cffe5ca..cde4afbd55 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xerox SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xerox SNMP Traps.mdx @@ -153,4 +153,3 @@ Netdata decodes **26 trap definitions** from Xerox across **8 MIBs** into struct - `XEROX-HOST-RESOURCES-EXT-MIB::xcmHrDevDetailV2Event` - `XEROX-HOST-RESOURCES-EXT-MIB::xcmHrDevAlertV2Event` - `XEROX-PRINTER-EXT-MIB::xcmPrtGeneralConsoleLocalizationV2Event` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xiotech Corporation SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xiotech Corporation SNMP Traps.mdx index 9862054495..a16f6f4481 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xiotech Corporation SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xiotech Corporation SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **5 trap definitions** from Xiotech Corporation across **1 MIB** - `XIO-HUB-MIB::xioHubWarningEvent` - `XIO-HUB-MIB::xioHubSeriousEvent` - `XIO-HUB-MIB::xioHubFatalEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xircom SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xircom SNMP Traps.mdx index db67e26c40..feac64411d 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xircom SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xircom SNMP Traps.mdx @@ -142,4 +142,3 @@ Netdata decodes **1 trap definition** from Xircom across **1 MIB** into structur ### Sample decoded traps - `XIRCOM-MIB::printerTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xirrus Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xirrus Inc SNMP Traps.mdx index e431b18afb..a3410b7796 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xirrus Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xirrus Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **26 trap definitions** from Xirrus Inc across **1 MIB** into st - `XIRRUS-MIB::stationACLFailure` - `XIRRUS-MIB::stationRadiusAuthFailure` - `XIRRUS-MIB::resetArray` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xylogics Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xylogics Inc SNMP Traps.mdx index c61568290c..433dcecd25 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xylogics Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xylogics Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **40 trap definitions** from Xylogics Inc across **1 MIB** into - `XYLOGICS-TRAP-MIB::wanAlarmTrap` - `XYLOGICS-TRAP-MIB::wanAlarmClearTrap` - `XYLOGICS-TRAP-MIB::wanBpvThreshTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xytronix Research Design Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xytronix Research Design Inc SNMP Traps.mdx index 9b0dd23c45..c8d3c50890 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xytronix Research Design Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Xytronix Research Design Inc SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **26 trap definitions** from Xytronix Research Design Inc across - `XYTRONIX-MIB::digitalInput3Notification` - `XYTRONIX-MIB::digitalInput4Notification` - `XYTRONIX-MIB::relay1Notification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zao Light Communication SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zao Light Communication SNMP Traps.mdx index c9cd139c22..69e2313a8f 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zao Light Communication SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zao Light Communication SNMP Traps.mdx @@ -152,4 +152,3 @@ Netdata decodes **35 trap definitions** from Zao Light Communication across **7 - `DKSF-202-9-X-X-1::npBatteryTrap` - `DKSF-PWR-MIB::npRelayTrapOff` - `DKSF-PWR-MIB::npRelayTrapOn` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zenitel Norway AS SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zenitel Norway AS SNMP Traps.mdx index ece184b530..ad7410d5b3 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zenitel Norway AS SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zenitel Norway AS SNMP Traps.mdx @@ -147,4 +147,3 @@ Netdata decodes **43 trap definitions** from Zenitel Norway AS across **2 MIBs** - `ALPHACOM-MIB::systemLogEvent` - `ALPHACOM-MIB::callLogEvent` - `VS-DEVICE-MIB::ipsStarted` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zeus Technology Ltd SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zeus Technology Ltd SNMP Traps.mdx index c8ecf911d8..69426a574c 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zeus Technology Ltd SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zeus Technology Ltd SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **266 trap definitions** from Zeus Technology Ltd across **1 MIB - `ZXTM-MIB-SMIv2::fewfreefds` - `ZXTM-MIB-SMIv2::restartrequired` - `ZXTM-MIB-SMIv2::timemovedback` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zhone Technologies Inc SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zhone Technologies Inc SNMP Traps.mdx index d81e15477d..c57591c338 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zhone Technologies Inc SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zhone Technologies Inc SNMP Traps.mdx @@ -182,4 +182,3 @@ Netdata decodes **203 trap definitions** from Zhone Technologies Inc across **32 - `ZHONE-SECHTOR100-MIB::sechtor100FanStatusChange` - `ZHONE-SECHTOR100-MIB::sechtor100ThermoStatusChange` - `ZHNSYSMON::zhnSysMonAlarmSetEvent` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zhongxing Telecom Co Ltd Abbr Zte SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zhongxing Telecom Co Ltd Abbr Zte SNMP Traps.mdx index f16058d339..74d854a45e 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zhongxing Telecom Co Ltd Abbr Zte SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zhongxing Telecom Co Ltd Abbr Zte SNMP Traps.mdx @@ -218,4 +218,3 @@ Netdata decodes **765 trap definitions** from Zhongxing Telecom Co Ltd Abbr Zte - `ZXR10-MIB::zxr10StatisticsAlarmTrap` - `ZXR10-SNMP-SECURITY-MIB::failureTrap` - `ZXR10-SNMP-SECURITY-MIB::changestageTrap` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zoho Corporation Formerly Advent Network Management SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zoho Corporation Formerly Advent Network Management SNMP Traps.mdx index bce0f2d1a4..35d480bbeb 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zoho Corporation Formerly Advent Network Management SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zoho Corporation Formerly Advent Network Management SNMP Traps.mdx @@ -146,4 +146,3 @@ Netdata decodes **9 trap definitions** from Zoho Corporation Formerly Advent Net - `AdventNet-WebNMS-MIB::moAttrChangeNotification` - `AdventNet-WebNMS-MIB::alertClearNotification` - `AdventNet-WebNMS-MIB::alertWarningNotification` - diff --git a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zyxel Communications Corp SNMP Traps.mdx b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zyxel Communications Corp SNMP Traps.mdx index cdb6d92406..e013269c60 100644 --- a/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zyxel Communications Corp SNMP Traps.mdx +++ b/docs/Network Performance Monitoring/SNMP Traps/Integrations/Zyxel Communications Corp SNMP Traps.mdx @@ -223,4 +223,3 @@ Netdata decodes **1128 trap definitions** from Zyxel Communications Corp across - `ZyXEL-COE-MIB::overheat` - `ZyXEL-COE-MIB::overheatOver` - `ZYXEL-PRESTIGE-MIB::reboot` - diff --git a/docs/Network Performance Monitoring/Syslog from Network Devices/Integrations/Syslog from Network Devices.mdx b/docs/Network Performance Monitoring/Syslog from Network Devices/Integrations/Syslog from Network Devices.mdx index d1848a4d94..cebcbc86c9 100644 --- a/docs/Network Performance Monitoring/Syslog from Network Devices/Integrations/Syslog from Network Devices.mdx +++ b/docs/Network Performance Monitoring/Syslog from Network Devices/Integrations/Syslog from Network Devices.mdx @@ -91,6 +91,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Topologies/Integrations/ARP IP Neighbor Topology.mdx b/docs/Network Performance Monitoring/Topologies/Integrations/ARP IP Neighbor Topology.mdx index 4a5356b489..7c802917c4 100644 --- a/docs/Network Performance Monitoring/Topologies/Integrations/ARP IP Neighbor Topology.mdx +++ b/docs/Network Performance Monitoring/Topologies/Integrations/ARP IP Neighbor Topology.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Topologies/Integrations/BGP Peering Topology.mdx b/docs/Network Performance Monitoring/Topologies/Integrations/BGP Peering Topology.mdx index a7f7d576ee..374a4073a6 100644 --- a/docs/Network Performance Monitoring/Topologies/Integrations/BGP Peering Topology.mdx +++ b/docs/Network Performance Monitoring/Topologies/Integrations/BGP Peering Topology.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Topologies/Integrations/CDP Topology.mdx b/docs/Network Performance Monitoring/Topologies/Integrations/CDP Topology.mdx index c4f9261fdb..cea3f4dc1e 100644 --- a/docs/Network Performance Monitoring/Topologies/Integrations/CDP Topology.mdx +++ b/docs/Network Performance Monitoring/Topologies/Integrations/CDP Topology.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Topologies/Integrations/Cato Networks Topology.mdx b/docs/Network Performance Monitoring/Topologies/Integrations/Cato Networks Topology.mdx index 6038b331d5..d60dcb9fa0 100644 --- a/docs/Network Performance Monitoring/Topologies/Integrations/Cato Networks Topology.mdx +++ b/docs/Network Performance Monitoring/Topologies/Integrations/Cato Networks Topology.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Topologies/Integrations/FDB MAC Forwarding Topology.mdx b/docs/Network Performance Monitoring/Topologies/Integrations/FDB MAC Forwarding Topology.mdx index 4162a17f4b..11fb6885a1 100644 --- a/docs/Network Performance Monitoring/Topologies/Integrations/FDB MAC Forwarding Topology.mdx +++ b/docs/Network Performance Monitoring/Topologies/Integrations/FDB MAC Forwarding Topology.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Topologies/Integrations/LLDP Topology.mdx b/docs/Network Performance Monitoring/Topologies/Integrations/LLDP Topology.mdx index dfb3a5feeb..161ceadbab 100644 --- a/docs/Network Performance Monitoring/Topologies/Integrations/LLDP Topology.mdx +++ b/docs/Network Performance Monitoring/Topologies/Integrations/LLDP Topology.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Topologies/Integrations/Live Network Connections.mdx b/docs/Network Performance Monitoring/Topologies/Integrations/Live Network Connections.mdx index 45e3304ac7..5306ab18ee 100644 --- a/docs/Network Performance Monitoring/Topologies/Integrations/Live Network Connections.mdx +++ b/docs/Network Performance Monitoring/Topologies/Integrations/Live Network Connections.mdx @@ -91,6 +91,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Topologies/Integrations/Netdata Streaming Topology.mdx b/docs/Network Performance Monitoring/Topologies/Integrations/Netdata Streaming Topology.mdx index d790a92e26..5f58a4b3d9 100644 --- a/docs/Network Performance Monitoring/Topologies/Integrations/Netdata Streaming Topology.mdx +++ b/docs/Network Performance Monitoring/Topologies/Integrations/Netdata Streaming Topology.mdx @@ -91,6 +91,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Topologies/Integrations/OSPF Adjacency Topology.mdx b/docs/Network Performance Monitoring/Topologies/Integrations/OSPF Adjacency Topology.mdx index f061443e32..2d9b345ba7 100644 --- a/docs/Network Performance Monitoring/Topologies/Integrations/OSPF Adjacency Topology.mdx +++ b/docs/Network Performance Monitoring/Topologies/Integrations/OSPF Adjacency Topology.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Topologies/Integrations/STP Topology.mdx b/docs/Network Performance Monitoring/Topologies/Integrations/STP Topology.mdx index 030d95f9b6..6d344d023e 100644 --- a/docs/Network Performance Monitoring/Topologies/Integrations/STP Topology.mdx +++ b/docs/Network Performance Monitoring/Topologies/Integrations/STP Topology.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Network Performance Monitoring/Topologies/Integrations/vSphere Topology.mdx b/docs/Network Performance Monitoring/Topologies/Integrations/vSphere Topology.mdx index a89d643e5e..15430234f6 100644 --- a/docs/Network Performance Monitoring/Topologies/Integrations/vSphere Topology.mdx +++ b/docs/Network Performance Monitoring/Topologies/Integrations/vSphere Topology.mdx @@ -126,6 +126,3 @@ There are no alerts configured by default for this integration. ## Metrics - - - diff --git a/docs/Security and Privacy Design/Access Control and Feature Availability.mdx b/docs/Security and Privacy Design/Access Control and Feature Availability.mdx index 40a8a5d575..94eb35aee9 100644 --- a/docs/Security and Privacy Design/Access Control and Feature Availability.mdx +++ b/docs/Security and Privacy Design/Access Control and Feature Availability.mdx @@ -50,7 +50,7 @@ Without authentication, anyone who can reach the Netdata dashboard could access :::note -**Windows standalone Agents:** On Windows, standalone Agents on the free Community tier collect metrics but the local dashboard at `http://localhost:19999` is locked. To view monitoring data, connect the node to [Netdata Cloud](https://app.netdata.cloud) (free Community tier). Paid plans unlock the local dashboard. Air-gapped free standalone Windows installations cannot reach Netdata Cloud, so monitoring data cannot be viewed in that setup. Windows Child Agents streaming to a Linux-based Netdata parent do not show monitoring data in the parent dashboard for free users. For Windows installation details, see [Install Netdata on Windows](/docs/netdata-agent/installation/windows). +**Windows standalone Agents:** On Windows, standalone Agents on the free Community tier collect metrics but the local dashboard at `http://localhost:19999` is locked. To view monitoring data, connect the node to [Netdata Cloud](https://app.netdata.cloud) (free Community tier). Paid plans unlock the local dashboard. Air-gapped free standalone Windows installations cannot reach Netdata Cloud, so monitoring data cannot be viewed in that setup. When a Windows Child Agent streams to a Linux-based Netdata parent, the parent dashboard shows the Windows child's metrics normally — the Windows standalone local-dashboard lock does not apply, because the dashboard is served by the Linux parent rather than the Windows Agent. Sensitive functions on the Windows child still follow the standard access-control rules described in this document. For Windows installation details, see [Install Netdata on Windows](/docs/netdata-agent/installation/windows). ::: diff --git a/docs/Welcome to Netdata/Enterprise Evaluation Guide.mdx b/docs/Welcome to Netdata/Enterprise Evaluation Guide.mdx index ecb91d5b33..80d91de4ae 100644 --- a/docs/Welcome to Netdata/Enterprise Evaluation Guide.mdx +++ b/docs/Welcome to Netdata/Enterprise Evaluation Guide.mdx @@ -1,5 +1,5 @@ --- -custom_edit_url: "https://github.com/netdata/netdata/edit/master/docs/netdata-enterprise-evaluation-corrected.md" +custom_edit_url: "https://github.com/netdata/netdata/edit/master/docs/netdata-enterprise-evaluation.md" sidebar_label: "Enterprise Evaluation Guide" learn_status: "Published" learn_rel_path: "Welcome to Netdata" @@ -77,7 +77,7 @@ For more information and ways to further reduce Agent resource utilization, see Parent nodes aggregate data from multiple child agents and require resources that scale with the volume of metrics collected and other deployment decisions (clustered parents, centralized machine learning, etc). -The best practice is to have a cluster of Netdata Parents for every approximately 500 monitored nodes (2M metrics/second), like this: +The best practice is to have a cluster of Netdata Parents for every approximately 500 monitored nodes (2M metrics/second, see [Parent Sizing Guidelines](/docs/welcome-to-netdata/scalability#parent-sizing-guidelines) for the full 100/250/500-node breakdown), like this: | Monitored Nodes | Metric/s | CPU Cores | Memory | Network | Storage | |-----------------|-----------|-----------|--------|----------|---------------------------| diff --git a/docs/Welcome to Netdata/Monitor Anything.mdx b/docs/Welcome to Netdata/Monitor Anything.mdx index 2c14756230..060ac0d886 100644 --- a/docs/Welcome to Netdata/Monitor Anything.mdx +++ b/docs/Welcome to Netdata/Monitor Anything.mdx @@ -215,7 +215,7 @@ Need a dedicated integration? [Submit a feature request](https://github.com/netd | [Linux Audit Subsystem](/docs/collecting-metrics/collectors/operating-systems/linux-audit-subsystem) | Monitors Linux kernel audit subsystem status via NETLINK_AUDIT. | | [Linux kernel SLAB allocator statistics](/docs/collecting-metrics/collectors/operating-systems/linux-kernel-slab-allocator-statistics) | Collects metrics on kernel SLAB cache utilization to monitor the low-level performance impact of workloads in the kernel. | | [Linux ZSwap](/docs/collecting-metrics/collectors/operating-systems/linux-zswap) | Collects zswap performance metrics on Linux systems. | -| [macOS](/docs/collecting-metrics/collectors/operating-systems/macos) | Monitor macOS metrics for efficient operating system performance. | +| [macOS](/docs/collecting-metrics/collectors/operating-systems/macos) | Monitor macOS metrics for efficient operating system performance, power sources, thermal pressure, sensors, fans, storage, and networking. | | [Memory Statistics](/docs/collecting-metrics/collectors/operating-systems/memory-statistics) | Linux Virtual memory subsystem. | | [Memory Statistics (Win)](/docs/collecting-metrics/collectors/operating-systems/memory-statistics-win) | This collector monitors swap and memory pool statistics on Windows systems. | | [Memory Usage](/docs/collecting-metrics/collectors/operating-systems/memory-usage) | `/proc/meminfo` provides detailed information about the system's current memory usage. | diff --git a/docs/Welcome to Netdata/Scalability.mdx b/docs/Welcome to Netdata/Scalability.mdx index 96cdb31b40..552ad957b2 100644 --- a/docs/Welcome to Netdata/Scalability.mdx +++ b/docs/Welcome to Netdata/Scalability.mdx @@ -280,7 +280,7 @@ This isn't just optimization. It's a fundamentally different architecture that r
How many nodes can a single Netdata Parent handle?
-We recommend running Parents with up to 500 Agents (1.5M metrics/s). We have customers running larger Parents, but resources increase and performance decreases non-linearly. +We recommend running Parents with up to 500 Agents — see [Parent Sizing Guidelines](#parent-sizing-guidelines) above for the metrics/s and resource breakdown by scale. We have customers running larger Parents, but resources increase and performance decreases non-linearly.
diff --git a/docs/Welcome to Netdata/Welcome to Netdata.mdx b/docs/Welcome to Netdata/Welcome to Netdata.mdx index b1fc8e33bb..ed7f91a5c8 100644 --- a/docs/Welcome to Netdata/Welcome to Netdata.mdx +++ b/docs/Welcome to Netdata/Welcome to Netdata.mdx @@ -323,7 +323,7 @@ Based on extensive real-world deployments and independent academic validation, N - Parent resources include both ingestion and query workload - Storage rates are for all tiers combined; actual disk usage depends on retention configuration -- The recommended topology is having a cluster of Netdata Parents every 500 monitored nodes (2M metrics/s) +- The recommended topology is having a cluster of Netdata Parents every 500 monitored nodes (2M metrics/s) — see [Parent Sizing Guidelines](/docs/welcome-to-netdata/scalability#parent-sizing-guidelines) for the full breakdown - For default-settings sizing guidance per Agent (CPU, RAM, disk, and bandwidth), see [Resource utilization](/docs/netdata-agent/resource-utilization) ::: diff --git a/ingest/generated_map.yaml b/ingest/generated_map.yaml index a935a07561..e52fffd2ba 100644 --- a/ingest/generated_map.yaml +++ b/ingest/generated_map.yaml @@ -6,7 +6,7 @@ description: null meta_yaml: .nan message: .nan -- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-enterprise-evaluation-corrected.md +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-enterprise-evaluation.md sidebar_label: Enterprise Evaluation Guide learn_status: Published learn_rel_path: Welcome to Netdata @@ -3835,7 +3835,7 @@ learn_status: Published learn_rel_path: Collecting Metrics/Collectors/Networking keywords: '[''network'', ''connections'', ''sockets'', ''tcp'', ''udp'', ''ports'', - ''freebsd'']' + ''freebsd'', ''macos'']' description: .nan meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/network-viewer.plugin/metadata.yaml message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml @@ -16552,6 +16552,15 @@ description: null meta_yaml: .nan message: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/macos_unified_logs.md + sidebar_label: macOS Unified Logs + learn_status: Published + learn_rel_path: Logs/macOS Unified Logs + keywords: '[''macos'', ''macos logs'', ''unified logs'', ''oslog'', ''logs'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/logs/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE LOGS' metadata.yaml + FILE - custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/opentelemetry_logs.md sidebar_label: OpenTelemetry Logs learn_status: Published diff --git a/ingest/one_commit_back_file-dict.yaml b/ingest/one_commit_back_file-dict.yaml index 84d774ffc0..116b8bcb9d 100644 --- a/ingest/one_commit_back_file-dict.yaml +++ b/ingest/one_commit_back_file-dict.yaml @@ -2,6 +2,8 @@ learn_path: /docs/developer-and-contributor-corner/redistributed-software - custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/windows_event_logs.md learn_path: /docs/logs/windows-event-logs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/macos_unified_logs.md + learn_path: /docs/logs/macos-unified-logs - custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/systemd_journal_logs.md learn_path: /docs/logs/systemd-journal-logs - custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/opentelemetry_logs.md @@ -50,10 +52,10 @@ learn_path: /docs/developer-and-contributor-corner/contribute-to-the-documentation - custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-oss-limitations.md learn_path: /docs/security-and-privacy-design/access-control-and-feature-availability +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-enterprise-evaluation.md + learn_path: /docs/welcome-to-netdata/enterprise-evaluation-guide - custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/nodes-ephemerality.md learn_path: /docs/netdata-parents/node-types-and-lifecycle-reference -- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-enterprise-evaluation-corrected.md - learn_path: /docs/welcome-to-netdata/enterprise-evaluation-guide - custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/NIDL-Framework.md learn_path: /docs/dashboards-and-charts/nidl-framework - custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/reporting.md diff --git a/netlify.toml b/netlify.toml index 0ab0c329ff..7901f3351d 100644 --- a/netlify.toml +++ b/netlify.toml @@ -7809,10 +7809,6 @@ from="/docs//welcome-to-netdata" to="/docs/welcome-to-netdata" -[[redirects]] - from="/docs//at-a-glance" - to="/docs/welcome-to-netdata/enterprise-evaluation-guide" - [[redirects]] from="/docs/observability-centralization-points/streaming-and-replication-reference" to="/docs/netdata-parents/parent-child-configuration-reference"