-
Notifications
You must be signed in to change notification settings - Fork 326
create a metrics(cpu,disk usages) with fluent bit operator #1640
-
Hi,
I am trying to create a pipeline to collect data from my machine into influx.
Currently I am using normal fluent bit conf like so for example
[INPUT]
Name proc
Tag process.metrics
Proc_Name example_proc
Interval_Sec 1
Interval_NSec 0
Fd true
Mem true
[INPUT]
name cpu
tag example.cpu.metrics
Interval_Sec 10
Interval_NSec 0
My task is to replicate this with fluent bit operator yamls.
Looked at the documentation but came up short https://github.com/fluent/fluent-operator/tree/master/docs/plugins/fluentbit/input
Node exporter is the closest to what I need but I think you need Prometheus for that and I want to avoid using it for now.
Can anyone explain how to replicate the input for the metrics I need?
Thank you
Beta Was this translation helpful? Give feedback.