You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
shortDescription: "The Network Time Protocol (NTP) is a networking protocol for clock synchronization between computer systems"
11
+
description: |
12
+
The Network Time Protocol (NTP) is a networking protocol for clock synchronization between computer systems over packet-switched, variable-latency data networks. In operation since before 1985, NTP is one of the oldest Internet protocols in current use. NTP was designed by David L. Mills of the University of Delaware.
Fluentd instruments Prometheus metrics and annotates the pods with Prometheus annotations.
3
+
4
+
For Fluentd to expose Prometheus metrics, the following plugins need to be enabled:
5
+
- 'prometheus' input plugin
6
+
- 'prometheus_monitor' input plugin
7
+
- 'prometheus_output_monitor' input plugin
8
+
9
+
As seen in the official plugin documentation (https://github.com/fluent/fluent-plugin-prometheus/blob/master/README.md), they can be enabled with the following configurations:
10
+
```
11
+
<source>
12
+
@type prometheus
13
+
@id in_prometheus
14
+
bind "0.0.0.0"
15
+
port 24231
16
+
metrics_path "/metrics"
17
+
</source>
18
+
19
+
<source>
20
+
@type prometheus_monitor
21
+
@id in_prometheus_monitor
22
+
</source>
23
+
24
+
<source>
25
+
@type prometheus_output_monitor
26
+
@id in_prometheus_output_monitor
27
+
</source>
28
+
```
29
+
30
+
If you are deploying Fluentd using the official Helm chart (https://github.com/fluent/helm-charts/tree/main/charts/fluentd), it already has these plugins enabled by default in its configuration, so no additional actions are needed.
Fluentd is an open source data collector, which lets you unify the data collection and consumption for a better use and understanding of data.
3
+
4
+
5
+
# Prometheus and exporters
6
+
Fluentd already has a Prometheus endpoint with all the metrics exposed on the port 24231. In Kubernetes the pod is already annotated, so with the Sysdig agent you can scrape the endpoint right away.
7
+
8
+
# Metrics
9
+
- Fluentd internal statistics
10
+
11
+
# Attributions
12
+
Configuration files, dashboards and alerts are maintained by [Sysdig team](https://sysdig.com/).
0 commit comments