Skip to content

Add alert when fluentd queue buffers grow too large #1048

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions etc/kayobe/kolla/config/prometheus/fluentd.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{% raw %}
groups:
- name: Fluentd
rules:
- alert: FluentdBufferTooLarge
expr: (fluentd_output_status_buffer_total_bytes / 1024^2) > 128
for: 15m
labels:
severity: warning
annotations:
summary: "Fluentd at {{ $labels.instance }} reports large queue buffers"
description: "Fluentd queue buffers on {{ $labels.instance }} are using {{ $value }} MiB."
{% endraw %}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
features:
- |
Adds a new Prometheus alert ``FluentdBufferTooLarge`` which is raised when
the total size of queue buffers grows above 128 MiB.
Loading