Skip to content

Commit

Permalink
docs: Add pipeline health condition docs (#969)
Browse files Browse the repository at this point in the history
Co-authored-by: Małgorzata Świeca <[email protected]>
  • Loading branch information
chrkl and mmitoraj authored Apr 15, 2024
1 parent 5e6de22 commit 8618339
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/user/02-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ The `tail` input plugin reads the log message from a log file managed by the con
"time": "2022-05-23T15:04:52.193317532Z",
"stream": "stdout",
"_p": "F",
"log": "{\"level\": \"warn\",\"message\": \"This is the actual message\",\"tenant\": \"myTenant\",\"traceID\": \"123\"}
"log": "{\"level\": \"warn\",\"message\": \"This is the actual message\",\"tenant\": \"myTenant\",\"traceID\": \"123\"}"
}
```

Expand Down
11 changes: 9 additions & 2 deletions docs/user/resources/02-logpipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,5 +211,12 @@ The status of the LogPipeline is determined by the condition types `AgentHealthy
| ConfigurationGenerated | False | ExpiredTLSCert | TLS certificate expired on YYYY-MM-DD |
| ConfigurationGenerated | True | TLSCertAboutToExpire | TLS certificate is about to expire, configured certificate is valid until YYYY-MM-DD |



Reflecting the LogPipeline's data flow in `TelemetryFlowHealthy` condition type is currently under development and determined by the following reasons:

| Condition Type | Condition Status | Condition Reason | Condition Message |
|----------------------|------------------|------------------|----------------------------------------------------------------|
| TelemetryFlowHealthy | True | FlowHealthy | Logs are flowing normally to backend |
| TelemetryFlowHealthy | False | BufferFillingUp | Buffer nearing capacity: incoming log rate exceeds the export rate |
| TelemetryFlowHealthy | False | NoLogsDelivered | No logs delivered to backend |
| TelemetryFlowHealthy | False | SomeDataDropped | Some logs dropped: backend unreachable or rejecting |
| TelemetryFlowHealthy | False | AllDataDropped | All logs dropped: backend unreachable or rejecting |
10 changes: 10 additions & 0 deletions docs/user/resources/04-tracepipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,3 +154,13 @@ The status of the TracePipeline is determined by the condition types `GatewayHea
| ConfigurationGenerated | True | ConfigurationGenerated | |
| ConfigurationGenerated | False | ReferencedSecretMissing | One or more referenced Secrets are missing |
| ConfigurationGenerated | False | MaxPipelinesExceeded | Maximum pipeline count limit exceeded |

Reflecting the TracePipeline's data flow in `TelemetryFlowHealthy` condition type is currently under development and determined by the following reasons:

| Condition Type | Condition Status | Condition Reason | Condition Message |
|----------------------|------------------|-------------------|-------------------------------------------------------------------------------------|
| TelemetryFlowHealthy | True | FlowHealthy | Traces are flowing normally to backend |
| TelemetryFlowHealthy | False | GatewayThrottling | Trace collector experiencing high influx: Unable to receive metrics at the current rate |
| TelemetryFlowHealthy | False | BufferFillingUp | Buffer nearing capacity: incoming trace rate exceeds the export rate |
| TelemetryFlowHealthy | False | SomeDataDropped | Some traces dropped: backend unreachable or rejecting |
| TelemetryFlowHealthy | False | AllDataDropped | All traces dropped: backend unreachable or rejecting |
10 changes: 10 additions & 0 deletions docs/user/resources/05-metricpipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,3 +181,13 @@ The status of the MetricPipeline is determined by the condition types `GatewayHe
| ConfigurationGenerated | True | ConfigurationGenerated | |
| ConfigurationGenerated | False | ReferencedSecretMissing | One or more referenced Secrets are missing |
| ConfigurationGenerated | False | MaxPipelinesExceeded | Maximum pipeline count limit exceeded |

Reflecting the MetricPipeline's data flow in `TelemetryFlowHealthy` condition type is currently under development and determined by the following reasons:

| Condition Type | Condition Status | Condition Reason | Condition Message |
|----------------------|------------------|-------------------|------------------------------------------------------------------------------------|
| TelemetryFlowHealthy | True | FlowHealthy | Metrics are flowing normally to backend |
| TelemetryFlowHealthy | False | GatewayThrottling | Metric gateway experiencing high influx: Unable to receive metrics at the current rate |
| TelemetryFlowHealthy | False | BufferFillingUp | Buffer nearing capacity: incoming trace rate exceeds the export rate |
| TelemetryFlowHealthy | False | SomeDataDropped | Some metrics dropped: backend unreachable or rejecting |
| TelemetryFlowHealthy | False | AllDataDropped | All metrics dropped: backend unreachable or rejecting |

0 comments on commit 8618339

Please sign in to comment.