From 44ca36bc088c0f30e8275281be9a7c3e042b0d90 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Wed, 8 Oct 2025 07:09:58 -0400 Subject: [PATCH 1/2] Enabling metrics for Gitea. --- app-configs/rinoa/gitea/conf/app.ini.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app-configs/rinoa/gitea/conf/app.ini.j2 b/app-configs/rinoa/gitea/conf/app.ini.j2 index 42b31d5..8bcf80f 100644 --- a/app-configs/rinoa/gitea/conf/app.ini.j2 +++ b/app-configs/rinoa/gitea/conf/app.ini.j2 @@ -123,3 +123,6 @@ ENABLED = true [webhook] ALLOWED_HOST_LIST = private,104.21.1.234,172.67.152.146 SKIP_TLS_VERIFY = true + +[metrics] +ENABLED = true \ No newline at end of file -- 2.52.0 From e6f2f5ec24256eb5b4bf52110b8bb7d41f478d25 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Wed, 8 Oct 2025 07:10:27 -0400 Subject: [PATCH 2/2] Adding service scrape targets in Signoz OTEL collector. --- .../common/otel/otel-collector-config.yaml.j2 | 29 +++++++++++++++++-- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/app-configs/rinoa/signoz/common/otel/otel-collector-config.yaml.j2 b/app-configs/rinoa/signoz/common/otel/otel-collector-config.yaml.j2 index de33e37..523efdb 100644 --- a/app-configs/rinoa/signoz/common/otel/otel-collector-config.yaml.j2 +++ b/app-configs/rinoa/signoz/common/otel/otel-collector-config.yaml.j2 @@ -98,11 +98,34 @@ receivers: global: scrape_interval: 60s scrape_configs: - - job_name: otel-collector + - job_name: "rinoa-containers" + docker_sd_configs: + - host: unix:///var/run/docker.sock + - host_networking_host: "rinoa" + - job_name: "apprise-api" + static_configs: + - targets: ["apprise:8000"] + - job_name: "authelia" + static_configs: + - targets: ["authelia:9959"] + - job_name: "cloudflared" + static_configs: + - targets: ["cloudflared-agent-dockflared-tunnel:20119"] + - job_name: "dawarich" + static_configs: + - targets: ["dawarich-app:9394", "dawarich-sidekiq:9394"] + - job_name: "gitea" + static_configs: + - targets: ["gitea:3000"] + - job_name: "immich" + static_configs: + - targets: ["immich-server:8081", "immich-server:8082"] + - job_name: "otel-collector" static_configs: - targets: ["localhost:8888"] - labels: - job_name: otel-collector + - job_name: "scraparr" + static_configs: + - targets: ["scraparr:7100"] processors: batch: -- 2.52.0