fluent-plugin-prometheus
fluent-plugin-prometheus copied to clipboard
A fluent plugin that collects metrics and exposes for Prometheus.
We run pretty much everything on kubernetes/prometheus/ fluentd/elasticsearch and currently using we are > k8s.gcr.io/fluentd-elasticsearch:v2.4.0 which seems to include this plugin. We sometimes have bursts of logs in our environments...
I use fluentd to collect logs and export histogram metrics. Some values in buckets were greater than `count`.   | Bucket | Count -- | -- | -- 2020-09-25...
We are running `fluentd v1.2.2` and `fluent-plugin-prometheus v1.0.1` and we've identified few servers that report negative numbers for the `fluentd_output_status_buffer_total_bytes` metric. Element | Value -- | -- fluentd_output_status_buffer_total_bytes{cluster="abc",datacenter="xyz",env="prd",host="kubw-48",instance="x.x.x.x:24231",job="kubernetes-pods",k8s_app="fluentd-logging",kubernetes_namespace="kube-system",kubernetes_pod_name="fluentd-worker-35c9d",kubernetes_pod_node_name="kubw-48",node="kubw-48",plugin_id="object:3fe5d891e918",role="worker",type="forward"} | -19394669...
I've noticed that once a fluentd pods restarts, all data collected by prometheus plugin is lost. Is there an option to write data to disk and read it on start?...
I am trying to export a metric with labels created by kubernetes_metadata filter. I'm using the following match: ``` @type parser key_name log @type regexp expression upstream: \"http://(?.*?)/.*?\" @type prometheus...
Hey Guys, I have fluentd setup which publishes metrics to prometheus server. I have an HTTP_OUT plugin enabled as my http output. What I am after is the count of...
Hi! I'm trying to add a gauge with a constant value in order to see what helm configuration is deployed. It's an idea that's similar to #40 but just related...
- description In our scenario, fluentd-plugin-prometheus was used to collect metrics, some metrics label parsed from regexp, while some fields are not ASCII. Result show unreadble code - fluentd conf...
Hello, I used the plugin to monitor the fluentd. And I also want to get how many resource (CPU, memory, etc) fluentd used ,can the plugin prove these data? Or...
I'm using the ruby-style syntax to define fluentd configuration. I have a config block that looks like: ```ruby match('output.**') do type :copy store { type :prometheus metric { name :fluentd_output_status_num_records_total...