github.com/qiuhoude/go-web@v0.0.0-20220223060959-ab545e78f20d/prepare/23_proto_actor/jaegertracing/README.md (about)

     1  # Jeager Tracing / OpenTracing example
     2  
     3  To run the example an instance of Jaeger server is required running locally. The easiest way to run a jaeger server
     4  instance is starting it using the included docker-compose file like this
     5  
     6  ```bash
     7  docker-compose -f ./examples/jaegertracing/docker-compose.yaml up -d
     8  ``` 
     9  
    10  And the just run the example:
    11  
    12  ```bash
    13  go run ./examples/jaegertracing/main.go
    14  ```
    15  
    16  After the test has run (and also during), traces can found using the Jaeger UI started at http://localhost:16686.
    17