Installation

Comprehensive guides for deploying Telegen across all supported platforms.

Deployment Methods

Platform

Mode

Guide

Unified Pipeline

All Platforms

Pipeline Deployment Guide

Kubernetes

Agent (DaemonSet)

Kubernetes Installation

Helm

Agent/Collector

Helm Installation

Docker

Agent/Collector

Docker Installation

Linux

systemd service

Linux Installation

OpenShift

Agent (DaemonSet)

OpenShift Installation

AWS ECS

Agent (Daemon)

AWS ECS Installation

Tip

New deployments should use the Unified Pipeline guide which includes data quality controls, transformation, and PII redaction.

Quick Reference

Minimum Requirements

  • Kernel: Linux 4.18+ (5.8+ recommended)

  • CPU: 200m

  • Memory: 256 MB

  • Network: Outbound to OTLP endpoint (4317/4318)

Choosing a Deployment Mode

        graph TD
    A[What do you need to monitor?] --> B{Local hosts?}
    B -->|Yes| C[Agent Mode]
    B -->|No| D{Remote devices?}
    D -->|Yes| E[Collector Mode]
    D -->|Both| F[Both Modes]
    
    C --> G[DaemonSet / systemd]
    E --> H[Deployment / service]
    F --> I[DaemonSet + Deployment]