Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

6 total results found

Promethus Alert Manager

Fluent Bit Configuration

Put alert message to kafka via fluent-bit. Prometheus Alert Manager v Fluent Bit HTTP Webhook v Kafka Topic Fluent Bit [SERVICE] Flush 1 Log_Level debug [INPUT] Name http Listen 0.0.0.0 Port 9880 [FILTER...

fluent-bit
config
alertmanager
prometheus

Metrics

Minio Manual

MinIO 自身通过 HTTP 提供指标,不需要额外安装 exporter。默认 metrics 地址: http://<minio-host>:9000/minio/v2/metrics/cluster http://<minio-host>:9000/minio/prometheus/metrics 你可以将这个地址配置到 Prometheus 的 scrape_configs 中。

metrics
prometheus
minio
database

Storage

Prometheus Concept

https://prometheus.io/docs/prometheus/latest/storage/ Prometheus includes a local on-disk time series database, but also optionally integrates with remote storage systems. Local storage Prometheus's local time series database stores data in a custom, highly e...

tsdb
wal
storage
prometheus
middleware

Write Ahead Log

Prometheus Troubleshooting

Disk Watermark flood stage disk watermark [95%] exceeded on ... Launch Params --storage.tsdb.retention.time=7d --storage.tsdb.retention.size=50GB --storage.tsdb.wal-compression WAL 目录不受 tsdb.retention.size 控制 WAL 目录会定期自动压缩到 block 重启会强制压缩 WAL 数据 --storage....

troubleshooting
wal
prometheus
middleware

Storage CN

Prometheus Concept

https://prometheus.io/docs/prometheus/latest/storage/ Prometheus 包含一个本地磁盘上的时间序列数据库,也可以选择集成远程存储系统。 本地存储 Prometheus 的本地时序数据库以一种自定义且高效的格式将数据存储在本地存储中。 磁盘布局 Prometheus 会将采集到的样本按两个小时为一组划分为数据块(block)。每个两个小时的数据块对应一个目录,该目录中包含: 一个 chunks 子目录(存放该时间段内所有时间序列的样本) 一个元数据文件(...

tsdb
wal
storage
prometheus
middleware

Delete WAL For Launch

Prometheus Tricks

Sometimes readness probe will be timeout because of the large wal logs. If the data is not important, just delete it. kubectl exec -it xxx -- /bin/sh rm -rf /prometheus/wal/ kubectl rollout restart deploy/sts xxx

readness
wal
prometheus