The Disk Layout of Prometheus TSDB
What is Time Series Data in Prometheus?
Created an issue for prometheus-operator: https://github.com/prometheus-operator/prometheus-operator/issues/5176
Currently, prometheus-operator shards Probe static config targets based on the hashing of prober url, while I think it should be based on the hashing of target url, as how it does for Ingress targets.
Have been working on project peg.py for a few nights and happy to release 0.1.0 version to #pypi
https://github.com/soasme/peg.py
I'm certain it has a lot of bugs but will crash them in the following nights.
Share my comment here for blackbox-exporter PR 884: https://github.com/prometheus/blackbox_exporter/pull/884#issuecomment-1308404219
Context:
Should we put the content of blackbox monitoring endpoint into logs?
My answer is yes but with default option turning off.
Concern:
1. log record size too large.
2. credentials leak.
My thoughts:
1. Some endpoints returns rather small chunk of data.
2. A tool should provide let user make the best judgement.
We had some troubles identifying why a specific HTTP probe with a fail_if_body_matches_regexp did not work for a specific website. In the end, the website started to deliver compressed data, so the...