Jaeger

Jaeger - Distributed tracing system

16686
Default Port
1
Services
5.5/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init jaeger

Template Overview

Everything you need to deploy Jaeger with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Jaeger
jaegertracing/all-in-one:latest
Categories
Other
Resource Requirements
CPU: Low, Memory: Low

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Jaeger up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Jaeger with:

Terminal
blastdock init jaeger

Interactive mode:

Terminal
blastdock init jaeger -i

What's Included

Jaeger
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Jaeger installation with these configuration options.

2
Required Fields
0
Optional Fields
0
Auto-Generated Passwords

Ui Port

Web UI port

port
Default: 16686
Required: Yes

Collector Port

Collector HTTP port

port
Default: 14268
Required: Yes

Docker Compose

Complete Docker Compose configuration for Jaeger deployment.

1
Services
0
Volumes
1
Networks
2
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  jaeger:
    image: jaegertracing/all-in-one:latest
    container_name: {{ project_name }}_jaeger
    restart: unless-stopped
    ports:
      - "16686"
      - "14268"
      - "6831/udp"
    environment:
      - COLLECTOR_ZIPKIN_HOST_PORT=: 9411
    networks:
      - jaeger_network

networks:
  jaeger_network:
    driver: bridge