https://github.com/jaegertracing/jaeger-vscode
VSCode extension for Jaeger
https://github.com/jaegertracing/jaeger-vscode
Last synced: 5 months ago
JSON representation
VSCode extension for Jaeger
- Host: GitHub
- URL: https://github.com/jaegertracing/jaeger-vscode
- Owner: jaegertracing
- License: apache-2.0
- Created: 2019-11-27T09:05:56.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T09:54:39.000Z (over 2 years ago)
- Last Synced: 2025-04-07T08:37:12.427Z (6 months ago)
- Language: TypeScript
- Size: 133 KB
- Stars: 5
- Watchers: 1
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# VSCode extension for Jaeger
Jaeger, inspired by [Dapper](https://research.google.com/pubs/pub36356.html) and [OpenZipkin](http://zipkin.io/), is a distributed tracing system released as open source by Uber Technologies. It is used for monitoring and troubleshooting microservices-based distributed systems, including:
* Distributed context propagation
* Distributed transaction monitoring
* Root cause analysis
* Service dependency analysis
* Performance / latency optimizationOnce a Jaeger tracing system has been started, any applications (services) that are being tested within the IDE can report their tracing information to Jaeger through the use of an [OpenTracing compliant tracer](https://www.jaegertracing.io/docs/latest/client-libraries/) or using the emerging [OpenTelemetry clients](https://opentelemetry.io/) with Jaeger exporter.

This extension contributes three commands that can be used to manage a Jaeger _all-in-one_ server from within the IDE. These commands are:
* Observability: Start Jaeger [jaeger.start]
This command will start the Jaeger _all-in-one_ server (using in-memory storage).
* Observability: Show Jaeger UI [jaeger.ui]
This command will open a web view to show the Jaeger UI.
* Observability: Stop Jaeger [jaeger.stop]
This command will terminate the Jaeger _all-in-one_ server.