https://github.com/automatik-engineering/crispy-guide

jaeger

https://github.com/automatik-engineering/crispy-guide

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (9.9%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

jaeger

Basic Info
  • Host: GitHub
  • Owner: automatik-engineering
  • License: apache-2.0
  • Language: Go
  • Default Branch: main
  • Homepage:
  • Size: 1.74 MB
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 14
  • Releases: 0
Created almost 2 years ago · Last pushed over 1 year ago
Metadata Files
Readme Changelog Contributing License Code of conduct Threat model Codeowners Security Governance

README.md

Stand With Ukraine

Slack chat Unit Tests Coverage Status Project+Community stats FOSSA Status OpenSSF Scorecard OpenSSF Best Practices CLOMonitor Artifact Hub

Jaeger - a Distributed Tracing System

💥💥💥 Jaeger v2 is coming! Read the blog post and try it out.

mermaid graph TD SDK["OpenTelemetry SDK"] --> |HTTP or gRPC| COLLECTOR COLLECTOR["Jaeger Collector"] --> STORE[Storage] COLLECTOR --> |gRPC| PLUGIN[Storage Plugin] COLLECTOR --> |gRPC/sampling| SDK PLUGIN --> STORE QUERY[Jaeger Query Service] --> STORE QUERY --> |gRPC| PLUGIN UI[Jaeger UI] --> |HTTP| QUERY subgraph Application Host subgraph User Application SDK end end

Jaeger, inspired by Dapper and OpenZipkin, is a distributed tracing platform created by Uber Technologies and donated to Cloud Native Computing Foundation. It can be used for monitoring microservices-based distributed systems:

  • Distributed context propagation
  • Distributed transaction monitoring
  • Root cause analysis
  • Service dependency analysis
  • Performance / latency optimization

See also:

Jaeger is hosted by the Cloud Native Computing Foundation (CNCF) as the 7th top-level project (graduated in October 2019). If you are a company that wants to help shape the evolution of technologies that are container-packaged, dynamically-scheduled and microservices-oriented, consider joining the CNCF. For details about who's involved and how Jaeger plays a role, read the CNCF Jaeger incubation announcement and Jaeger graduation announcement.

Get Involved

Jaeger is an open source project with open governance. We welcome contributions from the community, and we would love your help to improve and extend the project. Here are some ideas for how to get involved. Many of them do not even require any coding.

Features

High Scalability

Jaeger backend is designed to have no single points of failure and to scale with the business needs. For example, any given Jaeger installation at Uber is typically processing several billions of spans per day.

Relationship with OpenTelemetry

The Jaeger and OpenTelemetry projects have different goals. OpenTelemetry aims to provide APIs and SDKs in multiple languages to allow applications to export various telemetry data out of the process, to any number of metrics and tracing backends. The Jaeger project is primarily the tracing backend that receives tracing telemetry data and provides processing, aggregation, data mining, and visualizations of that data. For more information please refer to a blog post Jaeger and OpenTelemetry.

Jaeger was originally designed to support the OpenTracing standard. The terminology is still used in Jaeger UI, but the concepts have direct mapping to the OpenTelemetry data model of traces.

| Capability | OpenTracing concept | OpenTelemetry concept | | ------------- | ------------------- | --------------------- | | Represent traces as directed acyclic graphs (not just trees) | span references | span links | | Strongly typed span attributes | span tags | span attributes | | Strongly typed events/logs | span logs | span events |

Jaeger project recommends OpenTelemetry SDKs for instrumentation, instead of now-deprecated Jaeger SDKs.

Multiple storage backends

Jaeger can be used with a growing a number of storage backends: * It natively supports two popular open source NoSQL databases as trace storage backends: Cassandra and Elasticsearch. * It integrates via a gRPC API with other well known databases that have been certified to be Jaeger compliant: TimescaleDB via Promscale, ClickHouse. * There is embedded database support using Badger and simple in-memory storage for testing setups. * ScyllaDB can be used as a drop-in replacement for Cassandra since it uses the same data model and query language. * There are ongoing community experiments using other databases, such as InfluxDB, Amazon DynamoDB, YugabyteDB(YCQL).

Modern Web UI

Jaeger Web UI is implemented in Javascript using popular open source frameworks like React. Several performance improvements have been released in v1.0 to allow the UI to efficiently deal with large volumes of data and to display traces with tens of thousands of spans (e.g. we tried a trace with 80,000 spans).

Cloud Native Deployment

Jaeger backend is distributed as a collection of Docker images. The binaries support various configuration methods, including command line options, environment variables, and configuration files in multiple formats (yaml, toml, etc.).

The recommended way to deploy Jaeger in a production Kubernetes cluster is via the Jaeger Operator.

The Jaeger Operator provides a CLI to generate Kubernetes manifests from the Jaeger CR. This can be considered as an alternative source over plain Kubernetes manifest files.

The Jaeger ecosystem also provides a Helm chart as an alternative way to deploy Jaeger.

Observability

All Jaeger backend components expose Prometheus metrics by default (other metrics backends are also supported). Logs are written to standard out using the structured logging library zap.

Security

Third-party security audits of Jaeger are available in https://github.com/jaegertracing/security-audits. Please see Issue #1718 for the summary of available security mechanisms in Jaeger.

Backwards compatibility with Zipkin

Although we recommend instrumenting applications with OpenTelemetry, if your organization has already invested in the instrumentation using Zipkin libraries, you do not have to rewrite all that code. Jaeger provides backwards compatibility with Zipkin by accepting spans in Zipkin formats (Thrift or JSON v1/v2) over HTTP. Switching from Zipkin backend is just a matter of routing the traffic from Zipkin libraries to the Jaeger backend.

Version Compatibility Guarantees

Occasionally, CLI flags can be deprecated due to, for example, usability improvements or new functionality. In such situations, developers introducing the deprecation are required to follow these guidelines.

In short, for a deprecated CLI flag, you should expect to see the following message in the --help documentation: (deprecated, will be removed after yyyy-mm-dd or in release vX.Y.Z, whichever is later)

A grace period of at least 3 months or two minor version bumps (whichever is later) from the first release containing the deprecation notice will be provided before the deprecated CLI flag can be deleted.

For example, consider a scenario where v1.28.0 is released on 01-Jun-2021 containing a deprecation notice for a CLI flag. This flag will remain in a deprecated state until the later of 01-Sep-2021 or v1.30.0 where it can be removed on or after either of those events. It may remain deprecated for longer than the aforementioned grace period.

Go Version Compatibility Guarantees

The Jaeger project attempts to track the currently supported versions of Go, as defined by the Go team. Removing support for an unsupported Go version is not considered a breaking change.

Starting with the release of Go 1.21, support for Go versions will be updated as follows:

  1. Soon after the release of a new Go minor version N, updates will be made to the build and tests steps to accommodate the latest Go minor version.
  2. Soon after the release of a new Go minor version N, support for Go version N-2 will be removed and version N-1 will become the minimum required version.

Related Repositories

Documentation

  • Published: https://www.jaegertracing.io/docs/
  • Source: https://github.com/jaegertracing/documentation

Instrumentation Libraries

Jaeger project recommends OpenTelemetry SDKs for instrumentation, instead of Jaeger's native SDKs that are now deprecated.

Deployment

Components

Building From Source

See CONTRIBUTING.

Contributing

See CONTRIBUTING.

Thanks to all the people who already contributed!

Maintainers

Rules for becoming a maintainer are defined in the GOVERNANCE document. Below are the official maintainers of the Jaeger project. Please use @jaegertracing/jaeger-maintainers to tag them on issues / PRs.

Some repositories under jaegertracing org have additional maintainers.

Emeritus Maintainers

We are grateful to our former maintainers for their contributions to the Jaeger project.

Project Status Meetings

The Jaeger maintainers and contributors meet regularly on a video call. Everyone is welcome to join, including end users. For meeting details, see https://www.jaegertracing.io/get-in-touch/.

Roadmap

See https://www.jaegertracing.io/docs/roadmap/

Get in Touch

Have questions, suggestions, bug reports? Reach the project community via these channels:

Adopters

Jaeger as a product consists of multiple components. We want to support different types of users, whether they are only using our instrumentation libraries or full end to end Jaeger installation, whether it runs in production or you use it to troubleshoot issues in development.

Please see ADOPTERS.md for some of the organizations using Jaeger today. If you would like to add your organization to the list, please comment on our survey issue.

License

Copyright (c) The Jaeger Authors. Apache 2.0 License.

Owner

  • Name: automatik-engineering
  • Login: automatik-engineering
  • Kind: organization

GitHub Events

Total
  • Delete event: 30
  • Issue comment event: 62
  • Pull request event: 63
  • Create event: 32
Last Year
  • Delete event: 30
  • Issue comment event: 62
  • Pull request event: 63
  • Create event: 32

Dependencies

.github/actions/block-pr-from-main-branch/action.yml actions
.github/actions/setup-branch/action.yml actions
.github/actions/setup-go-tip/action.yml actions
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
.github/actions/setup-node.js/action.yml actions
  • actions/setup-node 1e60f620b9541d16bece96c5465dc8ee9832be0b composite
.github/actions/upload-codecov/action.yml actions
  • Wandalen/wretry.action v3.5.0 composite
.github/workflows/ci-build-binaries.yml actions
  • ./.github/actions/setup-node.js * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-crossdock.yml actions
  • ./.github/actions/setup-branch * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • docker/setup-qemu-action 49b3bc8e6bdd4a60e6116a5414239cba5943d3cf composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-docker-all-in-one.yml actions
  • ./.github/actions/setup-branch * composite
  • ./.github/actions/setup-node.js * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • docker/setup-qemu-action 49b3bc8e6bdd4a60e6116a5414239cba5943d3cf composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-docker-build.yml actions
  • ./.github/actions/setup-branch * composite
  • ./.github/actions/setup-node.js * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • docker/setup-qemu-action 49b3bc8e6bdd4a60e6116a5414239cba5943d3cf composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-docker-hotrod.yml actions
  • ./.github/actions/setup-branch * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • docker/setup-qemu-action 49b3bc8e6bdd4a60e6116a5414239cba5943d3cf composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-e2e-badger.yaml actions
  • ./.github/actions/upload-codecov * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-e2e-cassandra.yml actions
  • ./.github/actions/upload-codecov * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-e2e-elasticsearch.yml actions
  • ./.github/actions/upload-codecov * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • docker/setup-qemu-action 49b3bc8e6bdd4a60e6116a5414239cba5943d3cf composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-e2e-grpc.yml actions
  • ./.github/actions/upload-codecov * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-e2e-kafka.yml actions
  • ./.github/actions/upload-codecov * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-e2e-memory.yaml actions
  • ./.github/actions/upload-codecov * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-e2e-opensearch.yml actions
  • ./.github/actions/upload-codecov * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • docker/setup-qemu-action 49b3bc8e6bdd4a60e6116a5414239cba5943d3cf composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-e2e-spm.yml actions
  • ./.github/actions/setup-node.js * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-e2e-tailsampling-processor.yml actions
  • ./.github/actions/upload-codecov * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-lint-checks.yaml actions
  • ./.github/actions/block-pr-from-main-branch * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • actions/setup-python f677139bbe7f9c59b41e40162b753c062f5d49a3 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-lint-dependabot-config.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • marocchino/validate-dependabot d8ae5c0d03dd75fbd0ad5f8ab4ba8101ebbd4b37 composite
.github/workflows/ci-release.yml actions
  • ./.github/actions/setup-node.js * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • anchore/sbom-action d94f46e13c6c62f59525ac9a1e147a99dc0b9bf5 composite
  • crazy-max/ghaction-import-gpg 01dd5d3ca463c7f10f7f4f7b4f177225ac661ee4 composite
  • docker/setup-qemu-action 49b3bc8e6bdd4a60e6116a5414239cba5943d3cf composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
  • svenstaro/upload-release-action 04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd composite
.github/workflows/ci-unit-tests-go-tip.yml actions
  • ./.github/actions/setup-go-tip * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/ci-unit-tests.yml actions
  • ./.github/actions/upload-codecov * composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/codeql.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • github/codeql-action/analyze v3 composite
  • github/codeql-action/autobuild v3 composite
  • github/codeql-action/init v3 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/dependency-review.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/dependency-review-action 72eb03d02c7872a771aacd928f3123ac62ad6d3a composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/fossa.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-go 0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 composite
  • fossa-contrib/fossa-action cdc5065bcdee31a32e47d4585df72d66e8e941c2 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/go.yml actions
  • actions/checkout v4 composite
  • actions/setup-go v4 composite
.github/workflows/label-check.yml actions
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/scorecard.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/upload-artifact 50769540e7f4bd5e21e526ee35c689e35e0d6874 composite
  • github/codeql-action/upload-sarif 2c779ab0d087cd7fe7b826087247c2c81f27bfa6 composite
  • ossf/scorecard-action 62b2cac7ed8198b15735ed49ab1e5cf35480ba46 composite
  • step-security/harden-runner 91182cccc01eb5e619899d80e4e971d6181294a7 composite
.github/workflows/webpack.yml actions
  • actions/checkout v4 composite
  • actions/setup-node v4 composite
cmd/agent/Dockerfile docker
  • $base_image latest build
  • $debug_image latest build
cmd/all-in-one/Dockerfile docker
  • $base_image latest build
  • $debug_image latest build
cmd/anonymizer/Dockerfile docker
  • scratch latest build
cmd/collector/Dockerfile docker
  • $base_image latest build
  • $debug_image latest build
cmd/es-index-cleaner/Dockerfile docker
  • $base_image latest build
cmd/es-rollover/Dockerfile docker
  • $base_image latest build
cmd/ingester/Dockerfile docker
  • $base_image latest build
  • $debug_image latest build
cmd/jaeger/Dockerfile docker
  • $base_image latest build
  • $debug_image latest build
cmd/query/Dockerfile docker
  • $base_image latest build
  • $debug_image latest build
cmd/remote-storage/Dockerfile docker
  • $base_image latest build
  • $debug_image latest build
cmd/tracegen/Dockerfile docker
  • scratch latest build
cmd/tracegen/docker-compose.yml docker
  • jaegertracing/all-in-one latest
  • jaegertracing/jaeger-tracegen latest
crossdock/Dockerfile docker
  • scratch latest build
crossdock/docker-compose.yml docker
  • crossdock/crossdock latest
  • jaegertracing/test-driver latest
  • jaegertracing/xdock-go latest
  • jaegertracing/xdock-java latest
  • jaegertracing/xdock-node latest
  • jaegertracing/xdock-py latest
  • jaegertracing/xdock-zipkin-brave latest
crossdock/jaeger-docker-compose.yml docker
  • jaegertracing/jaeger-agent latest
  • jaegertracing/jaeger-collector latest
  • jaegertracing/jaeger-query latest
  • jaegertracing/jaeger-remote-storage latest
docker/base/Dockerfile docker
  • alpine 3.20.3 build
docker/debug/Dockerfile docker
  • golang 1.23.1-alpine build
docker-compose/elasticsearch/v6/docker-compose.yml docker
  • docker.elastic.co/elasticsearch/elasticsearch-oss 6.8.23
docker-compose/elasticsearch/v7/docker-compose.yml docker
  • docker.elastic.co/elasticsearch/elasticsearch 7.17.22
docker-compose/elasticsearch/v8/docker-compose.yml docker
  • docker.elastic.co/elasticsearch/elasticsearch 8.15.0
docker-compose/jaeger-docker-compose.yml docker
  • cassandra 4.0
  • jaegertracing/example-hotrod latest
  • jaegertracing/jaeger-agent latest
  • jaegertracing/jaeger-cassandra-schema latest
  • jaegertracing/jaeger-collector latest
  • jaegertracing/jaeger-query latest
docker-compose/kafka/docker-compose.yml docker
  • bitnami/zookeeper latest
  • index.docker.io/bitnami/kafka@3.7.0 latest
  • jaegertracing/jaeger-agent latest
  • jaegertracing/jaeger-collector latest
  • jaegertracing/jaeger-ingester latest
  • jaegertracing/jaeger-query latest
  • jaegertracing/jaeger-remote-storage latest
docker-compose/kafka-integration-test/docker-compose.yml docker
  • bitnami/kafka 3.8.0
docker-compose/monitor/docker-compose-v2.yml docker
  • grafana/grafana latest
  • jaegertracing/jaeger ${JAEGER_IMAGE_TAG
  • prom/prometheus latest
  • yurishkuro/microsim v0.4.1
docker-compose/monitor/docker-compose.yml docker
  • grafana/grafana latest
  • jaegertracing/all-in-one ${JAEGER_IMAGE_TAG
  • otel/opentelemetry-collector-contrib ${OTEL_IMAGE_TAG
  • prom/prometheus latest
  • yurishkuro/microsim v0.4.1
docker-compose/opensearch/v1/docker-compose.yml docker
  • opensearchproject/opensearch 1.3.17
docker-compose/opensearch/v2/docker-compose.yml docker
  • opensearchproject/opensearch 2.17.0
docker-compose/tail-sampling/docker-compose.yml docker
  • jaegertracing/jaeger ${JAEGER_IMAGE_TAG
  • jaegertracing/jaeger-tracegen latest
  • otel/opentelemetry-collector-contrib ${OTEL_IMAGE_TAG
examples/hotrod/Dockerfile docker
  • scratch latest build
examples/hotrod/docker-compose-v2.yml docker
  • ${REGISTRY -}jaegertracing/jaeger
  • ${REGISTRY -}jaegertracing/example-hotrod
examples/hotrod/docker-compose.yml docker
  • ${REGISTRY -}jaegertracing/all-in-one
  • ${REGISTRY -}jaegertracing/example-hotrod
examples/reverse-proxy/docker-compose.yml docker
  • httpd latest
  • jaegertracing/all-in-one latest
plugin/storage/cassandra/Dockerfile docker
  • cassandra 5.0 build
plugin/storage/scylladb/docker-compose.yml docker
  • jaegertracing/example-hotrod ${JAEGER_VERSION
  • jaegertracing/jaeger-cassandra-schema ${JAEGER_VERSION
  • jaegertracing/jaeger-collector ${JAEGER_VERSION
  • jaegertracing/jaeger-query ${JAEGER_VERSION
  • scylladb/scylla 5.4.7
docker/debug/go.mod go
  • github.com/cilium/ebpf v0.11.0
  • github.com/cosiner/argv v0.1.0
  • github.com/cpuguy83/go-md2man/v2 v2.0.2
  • github.com/derekparker/trie v0.0.0-20230829180723-39f4de51ef7d
  • github.com/go-delve/delve v1.23.1
  • github.com/go-delve/liner v1.2.3-0.20231231155935-4726ab1d7f62
  • github.com/google/go-dap v0.12.0
  • github.com/hashicorp/golang-lru v1.0.2
  • github.com/inconshreveable/mousetrap v1.1.0
  • github.com/mattn/go-colorable v0.1.13
  • github.com/mattn/go-isatty v0.0.20
  • github.com/mattn/go-runewidth v0.0.13
  • github.com/rivo/uniseg v0.2.0
  • github.com/russross/blackfriday/v2 v2.1.0
  • github.com/sirupsen/logrus v1.9.3
  • github.com/spf13/cobra v1.7.0
  • github.com/spf13/pflag v1.0.5
  • go.starlark.net v0.0.0-20231101134539-556fd59b42f6
  • golang.org/x/arch v0.6.0
  • golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2
  • golang.org/x/sys v0.17.0
  • gopkg.in/yaml.v3 v3.0.1
docker/debug/go.sum go
  • github.com/cilium/ebpf v0.11.0
  • github.com/cosiner/argv v0.1.0
  • github.com/cpuguy83/go-md2man/v2 v2.0.2
  • github.com/creack/pty v1.1.20
  • github.com/davecgh/go-spew v1.1.0
  • github.com/davecgh/go-spew v1.1.1
  • github.com/derekparker/trie v0.0.0-20230829180723-39f4de51ef7d
  • github.com/frankban/quicktest v1.14.5
  • github.com/go-delve/delve v1.23.1
  • github.com/go-delve/liner v1.2.3-0.20231231155935-4726ab1d7f62
  • github.com/google/go-cmp v0.5.9
  • github.com/google/go-dap v0.12.0
  • github.com/hashicorp/golang-lru v1.0.2
  • github.com/inconshreveable/mousetrap v1.1.0
  • github.com/kr/pretty v0.3.1
  • github.com/kr/text v0.2.0
  • github.com/mattn/go-colorable v0.1.13
  • github.com/mattn/go-isatty v0.0.16
  • github.com/mattn/go-isatty v0.0.20
  • github.com/mattn/go-runewidth v0.0.3
  • github.com/mattn/go-runewidth v0.0.13
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/rivo/uniseg v0.2.0
  • github.com/rogpeppe/go-internal v1.9.0
  • github.com/russross/blackfriday/v2 v2.1.0
  • github.com/sirupsen/logrus v1.9.3
  • github.com/spf13/cobra v1.7.0
  • github.com/spf13/pflag v1.0.5
  • github.com/stretchr/objx v0.1.0
  • github.com/stretchr/testify v1.7.0
  • github.com/stretchr/testify v1.8.4
  • go.starlark.net v0.0.0-20231101134539-556fd59b42f6
  • golang.org/x/arch v0.6.0
  • golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2
  • golang.org/x/mod v0.14.0
  • golang.org/x/sys v0.0.0-20211117180635-dee7805ff2e1
  • golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8
  • golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab
  • golang.org/x/sys v0.6.0
  • golang.org/x/sys v0.17.0
  • golang.org/x/tools v0.14.0
  • google.golang.org/protobuf v1.25.0
  • gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
  • gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
  • gopkg.in/yaml.v3 v3.0.1
go.mod go
  • github.com/HdrHistogram/hdrhistogram-go v1.1.2
  • github.com/IBM/sarama v1.43.3
  • github.com/Shopify/sarama v1.33.0
  • github.com/alecthomas/participle/v2 v2.1.1
  • github.com/apache/thrift v0.21.0
  • github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2
  • github.com/aws/aws-sdk-go v1.55.5
  • github.com/beorn7/perks v1.0.1
  • github.com/bsm/sarama-cluster v2.1.13+incompatible
  • github.com/cenkalti/backoff/v4 v4.3.0
  • github.com/cespare/xxhash/v2 v2.3.0
  • github.com/cpuguy83/go-md2man/v2 v2.0.4
  • github.com/crossdock/crossdock-go v0.0.0-20160816171116-049aabb0122b
  • github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
  • github.com/dgraph-io/badger/v4 v4.3.0
  • github.com/dgraph-io/ristretto v0.1.2-0.20240116140435-c67e07994f91
  • github.com/dustin/go-humanize v1.0.1
  • github.com/eapache/go-resiliency v1.7.0
  • github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3
  • github.com/eapache/queue v1.1.0
  • github.com/elastic/elastic-transport-go/v8 v8.6.0
  • github.com/elastic/go-elasticsearch/v8 v8.15.0
  • github.com/elastic/go-grok v0.3.1
  • github.com/elastic/lunes v0.1.0
  • github.com/felixge/httpsnoop v1.0.4
  • github.com/fsnotify/fsnotify v1.7.0
  • github.com/go-logr/logr v1.4.2
  • github.com/go-logr/stdr v1.2.2
  • github.com/go-logr/zapr v1.3.0
  • github.com/go-ole/go-ole v1.2.6
  • github.com/go-viper/mapstructure/v2 v2.1.0
  • github.com/gobwas/glob v0.2.3
  • github.com/goccy/go-json v0.10.3
  • github.com/gocql/gocql v1.6.0
  • github.com/gogo/googleapis v1.4.1
  • github.com/gogo/protobuf v1.3.2
  • github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
  • github.com/golang/protobuf v1.5.4
  • github.com/golang/snappy v0.0.4
  • github.com/google/flatbuffers v1.12.1
  • github.com/google/uuid v1.6.0
  • github.com/gorilla/handlers v1.5.2
  • github.com/gorilla/mux v1.8.1
  • github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0
  • github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0
  • github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed
  • github.com/hashicorp/errwrap v1.1.0
  • github.com/hashicorp/go-multierror v1.1.1
  • github.com/hashicorp/go-uuid v1.0.3
  • github.com/hashicorp/go-version v1.7.0
  • github.com/hashicorp/golang-lru v1.0.2
  • github.com/hashicorp/golang-lru/v2 v2.0.7
  • github.com/hashicorp/hcl v1.0.0
  • github.com/iancoleman/strcase v0.3.0
  • github.com/inconshreveable/mousetrap v1.1.0
  • github.com/jcmturner/aescts/v2 v2.0.0
  • github.com/jcmturner/dnsutils/v2 v2.0.0
  • github.com/jcmturner/gofork v1.7.6
  • github.com/jcmturner/gokrb5/v8 v8.4.4
  • github.com/jcmturner/rpc/v2 v2.0.3
  • github.com/jmespath/go-jmespath v0.4.0
  • github.com/jonboulle/clockwork v0.4.0
  • github.com/josharian/intern v1.0.0
  • github.com/json-iterator/go v1.1.12
  • github.com/klauspost/compress v1.17.9
  • github.com/knadh/koanf/maps v0.1.1
  • github.com/knadh/koanf/providers/confmap v0.1.0
  • github.com/knadh/koanf/v2 v2.1.1
  • github.com/kr/pretty v0.3.1
  • github.com/kr/text v0.2.0
  • github.com/lightstep/go-expohisto v1.0.0
  • github.com/lufia/plan9stats v0.0.0-20220913051719-115f729f3c8c
  • github.com/magefile/mage v1.15.0
  • github.com/magiconair/properties v1.8.7
  • github.com/mailru/easyjson v0.7.7
  • github.com/mitchellh/copystructure v1.2.0
  • github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
  • github.com/mitchellh/reflectwalk v1.0.2
  • github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
  • github.com/modern-go/reflect2 v1.0.2
  • github.com/mostynb/go-grpc-compression v1.2.3
  • github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
  • github.com/olivere/elastic v6.2.37+incompatible
  • github.com/onsi/ginkgo v1.16.5
  • github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusexporter v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/extension/healthcheckv2extension v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/extension/storage v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/internal/kafka v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/internal/pdatautil v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/pkg/batchpersignal v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/pkg/kafka/topic v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/azure v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/processor/tailsamplingprocessor v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/receiver/jaegerreceiver v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkareceiver v0.110.0
  • github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver v0.110.0
  • github.com/opentracing/opentracing-go v1.2.0
  • github.com/openzipkin/zipkin-go v0.4.3
  • github.com/pelletier/go-toml/v2 v2.2.2
  • github.com/pierrec/lz4 v2.6.1+incompatible
  • github.com/pierrec/lz4/v4 v4.1.21
  • github.com/pkg/errors v0.9.1
  • github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
  • github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c
  • github.com/prometheus/client_golang v1.20.4
  • github.com/prometheus/client_model v0.6.1
  • github.com/prometheus/common v0.59.1
  • github.com/prometheus/procfs v0.15.1
  • github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
  • github.com/relvacode/iso8601 v1.4.0
  • github.com/rogpeppe/go-internal v1.12.0
  • github.com/rs/cors v1.11.1
  • github.com/russross/blackfriday/v2 v2.1.0
  • github.com/sagikazarmark/locafero v0.4.0
  • github.com/sagikazarmark/slog-shim v0.1.0
  • github.com/shirou/gopsutil/v4 v4.24.8
  • github.com/shoenig/go-m1cpu v0.1.6
  • github.com/soheilhy/cmux v0.1.5
  • github.com/sourcegraph/conc v0.3.0
  • github.com/spf13/afero v1.11.0
  • github.com/spf13/cast v1.6.0
  • github.com/spf13/cobra v1.8.1
  • github.com/spf13/pflag v1.0.5
  • github.com/spf13/viper v1.19.0
  • github.com/stretchr/objx v0.5.2
  • github.com/stretchr/testify v1.9.0
  • github.com/subosito/gotenv v1.6.0
  • github.com/tklauser/go-sysconf v0.3.12
  • github.com/tklauser/numcpus v0.6.1
  • github.com/ua-parser/uap-go v0.0.0-20240611065828-3a4781585db6
  • github.com/uber/jaeger-client-go v2.30.0+incompatible
  • github.com/uber/jaeger-lib v2.4.1+incompatible
  • github.com/xdg-go/pbkdf2 v1.0.0
  • github.com/xdg-go/scram v1.1.2
  • github.com/xdg-go/stringprep v1.0.4
  • github.com/yusufpapurcu/wmi v1.2.4
  • go.opencensus.io v0.24.0
  • go.opentelemetry.io/collector v0.110.0
  • go.opentelemetry.io/collector/client v1.16.0
  • go.opentelemetry.io/collector/component v0.110.0
  • go.opentelemetry.io/collector/component/componentprofiles v0.110.0
  • go.opentelemetry.io/collector/component/componentstatus v0.110.0
  • go.opentelemetry.io/collector/config/configauth v0.110.0
  • go.opentelemetry.io/collector/config/configcompression v1.16.0
  • go.opentelemetry.io/collector/config/configgrpc v0.110.0
  • go.opentelemetry.io/collector/config/confighttp v0.110.0
  • go.opentelemetry.io/collector/config/confignet v1.16.0
  • go.opentelemetry.io/collector/config/configopaque v1.16.0
  • go.opentelemetry.io/collector/config/configretry v1.16.0
  • go.opentelemetry.io/collector/config/configtelemetry v0.110.0
  • go.opentelemetry.io/collector/config/configtls v1.16.0
  • go.opentelemetry.io/collector/config/internal v0.110.0
  • go.opentelemetry.io/collector/confmap v1.16.0
  • go.opentelemetry.io/collector/confmap/provider/envprovider v1.16.0
  • go.opentelemetry.io/collector/confmap/provider/fileprovider v1.16.0
  • go.opentelemetry.io/collector/confmap/provider/httpprovider v0.110.0
  • go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.110.0
  • go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.110.0
  • go.opentelemetry.io/collector/connector v0.110.0
  • go.opentelemetry.io/collector/connector/connectorprofiles v0.110.0
  • go.opentelemetry.io/collector/connector/forwardconnector v0.110.0
  • go.opentelemetry.io/collector/consumer v0.110.0
  • go.opentelemetry.io/collector/consumer/consumerprofiles v0.110.0
  • go.opentelemetry.io/collector/consumer/consumertest v0.110.0
  • go.opentelemetry.io/collector/exporter v0.110.0
  • go.opentelemetry.io/collector/exporter/debugexporter v0.110.0
  • go.opentelemetry.io/collector/exporter/exporterprofiles v0.110.0
  • go.opentelemetry.io/collector/exporter/otlpexporter v0.110.0
  • go.opentelemetry.io/collector/exporter/otlphttpexporter v0.110.0
  • go.opentelemetry.io/collector/extension v0.110.0
  • go.opentelemetry.io/collector/extension/auth v0.110.0
  • go.opentelemetry.io/collector/extension/ballastextension v0.108.1
  • go.opentelemetry.io/collector/extension/experimental/storage v0.110.0
  • go.opentelemetry.io/collector/extension/extensioncapabilities v0.110.0
  • go.opentelemetry.io/collector/extension/zpagesextension v0.110.0
  • go.opentelemetry.io/collector/featuregate v1.16.0
  • go.opentelemetry.io/collector/internal/globalgates v0.110.0
  • go.opentelemetry.io/collector/internal/globalsignal v0.110.0
  • go.opentelemetry.io/collector/otelcol v0.110.0
  • go.opentelemetry.io/collector/pdata v1.16.0
  • go.opentelemetry.io/collector/pdata/pprofile v0.110.0
  • go.opentelemetry.io/collector/pdata/testdata v0.110.0
  • go.opentelemetry.io/collector/pipeline v0.110.0
  • go.opentelemetry.io/collector/processor v0.110.0
  • go.opentelemetry.io/collector/processor/batchprocessor v0.110.0
  • go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.110.0
  • go.opentelemetry.io/collector/processor/processorprofiles v0.110.0
  • go.opentelemetry.io/collector/receiver v0.110.0
  • go.opentelemetry.io/collector/receiver/otlpreceiver v0.110.0
  • go.opentelemetry.io/collector/receiver/receiverprofiles v0.110.0
  • go.opentelemetry.io/collector/semconv v0.110.0
  • go.opentelemetry.io/collector/service v0.110.0
  • go.opentelemetry.io/contrib/config v0.10.0
  • go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.55.0
  • go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0
  • go.opentelemetry.io/contrib/propagators/b3 v1.30.0
  • go.opentelemetry.io/contrib/samplers/jaegerremote v0.24.0
  • go.opentelemetry.io/contrib/zpages v0.55.0
  • go.opentelemetry.io/otel v1.30.0
  • go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.6.0
  • go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.30.0
  • go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.30.0
  • go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.30.0
  • go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.30.0
  • go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.30.0
  • go.opentelemetry.io/otel/exporters/prometheus v0.52.0
  • go.opentelemetry.io/otel/exporters/stdout/stdoutlog v0.6.0
  • go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.30.0
  • go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.30.0
  • go.opentelemetry.io/otel/log v0.6.0
  • go.opentelemetry.io/otel/metric v1.30.0
  • go.opentelemetry.io/otel/sdk v1.30.0
  • go.opentelemetry.io/otel/sdk/log v0.6.0
  • go.opentelemetry.io/otel/sdk/metric v1.30.0
  • go.opentelemetry.io/otel/trace v1.30.0
  • go.opentelemetry.io/proto/otlp v1.3.1
  • go.uber.org/atomic v1.11.0
  • go.uber.org/automaxprocs v1.6.0
  • go.uber.org/goleak v1.3.0
  • go.uber.org/multierr v1.11.0
  • go.uber.org/zap v1.27.0
  • golang.org/x/crypto v0.27.0
  • golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842
  • golang.org/x/net v0.29.0
  • golang.org/x/sys v0.25.0
  • golang.org/x/text v0.18.0
  • gonum.org/v1/gonum v0.15.1
  • google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1
  • google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1
  • google.golang.org/grpc v1.67.0
  • google.golang.org/protobuf v1.34.2
  • gopkg.in/inf.v0 v0.9.1
  • gopkg.in/ini.v1 v1.67.0
  • gopkg.in/yaml.v2 v2.4.0
  • gopkg.in/yaml.v3 v3.0.1
go.sum go
  • 598 dependencies
internal/tools/go.mod go
  • 4d63.com/gocheckcompilerdirectives v1.2.1
  • 4d63.com/gochecknoglobals v0.2.1
  • github.com/4meepo/tagalign v1.3.4
  • github.com/Abirdcfly/dupword v0.1.1
  • github.com/Antonboom/errname v0.1.13
  • github.com/Antonboom/nilnil v0.1.9
  • github.com/Antonboom/testifylint v1.4.3
  • github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c
  • github.com/Crocmagnon/fatcontext v0.5.2
  • github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24
  • github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.0
  • github.com/Masterminds/semver/v3 v3.3.0
  • github.com/OpenPeeDeeP/depguard/v2 v2.2.0
  • github.com/akavel/rsrc v0.10.2
  • github.com/alecthomas/go-check-sumtype v0.1.4
  • github.com/alexkohler/nakedret/v2 v2.0.4
  • github.com/alexkohler/prealloc v1.0.0
  • github.com/alingse/asasalint v0.0.11
  • github.com/ashanbrown/forbidigo v1.6.0
  • github.com/ashanbrown/makezero v1.1.1
  • github.com/beorn7/perks v1.0.1
  • github.com/bkielbasa/cyclop v1.2.1
  • github.com/blizzy78/varnamelen v0.8.0
  • github.com/bombsimon/wsl/v4 v4.4.1
  • github.com/breml/bidichk v0.2.7
  • github.com/breml/errchkjson v0.3.6
  • github.com/butuzov/ireturn v0.3.0
  • github.com/butuzov/mirror v1.2.0
  • github.com/catenacyber/perfsprint v0.7.1
  • github.com/ccojocar/zxcvbn-go v1.0.2
  • github.com/cespare/xxhash/v2 v2.1.2
  • github.com/charithe/durationcheck v0.0.10
  • github.com/chavacava/garif v0.1.0
  • github.com/chigopher/pathlib v0.19.1
  • github.com/ckaznocha/intrange v0.2.0
  • github.com/curioswitch/go-reassign v0.2.0
  • github.com/daixiang0/gci v0.13.5
  • github.com/davecgh/go-spew v1.1.1
  • github.com/denis-tingaikin/go-header v0.5.0
  • github.com/ettle/strcase v0.2.0
  • github.com/fatih/color v1.17.0
  • github.com/fatih/structtag v1.2.0
  • github.com/firefart/nonamedreturns v1.0.5
  • github.com/fsnotify/fsnotify v1.6.0
  • github.com/fzipp/gocyclo v0.6.0
  • github.com/ghostiam/protogetter v0.3.6
  • github.com/go-critic/go-critic v0.11.4
  • github.com/go-toolsmith/astcast v1.1.0
  • github.com/go-toolsmith/astcopy v1.1.0
  • github.com/go-toolsmith/astequal v1.2.0
  • github.com/go-toolsmith/astfmt v1.1.0
  • github.com/go-toolsmith/astp v1.1.0
  • github.com/go-toolsmith/strparse v1.1.0
  • github.com/go-toolsmith/typep v1.1.0
  • github.com/go-viper/mapstructure/v2 v2.1.0
  • github.com/go-xmlfmt/xmlfmt v1.1.2
  • github.com/gobwas/glob v0.2.3
  • github.com/gofrs/flock v0.12.1
  • github.com/golang/protobuf v1.5.3
  • github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a
  • github.com/golangci/gofmt v0.0.0-20240816233607-d8596aa466a9
  • github.com/golangci/golangci-lint v1.61.0
  • github.com/golangci/misspell v0.6.0
  • github.com/golangci/modinfo v0.3.4
  • github.com/golangci/plugin-module-register v0.1.1
  • github.com/golangci/revgrep v0.5.3
  • github.com/golangci/unconvert v0.0.0-20240309020433-c5143eacb3ed
  • github.com/google/go-cmp v0.6.0
  • github.com/gordonklaus/ineffassign v0.1.0
  • github.com/gostaticanalysis/analysisutil v0.7.1
  • github.com/gostaticanalysis/comment v1.4.2
  • github.com/gostaticanalysis/forcetypeassert v0.1.0
  • github.com/gostaticanalysis/nilerr v0.1.1
  • github.com/hashicorp/go-version v1.7.0
  • github.com/hashicorp/hcl v1.0.0
  • github.com/hexops/gotextdiff v1.0.3
  • github.com/huandu/xstrings v1.4.0
  • github.com/iancoleman/strcase v0.2.0
  • github.com/inconshreveable/mousetrap v1.1.0
  • github.com/jgautheron/goconst v1.7.1
  • github.com/jingyugao/rowserrcheck v1.1.1
  • github.com/jinzhu/copier v0.3.5
  • github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af
  • github.com/jjti/go-spancheck v0.6.2
  • github.com/josephspurrier/goversioninfo v1.4.1
  • github.com/julz/importas v0.1.0
  • github.com/karamaru-alpha/copyloopvar v1.1.0
  • github.com/kisielk/errcheck v1.7.0
  • github.com/kkHAIKE/contextcheck v1.1.5
  • github.com/kulti/thelper v0.6.3
  • github.com/kunwardeep/paralleltest v1.0.10
  • github.com/kyoh86/exportloopref v0.1.11
  • github.com/lasiar/canonicalheader v1.1.1
  • github.com/ldez/gomoddirectives v0.2.4
  • github.com/ldez/tagliatelle v0.5.0
  • github.com/leonklingele/grouper v1.1.2
  • github.com/lufeee/execinquery v1.2.1
  • github.com/macabu/inamedparam v0.1.3
  • github.com/magiconair/properties v1.8.7
  • github.com/maratori/testableexamples v1.0.0
  • github.com/maratori/testpackage v1.1.1
  • github.com/matoous/godox v0.0.0-20230222163458-006bad1f9d26
  • github.com/mattn/go-colorable v0.1.13
  • github.com/mattn/go-isatty v0.0.20
  • github.com/mattn/go-runewidth v0.0.9
  • github.com/matttproud/golang_protobuf_extensions v1.0.1
  • github.com/mgechev/revive v1.3.9
  • github.com/mitchellh/go-homedir v1.1.0
  • github.com/mitchellh/mapstructure v1.5.0
  • github.com/moricho/tparallel v0.3.2
  • github.com/nakabonne/nestif v0.3.1
  • github.com/nishanths/exhaustive v0.12.0
  • github.com/nishanths/predeclared v0.2.2
  • github.com/nunnatsa/ginkgolinter v0.16.2
  • github.com/olekukonko/tablewriter v0.0.5
  • github.com/pelletier/go-toml/v2 v2.2.3
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/polyfloyd/go-errorlint v1.6.0
  • github.com/prometheus/client_golang v1.12.1
  • github.com/prometheus/client_model v0.2.0
  • github.com/prometheus/common v0.32.1
  • github.com/prometheus/procfs v0.7.3
  • github.com/quasilyte/go-ruleguard v0.4.3-0.20240823090925-0fe6f58b47b1
  • github.com/quasilyte/go-ruleguard/dsl v0.3.22
  • github.com/quasilyte/gogrep v0.5.0
  • github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727
  • github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567
  • github.com/rs/zerolog v1.29.0
  • github.com/ryancurrah/gomodguard v1.3.5
  • github.com/ryanrolds/sqlclosecheck v0.5.1
  • github.com/sanposhiho/wastedassign/v2 v2.0.7
  • github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
  • github.com/sashamelentyev/interfacebloat v1.1.0
  • github.com/sashamelentyev/usestdlibvars v1.27.0
  • github.com/securego/gosec/v2 v2.21.2
  • github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c
  • github.com/sirupsen/logrus v1.9.3
  • github.com/sivchari/containedctx v1.0.3
  • github.com/sivchari/tenv v1.10.0
  • github.com/sonatard/noctx v0.0.2
  • github.com/sourcegraph/go-diff v0.7.0
  • github.com/spf13/afero v1.11.0
  • github.com/spf13/cast v1.5.0
  • github.com/spf13/cobra v1.8.1
  • github.com/spf13/jwalterweatherman v1.1.0
  • github.com/spf13/pflag v1.0.5
  • github.com/spf13/viper v1.15.0
  • github.com/ssgreg/nlreturn/v2 v2.2.1
  • github.com/stbenjam/no-sprintf-host-port v0.1.1
  • github.com/stretchr/objx v0.5.2
  • github.com/stretchr/testify v1.9.0
  • github.com/subosito/gotenv v1.4.2
  • github.com/tdakkota/asciicheck v0.2.0
  • github.com/tetafro/godot v1.4.17
  • github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966
  • github.com/timonwong/loggercheck v0.9.4
  • github.com/tomarrell/wrapcheck/v2 v2.9.0
  • github.com/tommy-muehle/go-mnd/v2 v2.5.1
  • github.com/ultraware/funlen v0.1.0
  • github.com/ultraware/whitespace v0.1.1
  • github.com/uudashr/gocognit v1.1.3
  • github.com/vektra/mockery/v2 v2.46.1
  • github.com/xen0n/gosmopolitan v1.2.2
  • github.com/yagipy/maintidx v1.0.0
  • github.com/yeya24/promlinter v0.3.0
  • github.com/ykadowak/zerologlint v0.1.5
  • gitlab.com/bosi/decorder v0.4.2
  • go-simpler.org/musttag v0.12.2
  • go-simpler.org/sloglint v0.7.2
  • go.uber.org/atomic v1.9.0
  • go.uber.org/automaxprocs v1.5.3
  • go.uber.org/multierr v1.8.0
  • go.uber.org/zap v1.24.0
  • golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e
  • golang.org/x/exp/typeparams v0.0.0-20240314144324-c7f7c6466f7f
  • golang.org/x/mod v0.21.0
  • golang.org/x/sync v0.8.0
  • golang.org/x/sys v0.25.0
  • golang.org/x/term v0.5.0
  • golang.org/x/text v0.18.0
  • golang.org/x/tools v0.24.0
  • google.golang.org/protobuf v1.34.2
  • gopkg.in/ini.v1 v1.67.0
  • gopkg.in/yaml.v2 v2.4.0
  • gopkg.in/yaml.v3 v3.0.1
  • honnef.co/go/tools v0.5.1
  • mvdan.cc/gofumpt v0.7.0
  • mvdan.cc/unparam v0.0.0-20240528143540-8a5130ca722f
internal/tools/go.sum go
  • 764 dependencies