Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Latest commit

 

History

History
25 lines (22 loc) · 872 Bytes

jvb-monitoring.md

File metadata and controls

25 lines (22 loc) · 872 Bytes

Meeting-operator supports two exporters right now:

  1. prometheus-jitsi-meet-exporter - Prometheus Exporter for Jitsi Meet written in Go.
  2. Telegraf - is an agent for collecting, processing, aggregating, and writing metrics.

By default, operator will install that exporter.

If you want to use telegraf instead of prometheus:

  jvb:
    exporter:
      type: "telegraf"
      image: "telegraf:latest"
      image_pull_policy: "Always"
      config_map_name: telegraf-config
      security_context:
        runAsNonRoot: true
      resources:
        requests:
          cpu: "0.1"
          memory: "128Mi"
      environments:
        - name: INFLUX_HOST
          value: "http://localhost:8086"