https://github.com/JSONbored/signoz-aio
All-in-one SigNoz for Unraid: a single self-hosted container bundling SigNoz UI/API, OpenTelemetry collector, ClickHouse, and ZooKeeper, with optional built-in local host monitoring for metrics, logs, Docker stats, and OTLP ingestion.
https://github.com/JSONbored/signoz-aio
aio clickhouse containers devops docker homelab logging metrics monitoring observability opentelemetry otlp prometheus self-hosted signoz telemetry tracking unraid unraid-ca zookeeper
Last synced: about 1 month ago
JSON representation
All-in-one SigNoz for Unraid: a single self-hosted container bundling SigNoz UI/API, OpenTelemetry collector, ClickHouse, and ZooKeeper, with optional built-in local host monitoring for metrics, logs, Docker stats, and OTLP ingestion.
- Host: GitHub
- URL: https://github.com/JSONbored/signoz-aio
- Owner: JSONbored
- Created: 2026-03-30T00:51:13.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-04T12:14:08.000Z (about 1 month ago)
- Last Synced: 2026-05-04T14:18:42.166Z (about 1 month ago)
- Topics: aio, clickhouse, containers, devops, docker, homelab, logging, metrics, monitoring, observability, opentelemetry, otlp, prometheus, self-hosted, signoz, telemetry, tracking, unraid, unraid-ca, zookeeper
- Language: Python
- Homepage: https://aethereal.dev
- Size: 303 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Support: docs/support-thread-template.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# SigNoz Unraid Suite

