PR feedback
parent
1f683d00cb
commit
b4adae8d92
|
@ -22,63 +22,68 @@ related:
|
|||
InfluxDB system buckets contain time series data used by and generated from the
|
||||
InfluxDB monitoring and alerting system and the task engine.
|
||||
|
||||
The following system buckets exist in each InfluxDB organization:
|
||||
Each InfluxDB organization includes the following system buckets:
|
||||
|
||||
- [_monitoring](#_monitoring-system-bucket)
|
||||
- [_tasks](#_tasks-system-bucket)
|
||||
- [\_monitoring](#_monitoring-system-bucket)
|
||||
- [\_tasks](#_tasks-system-bucket)
|
||||
|
||||
## _monitoring system bucket
|
||||
The `_monitoring` system bucket stores data generated from and used by InfluxDB
|
||||
[checks and notifications](/influxdb/v2.0/monitor-alert/).
|
||||
{{% note %}}
|
||||
The system bucket schemas below reference **InfluxDB data elements**.
|
||||
For more information, see [InfluxDB key concepts](/influxdb/v2.0/reference/key-concepts/data-elements/).
|
||||
{{% /note %}}
|
||||
|
||||
### _monitoring bucket schema
|
||||
## \_monitoring system bucket
|
||||
The `_monitoring` system bucket stores InfluxDB data used to
|
||||
[monitor data and send alerts](/influxdb/v2.0/monitor-alert/).
|
||||
|
||||
### \_monitoring bucket schema
|
||||
|
||||
- **statuses** _(measurement)_
|
||||
- **tags:**
|
||||
- **\_check\_id:** check ID
|
||||
- **\_check\_name:** check name
|
||||
- **\_level:** level evaluated by the check (ok, info, warn, or crit)
|
||||
- **\_source\_measurement:** original measurement queried by the check
|
||||
- **\_type:** check type (threshold or deadman)
|
||||
- _tags inherited from queried data_
|
||||
- **fields:**
|
||||
- **\_message:** message generated by the check
|
||||
- **\_source_timestamp:** original timestamp of the queried data
|
||||
- _other fields inherited from queried data_
|
||||
- **tags:**
|
||||
- **\_check\_id:** check ID
|
||||
- **\_check\_name:** check name
|
||||
- **\_level:** level evaluated by the check (ok, info, warn, or crit)
|
||||
- **\_source\_measurement:** original measurement queried by the check
|
||||
- **\_type:** check type (threshold or deadman)
|
||||
- _other tags inherited from queried data_
|
||||
- **fields:**
|
||||
- **\_message:** message generated by the check
|
||||
- **\_source_timestamp:** original timestamp of the queried data
|
||||
- _other fields inherited from queried data_
|
||||
- **notifications** _(measurement)_
|
||||
- **tags:**
|
||||
- **\_check\_id:** check ID that triggered the notification
|
||||
- **\_check\_name:** check name that triggered the notification
|
||||
- **\_level:** check-evaluated level that triggered the notification (ok, info, warn, or crit)
|
||||
- **\_notification_endpoint_id:** notification endpoint ID
|
||||
- **\_notification_endpoint_name:** notification endpoint name
|
||||
- **\_notification_rule_id:** notification rule ID
|
||||
- **\_notification_rule_name:** notification rule name
|
||||
- **\_sent:** sent status (true or false)
|
||||
- **\_source\_measurement:** original measurement queried by the check
|
||||
- **\_type:** check type (threshold or deadman)
|
||||
- _tags inherited from queried data_
|
||||
- **fields:**
|
||||
- **\_message:** message generated by the check
|
||||
- **\_source_timestamp:** original timestamp of the queried data
|
||||
- **\_status_timestamp:** timestamp when the status (`_level`) was evaluated
|
||||
- _other fields inherited from queried data_
|
||||
- **tags:**
|
||||
- **\_check\_id:** check ID that triggered the notification
|
||||
- **\_check\_name:** check name that triggered the notification
|
||||
- **\_level:** check-evaluated level that triggered the notification (ok, info, warn, or crit)
|
||||
- **\_notification_endpoint_id:** notification endpoint ID
|
||||
- **\_notification_endpoint_name:** notification endpoint name
|
||||
- **\_notification_rule_id:** notification rule ID
|
||||
- **\_notification_rule_name:** notification rule name
|
||||
- **\_sent:** sent status (true or false)
|
||||
- **\_source\_measurement:** original measurement queried by the check
|
||||
- **\_type:** check type (threshold or deadman)
|
||||
- _other tags inherited from queried data_
|
||||
- **fields:**
|
||||
- **\_message:** message generated by the check
|
||||
- **\_source_timestamp:** original timestamp of the queried data
|
||||
- **\_status_timestamp:** timestamp when the status (`_level`) was evaluated
|
||||
- _other fields inherited from queried data_
|
||||
|
||||
## _tasks system bucket
|
||||
## \_tasks system bucket
|
||||
The `_tasks` system bucket stores data related to [InfluxDB task](/influxdb/v2.0/process-data/) executions.
|
||||
|
||||
### _tasks bucket schema
|
||||
### \_tasks bucket schema
|
||||
|
||||
_A **task run** refers to a single task execution._
|
||||
|
||||
- **runs** _(measurement)_
|
||||
- **tags:**
|
||||
- **status:** task run status (success or failed)
|
||||
- **taskID:** task ID
|
||||
- **fields:**
|
||||
- **finishedAt:** timestamp when then task run finished
|
||||
- **logs:** log output from the task run
|
||||
- **requestedAt:** timestamp when the task run was requested
|
||||
- **runID** task run ID
|
||||
- **scheduledFor:** timestamp the task run was scheduled for
|
||||
- **startedAt:** timestamp when the task run started
|
||||
- **tags:**
|
||||
- **status:** task run status (success or failed)
|
||||
- **taskID:** task ID
|
||||
- **fields:**
|
||||
- **finishedAt:** timestamp when the task run finished
|
||||
- **logs:** log output from the task run
|
||||
- **requestedAt:** timestamp when the task run was requested
|
||||
- **runID** task run ID
|
||||
- **scheduledFor:** timestamp the task run was scheduled for
|
||||
- **startedAt:** timestamp when the task run started
|
||||
|
|
Loading…
Reference in New Issue