FLOW observability chart
  • Python 64.9%
  • Go Template 35.1%
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-06-02 10:08:18 +02:00
chart Weekly Renovate updates 2 june 2026-06-02 10:08:18 +02:00
.gitignore EN-3111/Grafana exploration - allow read only access to suppliers 2026-03-23 13:25:48 +01:00
.gitlab-ci.yml Weekly Renovate updates 2 june 2026-06-02 10:08:18 +02:00
README.md Missing Alertmanager -> user relation in README.md 2025-07-23 08:15:59 +02:00
renovate.json feat(EN-2553): Update dependencies 2025-08-11 10:44:54 +02:00

observability-chart

Observability overview

graph
  subgraph "Application"
    clusterApplication(Application)
    k8s_service(Service)
    serviceMonitor(ServiceMonitor)

    k8s_service <--> clusterApplication
    k8s_service -- Metrics --> serviceMonitor
  end

  subgraph "Platform monitoring"
    Grafana
    Loki
    Minio
    Tempo
    Prometheus
    Alertmanager
    OTEL_Exporter(Opentelemetry Exporter)

    Minio <-- Storage --> Loki

    OTEL_Exporter -- Logs --> Loki
    OTEL_Exporter -- Traces --> Tempo

    Loki -- Logs --> Grafana
    Prometheus -- Metrics --> Grafana
    Tempo -- Traces --> Grafana
    Grafana -- Alerts --> Alertmanager
  end

  k8s_service -- Traces --> OTEL_Exporter
  serviceMonitor -- Metrics --> Prometheus

  Grafana --> User
  Alertmanager --> User