Search This Blog

Showing posts with label Distributed Tracing. Show all posts
Showing posts with label Distributed Tracing. Show all posts

Thursday, 8 August 2019

How to Setup Jaeger on local using docker

Introduction to Jaeger

Jaeger : open source, end-to-end distributed tracing Monitor and troubleshoot transactions in complex distributed systems .

Steps as below for setup Jaeger:
  1. Docker Pull Command as below
    docker pull jaegertracing/all-in-one
  2. Jaeger run in docker as below
    docker run -d --name jaeger -e COLLECTOR_ZIPKIN_HTTP_PORT=9411 -p 5775:5775/udp -p 6831:6831/udp -p 6832:6832/udp -p 5778:5778 -p 16686:16686 -p 14268:14268 -p 9411:9411 jaegertracing/all-in-one:latest
  3. open "http://localhost:16686/" url in browser.

Screen shot


Screen Shot 1: You will see below screen when execute commands


Screen Shot 2: You will get Jeager UI

Creating a NuGet Package Feed to Host Artifacts

Step-by-Step Guide: Creating a NuGet Package Feed to Host Artifacts 🔹 Step 1: Create a C# Class Library and Generate NuG...

Recent Post