This repo packages two Unraid Community Applications for SigNoz:
- `signoz-aio`: the full self-hosted backend, UI, collector, ClickHouse, and ZooKeeper stack.
- `signoz-agent`: a lightweight OpenTelemetry Collector companion for remote hosts, stricter separation, and custom edge collection.
Both templates use the same support surface: [JSONbored/signoz-aio issues](https://github.com/JSONbored/signoz-aio/issues).
## Templates
### signoz-aio
`signoz-aio` packages the full self-hosted SigNoz stack into a single Unraid-friendly image and CA app template.
The image follows the current official SigNoz Docker deployment instead of inventing a custom rewrite. It supervises the services SigNoz currently expects for a complete small-to-medium self-hosted install:
- `signoz`
- `signoz-otel-collector`
- `clickhouse`
- `zookeeper`
### signoz-agent
`signoz-agent` packages the official OpenTelemetry Collector Contrib collector as a SigNoz-focused Unraid companion app.
Use it when you want to:
- collect telemetry from remote machines and forward it to `signoz-aio`
- keep host/Docker mounts out of the main SigNoz backend container
- run advanced collector pipelines without replacing the backend AIO template
The agent defaults to no host root, Docker socket, or Docker log mounts. Those are advanced opt-in settings only.
## What Is Inside The Image
The image includes all of the stateful pieces needed for a self-contained SigNoz install:
- `signoz`
- the main SigNoz UI and API service
- stores application metadata in an internal SQLite database persisted under `/appdata/signoz`
- `signoz-otel-collector`
- receives OTLP data on `4317` and `4318`
- runs the telemetry-store migrations SigNoz needs in ClickHouse
- `clickhouse`
- the primary telemetry database for traces, logs, metrics, and derived telemetry tables
- `zookeeper`
- internal coordination layer used by the official SigNoz ClickHouse deployment
The image does not require any separate Postgres, TimescaleDB, or Redis sidecars. SigNoz's long-term telemetry data lives in ClickHouse, while SigNoz's app/config metadata in this AIO image lives in SQLite.
## Advanced Database Options
The default install is fully self-contained and uses:
- SQLite for SigNoz metadata
- bundled ClickHouse for telemetry storage
- bundled ZooKeeper for ClickHouse coordination
For power users, the advanced app settings also support:
- external PostgreSQL for SigNoz metadata
- root user provisioning through official SigNoz environment variables
- external ClickHouse endpoints for advanced deployments
Important limitation:
- PostgreSQL can replace SQLite for metadata
- PostgreSQL does not replace ClickHouse for traces, metrics, and logs
- if you move to external ClickHouse, you are moving into a more advanced deployment model and should already understand your ClickHouse and ZooKeeper topology
## Architecture
```mermaid
flowchart LR
A["Apps / SDKs / Agents"] -->|"OTLP gRPC :4317"| B["signoz-otel-collector"]
A -->|"OTLP HTTP :4318"| B
B -->|"metrics / logs / traces"| C["ClickHouse"]
D["SigNoz UI/API :8080"] -->|"query + metadata reads"| C
D -->|"app metadata"| E["SQLite (/appdata/signoz/signoz.db)"]
C -->|"cluster coordination"| F["ZooKeeper"]
G["/appdata"] --> C
G --> E
G --> F
G --> H["generated.env / runtime config"]
```
## Persistence Layout
The Unraid app intentionally keeps the mount surface simple by using one root path:
- `/appdata`
Inside that mount, the container manages:
- `/appdata/clickhouse`
- `/appdata/signoz`
- `/appdata/zookeeper`
- `/appdata/config`
- `/appdata/tmp`
## Current Status
The single-image runtime is implemented and validated.
- the image supervises `signoz`, `signoz-otel-collector`, `clickhouse`, and `zookeeper`
- `linux/amd64` build passes
- pytest-backed Docker integration testing covers:
- first boot
- telemetry-store migrations
- OTLP listener readiness
- restart and persistence
- advanced runtime preflight paths
- `signoz-agent` has a separate image, template, generated collector config, and Docker-backed integration tests for forwarding, Prometheus scraping, and fail-fast security checks
## First-Run Notes
- first startup is heavier than a typical single-service app because ClickHouse, ZooKeeper, SigNoz, and the collector all need to initialize
- expect more RAM and disk use than lighter AIO images
- the default setup keeps things intentionally simple:
- one `/appdata` root
- one UI port
- two OTLP ingest ports
- sane advanced defaults for the collector and internal ZooKeeper housekeeping
## Getting Data Into SigNoz
SigNoz is only useful once something is sending telemetry into it. This image gives you ready OTLP endpoints, but it does not automatically reach out and scrape your entire server by default.
The easiest ingestion paths are:
- instrument applications with OpenTelemetry and send directly to:
- `http://YOUR-UNRAID-IP:4317` for OTLP gRPC
- `http://YOUR-UNRAID-IP:4318` for OTLP HTTP
- run a separate OpenTelemetry Collector or Alloy agent on the Unraid host
- run `signoz-agent` on this host or another machine
- configure that agent to:
- scrape Prometheus endpoints
- collect Docker container metrics
- tail Docker or file-based logs
- forward everything into this `signoz-aio` container
Why keep the host agent separate?
- it avoids giving the main SigNoz container broad access to the Docker socket
- it avoids mounting host `/proc`, `/sys`, and container log directories into the main UI/database image
- it keeps the AIO install safe and beginner-friendly while still giving power users a clean upgrade path
## Recommended Monitoring Layout For Unraid
```mermaid
flowchart LR
A["Unraid host"] -->|"host metrics"| B["Optional built-in host agent"]
C["Docker containers"] -->|"docker stats + logs"| B
D["Apps with OTel SDKs"] -->|"direct OTLP or via agent"| B
E["Apps with Prometheus endpoints"] -->|"optional scrape targets"| B
B -->|"local OTLP"| F["SigNoz internal collector"]
F --> G["SigNoz UI"]
F --> H["ClickHouse + SQLite + ZooKeeper"]
```
For most single-host users, this is the sweet spot:
- `signoz-aio` stays the central backend and UI
- the optional built-in local host agent can handle host collection on the same Unraid machine
- instrumented apps can either send directly to SigNoz or rely on the local host agent for extra collection
For remote hosts or stricter separation, run `signoz-agent` and point it at the `signoz-aio` OTLP endpoint.
## Releases
`signoz-aio` uses upstream-version-plus-AIO-revision releases such as `v0.120.0-aio.1`.
`signoz-agent` uses upstream-collector-version-plus-agent-revision releases such as `0.139.0-agent.1`.
Every `main` build publishes `latest`, the exact pinned upstream version, an explicit packaging line tag, and `sha-`.
See [docs/releases.md](docs/releases.md) for the central release process details.
The CA templates use the Docker Hub image names:
- `jsonbored/signoz-aio`
- `jsonbored/signoz-agent`
## Quick Start Paths
### 1. Instrumented apps
If an app already supports OpenTelemetry, point it at:
- `OTEL_EXPORTER_OTLP_ENDPOINT=http://YOUR-UNRAID-IP:4317`
for gRPC exporters
- `OTEL_EXPORTER_OTLP_ENDPOINT=http://YOUR-UNRAID-IP:4318`
for HTTP exporters
Then verify in SigNoz:
- traces appear in APM / Traces
- application metrics appear in Metrics Explorer
- application logs appear in Logs if the app also exports logs
### 2. Prometheus scrape targets
If an app exposes a `/metrics` endpoint, use a host collector to scrape it and forward to SigNoz.
Starter example:
- [Prometheus scrape collector example](docs/examples/otelcol-prometheus-scrape.yaml)
### 3. Unraid host + Docker telemetry
If you want host metrics, Docker container metrics, and container logs from the same Unraid machine, enable the built-in local host agent in the app settings and explicitly fill only the advanced host/Docker path fields you want to use.
Starter example:
- [Docker / host collector example](docs/examples/otelcol-docker-host-agent.yaml)
The built-in host agent is auto-generated from the mounts and variables you provide. A default install does not mount the host root, Docker socket, or Docker log directory. When you opt in, it can enable:
- Unraid CPU, memory, disk, and filesystem metrics
- Docker container resource metrics
- Docker stdout/stderr logs
- optional Prometheus scrape targets you define
Common explicit path values are:
- Host Root Path: `/`
- Docker Socket: `/var/run/docker.sock`
- Docker Container Logs Path: `/var/lib/docker/containers`
This is the best fit for users who want:
- one main AIO install
- minimal extra setup
- local Unraid and Docker observability without a second app
## What We Recommend Newcomers Do First
1. Get `signoz-aio` running with defaults.
2. Verify the UI loads on port `8080`.
3. Point one app or one collector at OTLP `4317` or `4318`.
4. Confirm data appears in SigNoz.
5. Only then expand into Prometheus scraping, host metrics, and container logs.
## What This AIO Does Not Bundle
This image is self-contained for the SigNoz backend stack, but observability data still has to come from somewhere. It does not automatically collect telemetry from every remote host or every service you run.
That means you still need to connect senders such as:
- OpenTelemetry SDKs inside apps
- OpenTelemetry Collector agents
- Prometheus scrape pipelines
- log shippers or agent-based host collectors
The optional built-in local host agent can collect from the same Unraid machine when you explicitly populate the advanced mounts, including the Docker socket. That is useful, but it is also a security tradeoff and it does not replace proper agents for remote systems.
## Docs And Examples
- [Ingestion guide](docs/ingestion-guide.md)
- [Configuration matrix](docs/configuration-matrix.md)
- [signoz-agent component README](components/signoz-agent/README.md)
- [Docker / host collector example](docs/examples/otelcol-docker-host-agent.yaml)
- [Prometheus scrape collector example](docs/examples/otelcol-prometheus-scrape.yaml)
## Helpful References
- [SigNoz self-host Docker docs](https://signoz.io/docs/install/docker/)
- [SigNoz Docker Collection Agent overview](https://signoz.io/docs/opentelemetry-collection-agents/docker/overview/)
- [SigNoz Docker Collection Agent configuration](https://signoz.io/docs/opentelemetry-collection-agents/docker/configure/)
- [SigNoz Prometheus metrics guide](https://signoz.io/docs/userguide/prometheus-metrics)
- [SigNoz deployment README](https://github.com/SigNoz/signoz/tree/main/deploy)
- [SigNoz single-binary consolidation issue](https://github.com/SigNoz/signoz/issues/7309)
## Star History
[](https://www.star-history.com/#JSONbored/signoz-aio&Date)