Skip to content

Instantly share code, notes, and snippets.

View tanmay-bhat's full-sized avatar

Tanmay Bhat tanmay-bhat

View GitHub Profile
@tanmay-bhat
tanmay-bhat / fluentbit-docker-compose.yaml
Last active June 22, 2022 12:42
fluent-bit docker-compose example file which collects and parses apache & nginx logs
version: "3.5"
services:
fluentbit:
image: cr.fluentbit.io/fluent/fluent-bit
ports:
- "24224:24224"
- "24224:24224/udp"
volumes:
- ./:/fluent-bit/etc/
flog:
@mikejoh
mikejoh / prometheus.md
Last active January 3, 2025 10:03
Prometheus troubleshooting

Prometheus troubleshooting

List the number of top 10 metrics and how many data points are saved

This will give you a hint on which metrics that has the highest cardinality.

topk(10, count by (__name__, job)({__name__=~".+"}))