├── LICENSE ├── README.md ├── assets ├── prom-metrics-labels.excalidraw ├── prom-playground.excalidraw ├── prom-time-series.excalidraw ├── promql-avg_over_time.excalidraw ├── promql-instant-vector.excalidraw ├── promql-vector-matching-1.excalidraw ├── promql-vector-matching-2.excalidraw └── promql-vector-matching-3.excalidraw ├── scenario-01 ├── docker-compose.yaml ├── prometheus.yml ├── service-a.yaml └── service-b.yaml ├── scenario-02 ├── docker-compose.yaml ├── prometheus.yml └── service-a.yaml └── service ├── Dockerfile └── service.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/README.md -------------------------------------------------------------------------------- /assets/prom-metrics-labels.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/assets/prom-metrics-labels.excalidraw -------------------------------------------------------------------------------- /assets/prom-playground.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/assets/prom-playground.excalidraw -------------------------------------------------------------------------------- /assets/prom-time-series.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/assets/prom-time-series.excalidraw -------------------------------------------------------------------------------- /assets/promql-avg_over_time.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/assets/promql-avg_over_time.excalidraw -------------------------------------------------------------------------------- /assets/promql-instant-vector.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/assets/promql-instant-vector.excalidraw -------------------------------------------------------------------------------- /assets/promql-vector-matching-1.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/assets/promql-vector-matching-1.excalidraw -------------------------------------------------------------------------------- /assets/promql-vector-matching-2.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/assets/promql-vector-matching-2.excalidraw -------------------------------------------------------------------------------- /assets/promql-vector-matching-3.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/assets/promql-vector-matching-3.excalidraw -------------------------------------------------------------------------------- /scenario-01/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/scenario-01/docker-compose.yaml -------------------------------------------------------------------------------- /scenario-01/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/scenario-01/prometheus.yml -------------------------------------------------------------------------------- /scenario-01/service-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/scenario-01/service-a.yaml -------------------------------------------------------------------------------- /scenario-01/service-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/scenario-01/service-b.yaml -------------------------------------------------------------------------------- /scenario-02/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/scenario-02/docker-compose.yaml -------------------------------------------------------------------------------- /scenario-02/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/scenario-02/prometheus.yml -------------------------------------------------------------------------------- /scenario-02/service-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/scenario-02/service-a.yaml -------------------------------------------------------------------------------- /service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/service/Dockerfile -------------------------------------------------------------------------------- /service/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iximiuz/prometheus-playground/HEAD/service/service.py --------------------------------------------------------------------------------