├── .codecov.yml ├── .github ├── CODEOWNERS ├── actions │ ├── block-pr-from-main-branch │ │ └── action.yml │ ├── setup-branch │ │ └── action.yml │ ├── setup-go-tip │ │ └── action.yml │ ├── setup-node.js │ │ └── action.yml │ ├── upload-codecov │ │ └── action.yml │ └── verify-metrics-snapshot │ │ └── action.yaml └── workflows │ ├── ci-build-binaries.yml │ ├── ci-comment.yml │ ├── ci-crossdock.yml │ ├── ci-deploy-demo.yml │ ├── ci-docker-all-in-one.yml │ ├── ci-docker-build.yml │ ├── ci-docker-hotrod.yml │ ├── ci-e2e-all.yml │ ├── ci-e2e-badger.yaml │ ├── ci-e2e-cassandra.yml │ ├── ci-e2e-clickhouse.yml │ ├── ci-e2e-elasticsearch.yml │ ├── ci-e2e-grpc.yml │ ├── ci-e2e-kafka.yml │ ├── ci-e2e-memory.yaml │ ├── ci-e2e-opensearch.yml │ ├── ci-e2e-query.yml │ ├── ci-e2e-spm.yml │ ├── ci-e2e-tailsampling.yml │ ├── ci-lint-checks.yaml │ ├── ci-release.yml │ ├── ci-unit-tests-go-tip.yml │ ├── ci-unit-tests.yml │ ├── codeql.yml │ ├── dco_merge_group.yml │ ├── dependency-review.yml │ ├── fossa.yml │ ├── label-check.yml │ ├── scorecard.yml │ └── stale.yml ├── .gitignore ├── .gitmodules ├── .golangci.yml ├── .mockery.header.txt ├── .mockery.yaml ├── ADOPTERS.md ├── AGENTS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTING_GUIDELINES.md ├── DCO ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── NOTICE ├── README.md ├── RELEASE.md ├── SECURITY-INSIGHTS.yml ├── SECURITY.md ├── THREAT-MODEL.md ├── _To_People_of_Russia.md ├── cmd ├── anonymizer │ ├── Dockerfile │ ├── app │ │ ├── anonymizer │ │ │ ├── anonymizer.go │ │ │ ├── anonymizer_test.go │ │ │ └── package_test.go │ │ ├── flags.go │ │ ├── flags_test.go │ │ ├── query │ │ │ ├── package_test.go │ │ │ ├── query.go │ │ │ └── query_test.go │ │ ├── uiconv │ │ │ ├── extractor.go │ │ │ ├── extractor_test.go │ │ │ ├── fixtures │ │ │ │ ├── trace_empty.json │ │ │ │ ├── trace_invalid_json.json │ │ │ │ ├── trace_scan_error.json │ │ │ │ ├── trace_success.json │ │ │ │ └── trace_wrong_format.json │ │ │ ├── module.go │ │ │ ├── module_test.go │ │ │ ├── package_test.go │ │ │ ├── reader.go │ │ │ └── reader_test.go │ │ └── writer │ │ │ ├── package_test.go │ │ │ ├── writer.go │ │ │ └── writer_test.go │ └── main.go ├── es-index-cleaner │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── cutoff_time.go │ │ ├── cutoff_time_test.go │ │ ├── flags.go │ │ ├── flags_test.go │ │ ├── index_filter.go │ │ ├── index_filter_test.go │ │ └── package_test.go │ └── main.go ├── es-rollover │ ├── Dockerfile │ ├── app │ │ ├── actions.go │ │ ├── actions_test.go │ │ ├── flags.go │ │ ├── flags_test.go │ │ ├── index_options.go │ │ ├── index_options_test.go │ │ ├── init │ │ │ ├── action.go │ │ │ ├── action_test.go │ │ │ ├── flags.go │ │ │ ├── flags_test.go │ │ │ └── package_test.go │ │ ├── lookback │ │ │ ├── action.go │ │ │ ├── action_test.go │ │ │ ├── flags.go │ │ │ ├── flags_test.go │ │ │ ├── package_test.go │ │ │ ├── time_reference.go │ │ │ └── time_reference_test.go │ │ ├── package_test.go │ │ └── rollover │ │ │ ├── action.go │ │ │ ├── action_test.go │ │ │ ├── flags.go │ │ │ ├── flags_test.go │ │ │ └── package_test.go │ └── main.go ├── esmapping-generator │ └── main.go ├── internal │ ├── docs │ │ ├── .gitignore │ │ ├── command.go │ │ └── command_test.go │ ├── featuregate │ │ ├── command.go │ │ ├── command_test.go │ │ └── package_test.go │ ├── flags │ │ ├── admin.go │ │ ├── admin_test.go │ │ ├── doc.go │ │ ├── flags.go │ │ ├── flags_test.go │ │ ├── package_test.go │ │ ├── service.go │ │ └── service_test.go │ ├── printconfig │ │ ├── command.go │ │ └── command_test.go │ ├── status │ │ ├── command.go │ │ └── command_test.go │ └── storageconfig │ │ ├── config.go │ │ ├── config_test.go │ │ ├── factory.go │ │ ├── factory_test.go │ │ └── package_test.go ├── jaeger │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── config-badger.yaml │ ├── config-cassandra.yaml │ ├── config-clickhouse.yaml │ ├── config-elasticsearch.yaml │ ├── config-kafka-collector.yaml │ ├── config-kafka-ingester.yaml │ ├── config-opensearch.yaml │ ├── config-query.yaml │ ├── config-remote-storage-backend.yaml │ ├── config-remote-storage.yaml │ ├── config-spm-elasticsearch.yaml │ ├── config-spm-opensearch.yaml │ ├── config-spm.yaml │ ├── config-tail-sampling-always-sample.yaml │ ├── config-tail-sampling-service-name-policy.yaml │ ├── config-ui.json │ ├── config.yaml │ ├── docs │ │ └── migration │ │ │ ├── all-in-one-metrics.md │ │ │ ├── badger-metrics.md │ │ │ ├── cassandra-metrics.md │ │ │ ├── elasticsearch-metrics.md │ │ │ └── opensearch-metrics.md │ ├── internal │ │ ├── all-in-one.yaml │ │ ├── all_in_one_test.go │ │ ├── command.go │ │ ├── command_test.go │ │ ├── components.go │ │ ├── components_test.go │ │ ├── exporters │ │ │ └── storageexporter │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── exporter.go │ │ │ │ ├── exporter_test.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory_test.go │ │ │ │ └── package_test.go │ │ ├── extension │ │ │ ├── expvar │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory_test.go │ │ │ │ └── package_test.go │ │ │ ├── jaegerquery │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory_test.go │ │ │ │ ├── package_test.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ │ ├── jaegerstorage │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── factory.go │ │ │ │ └── package_test.go │ │ │ ├── remotesampling │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory_test.go │ │ │ │ └── package_test.go │ │ │ └── remotestorage │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory_test.go │ │ │ │ ├── package_test.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ ├── integration │ │ │ ├── README.md │ │ │ ├── badger_test.go │ │ │ ├── binary.go │ │ │ ├── cassandra_test.go │ │ │ ├── clickhouse_test.go │ │ │ ├── e2e_integration.go │ │ │ ├── e2e_integration_test.go │ │ │ ├── elasticsearch_test.go │ │ │ ├── grpc_test.go │ │ │ ├── kafka_test.go │ │ │ ├── memory_test.go │ │ │ ├── opensearch_test.go │ │ │ ├── package_test.go │ │ │ ├── query_test.go │ │ │ ├── storagecleaner │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory_test.go │ │ │ │ └── package_test.go │ │ │ ├── tailsampling_test.go │ │ │ ├── trace_reader.go │ │ │ ├── trace_writer.go │ │ │ └── trace_writer_test.go │ │ ├── package_test.go │ │ └── processors │ │ │ └── adaptivesampling │ │ │ ├── config.go │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── package_test.go │ │ │ ├── processor.go │ │ │ └── processor_test.go │ ├── main.go │ ├── sampling-strategies.json │ └── sampling_strategies_example.json ├── query │ └── app │ │ ├── apiv3 │ │ ├── gateway_test.go │ │ ├── grpc_handler.go │ │ ├── grpc_handler_test.go │ │ ├── http_gateway.go │ │ ├── http_gateway_test.go │ │ ├── package_test.go │ │ └── snapshots │ │ │ ├── FindTraces.json │ │ │ ├── GetOperations.json │ │ │ ├── GetServices.json │ │ │ └── GetTrace.json │ │ ├── ddg │ │ ├── deep_dependencies.go │ │ └── deep_dependencies_test.go │ │ ├── default_params.go │ │ ├── fixture │ │ ├── index.html │ │ ├── otlp2jaeger-in.json │ │ ├── otlp2jaeger-out.json │ │ ├── static │ │ │ └── asset.txt │ │ ├── ui-config-hotreload.json │ │ ├── ui-config-malformed.js │ │ ├── ui-config-malformed.json │ │ ├── ui-config-menu.js │ │ ├── ui-config-menu.json │ │ ├── ui-config.js │ │ ├── ui-config.json │ │ └── ui-config.toml │ │ ├── flags.go │ │ ├── flags_test.go │ │ ├── grpc_handler.go │ │ ├── grpc_handler_test.go │ │ ├── handler_archive_test.go │ │ ├── handler_deps_test.go │ │ ├── handler_options.go │ │ ├── http_handler.go │ │ ├── http_handler_test.go │ │ ├── json_marshaler.go │ │ ├── otlp_translator.go │ │ ├── package_test.go │ │ ├── qualitymetrics │ │ ├── data.go │ │ ├── data_test.go │ │ └── data_types.go │ │ ├── query_parser.go │ │ ├── query_parser_test.go │ │ ├── querysvc │ │ ├── adjusters.go │ │ ├── internal │ │ │ └── adjuster │ │ │ │ ├── adjuster.go │ │ │ │ ├── adjuster_test.go │ │ │ │ ├── bad_span_references.go │ │ │ │ ├── bad_span_references_test.go │ │ │ │ ├── clockskew.go │ │ │ │ ├── clockskew_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── ip_tag.go │ │ │ │ ├── ip_tag_test.go │ │ │ │ ├── otel_tag.go │ │ │ │ ├── otel_tag_test.go │ │ │ │ ├── package_test.go │ │ │ │ ├── parent_reference.go │ │ │ │ ├── parent_reference_test.go │ │ │ │ ├── sort_tags_and_log_fields.go │ │ │ │ ├── sort_tags_and_log_fields_test.go │ │ │ │ ├── span_hash_deduper.go │ │ │ │ ├── span_hash_deduper_test.go │ │ │ │ ├── zipkin_span_id_uniquify.go │ │ │ │ └── zipkin_span_id_uniquify_test.go │ │ ├── metrics_query_service.go │ │ ├── query_service.go │ │ ├── query_service_test.go │ │ └── v2 │ │ │ ├── adjuster │ │ │ ├── adjuster.go │ │ │ ├── adjuster_test.go │ │ │ ├── clockskew.go │ │ │ ├── clockskew_test.go │ │ │ ├── hash.go │ │ │ ├── hash_test.go │ │ │ ├── ipattribute.go │ │ │ ├── ipattribute_test.go │ │ │ ├── libraryattributes.go │ │ │ ├── libraryattributes_test.go │ │ │ ├── package_test.go │ │ │ ├── sort.go │ │ │ ├── sort_test.go │ │ │ ├── spaniduniquifier.go │ │ │ ├── spaniduniquifier_test.go │ │ │ ├── spanlinks.go │ │ │ ├── spanlinks_test.go │ │ │ ├── standard.go │ │ │ └── standard_test.go │ │ │ └── querysvc │ │ │ ├── package_test.go │ │ │ ├── service.go │ │ │ └── service_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── static_handler.go │ │ ├── static_handler_test.go │ │ ├── token_propagation_test.go │ │ ├── trace_response_handler.go │ │ ├── trace_response_handler_test.go │ │ ├── ui │ │ ├── actual │ │ │ └── .gitignore │ │ ├── assets.go │ │ ├── assets_test.go │ │ ├── doc.go │ │ ├── empty_test.go │ │ ├── placeholder │ │ │ └── index.html │ │ └── testdata │ │ │ ├── actual │ │ │ └── index.html.gz │ │ │ ├── empty_test.go │ │ │ └── mock.go │ │ ├── util.go │ │ └── util_test.go ├── remote-storage │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── config.go │ │ ├── config_test.go │ │ ├── package_test.go │ │ ├── server.go │ │ └── server_test.go │ ├── config-badger.yaml │ ├── config.yaml │ └── main.go └── tracegen │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ └── main.go ├── crossdock ├── Dockerfile ├── docker-compose.yml ├── jaeger-docker-compose.yml ├── main.go ├── rules.mk └── services │ ├── collector.go │ ├── collector_test.go │ ├── common.go │ ├── common_test.go │ ├── mocks │ └── mocks.go │ ├── pakcage_test.go │ ├── query.go │ ├── query_test.go │ ├── t_mock_test.go │ ├── tracehandler.go │ └── tracehandler_test.go ├── doc.go ├── docker-compose ├── cassandra │ ├── v4 │ │ └── docker-compose.yaml │ └── v5 │ │ └── docker-compose.yaml ├── clickhouse │ └── docker-compose.yml ├── elasticsearch │ ├── v6 │ │ └── docker-compose.yml │ ├── v7 │ │ └── docker-compose.yml │ ├── v8 │ │ └── docker-compose.yml │ └── v9 │ │ └── docker-compose.yml ├── kafka │ ├── README.md │ ├── docker-compose.yml │ └── v3 │ │ └── docker-compose.yml ├── monitor │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── datasource.yml │ ├── diagram.png │ ├── docker-compose-elasticsearch.yml │ ├── docker-compose-opensearch.yml │ ├── docker-compose-v1.yml │ ├── docker-compose.yml │ ├── images │ │ ├── startup-monitor-tab.png │ │ ├── tracegen_metrics.png │ │ └── tracegen_traces.png │ ├── jaeger-ui.json │ ├── otel-collector-config-connector.yml │ └── prometheus.yml ├── opensearch │ ├── v1 │ │ └── docker-compose.yml │ ├── v2 │ │ └── docker-compose.yml │ └── v3 │ │ └── docker-compose.yml ├── scylladb │ ├── README.md │ └── docker-compose.yml └── tail-sampling │ ├── Makefile │ ├── README.md │ ├── docker-compose.yml │ ├── jaeger-v2-config.yml │ └── otel-collector-config-connector.yml ├── docs ├── SCARF.md ├── adr │ ├── cassandra-find-traces-duration.md │ └── index.md └── release │ └── remove-v1-checklist.md ├── empty_test.go ├── examples ├── grafana-integration │ ├── README.md │ ├── docker-compose.yaml │ ├── grafana │ │ ├── dashboard.yml │ │ ├── datasources.yaml │ │ └── hotrod_metrics_logs.json │ └── prometheus │ │ └── prometheus.yml ├── hotrod │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── cmd │ │ ├── all.go │ │ ├── customer.go │ │ ├── driver.go │ │ ├── empty_test.go │ │ ├── flags.go │ │ ├── frontend.go │ │ ├── root.go │ │ └── route.go │ ├── docker-compose-v1.yml │ ├── docker-compose.yml │ ├── kubernetes │ │ └── README.md │ ├── main.go │ ├── pkg │ │ ├── delay │ │ │ ├── delay.go │ │ │ └── empty_test.go │ │ ├── httperr │ │ │ ├── empty_test.go │ │ │ └── httperr.go │ │ ├── log │ │ │ ├── empty_test.go │ │ │ ├── factory.go │ │ │ ├── logger.go │ │ │ └── spanlogger.go │ │ ├── pool │ │ │ ├── empty_test.go │ │ │ └── pool.go │ │ └── tracing │ │ │ ├── baggage.go │ │ │ ├── empty_test.go │ │ │ ├── http.go │ │ │ ├── init.go │ │ │ ├── mutex.go │ │ │ ├── mux.go │ │ │ └── rpcmetrics │ │ │ ├── README.md │ │ │ ├── endpoints.go │ │ │ ├── endpoints_test.go │ │ │ ├── metrics.go │ │ │ ├── metrics_test.go │ │ │ ├── normalizer.go │ │ │ ├── normalizer_test.go │ │ │ ├── observer.go │ │ │ ├── observer_test.go │ │ │ └── package_test.go │ └── services │ │ ├── config │ │ ├── config.go │ │ └── empty_test.go │ │ ├── customer │ │ ├── client.go │ │ ├── database.go │ │ ├── empty_test.go │ │ ├── interface.go │ │ └── server.go │ │ ├── driver │ │ ├── client.go │ │ ├── driver.pb.go │ │ ├── driver.proto │ │ ├── empty_test.go │ │ ├── interface.go │ │ ├── redis.go │ │ └── server.go │ │ ├── frontend │ │ ├── best_eta.go │ │ ├── empty_test.go │ │ ├── server.go │ │ └── web_assets │ │ │ ├── favicon.ico │ │ │ └── index.html │ │ └── route │ │ ├── client.go │ │ ├── empty_test.go │ │ ├── interface.go │ │ ├── server.go │ │ └── stats.go ├── oci │ ├── README.md │ ├── config.yaml │ ├── deploy-all.sh │ ├── ingress.yaml │ ├── jaeger-values.yaml │ ├── load-generator │ │ ├── generate_traces.py │ │ └── load-generator.yaml │ ├── monitoring-values.yaml │ ├── prometheus-svc.yaml │ ├── tls-cert │ │ └── issuer.yaml │ └── ui-config.json ├── opentracing-tutorial │ └── README.md ├── otel-demo │ ├── README.md │ ├── cleanup.sh │ ├── deploy-all.sh │ ├── generate_traces.py │ ├── ingress │ │ ├── README.md │ │ ├── clusterissuer-letsencrypt-prod.yaml │ │ ├── ingress-jaeger.yaml │ │ ├── ingress-opensearch.yaml │ │ └── ingress-otel-demo.yaml │ ├── jaeger-config.yaml │ ├── jaeger-query-service.yaml │ ├── jaeger-values.yaml │ ├── load-generator.yaml │ ├── opensearch-dashboard-values.yaml │ ├── opensearch-values.yaml │ ├── otel-demo-values.yaml │ └── start-port-forward.sh ├── reverse-proxy │ ├── README.md │ ├── docker-compose.yml │ └── httpd.conf └── service-performance-monitoring │ └── README.md ├── go.mod ├── go.sum ├── internal ├── auth │ ├── apikey │ │ ├── apikey-context.go │ │ ├── apikey-context_test.go │ │ └── package_test.go │ ├── bearertoken │ │ ├── context.go │ │ ├── context_test.go │ │ ├── grpc.go │ │ ├── grpc_test.go │ │ ├── http.go │ │ ├── http_test.go │ │ └── package_test.go │ ├── package_test.go │ ├── tokenloader.go │ ├── tokenloader_test.go │ ├── transport.go │ └── transport_test.go ├── cache │ ├── cache.go │ ├── lru.go │ └── lru_test.go ├── config │ ├── config.go │ ├── config_test.go │ ├── package_test.go │ ├── promcfg │ │ ├── config.go │ │ └── config_test.go │ ├── string_slice.go │ ├── string_slice_test.go │ └── tlscfg │ │ ├── flags.go │ │ ├── flags_test.go │ │ ├── options.go │ │ ├── options_test.go │ │ ├── package_test.go │ │ └── testdata │ │ ├── README.md │ │ ├── bad-CA-cert.txt │ │ ├── example-CA-cert.pem │ │ ├── example-client-cert.pem │ │ ├── example-client-key.pem │ │ ├── example-server-cert.pem │ │ ├── example-server-key.pem │ │ ├── gen-certs.sh │ │ └── wrong-CA-cert.pem ├── converter │ ├── doc.go │ ├── empty_test.go │ └── thrift │ │ ├── doc.go │ │ ├── empty_test.go │ │ └── jaeger │ │ ├── doc.go │ │ ├── fixtures │ │ ├── domain_01.json │ │ ├── domain_02.json │ │ ├── domain_03.json │ │ ├── thrift_batch_01.json │ │ └── thrift_batch_02.json │ │ ├── package_test.go │ │ ├── sampling_from_domain.go │ │ ├── sampling_from_domain_test.go │ │ ├── sampling_to_domain.go │ │ ├── sampling_to_domain_test.go │ │ ├── to_domain.go │ │ └── to_domain_test.go ├── distributedlock │ ├── empty_test.go │ ├── interface.go │ └── mocks │ │ └── mocks.go ├── fswatcher │ ├── fswatcher.go │ └── fswatcher_test.go ├── gogocodec │ ├── codec.go │ └── codec_test.go ├── grpctest │ ├── reflection.go │ └── reflection_test.go ├── gzipfs │ ├── gzip.go │ ├── gzip_test.go │ └── testdata │ │ ├── foobar │ │ ├── foobar.gz │ │ ├── foobaz.gz │ │ ├── foobaz_truncated.gz │ │ └── not_archive.gz ├── healthcheck │ ├── handler.go │ ├── handler_test.go │ ├── internal_test.go │ └── package_test.go ├── hostname │ ├── hostname.go │ └── hostname_test.go ├── httpfs │ ├── prefixed.go │ ├── prefixed_test.go │ └── test_assets │ │ └── somefile.txt ├── jaegerclientenv2otel │ ├── envvars.go │ └── envvars_test.go ├── jiter │ ├── iter.go │ ├── iter_test.go │ └── package_test.go ├── jptrace │ ├── aggregator.go │ ├── aggregator_test.go │ ├── attributes.go │ ├── attributes_test.go │ ├── package_test.go │ ├── sanitizer │ │ ├── emptyservicename.go │ │ ├── emptyservicename_test.go │ │ ├── negative_duration_santizer.go │ │ ├── negative_duration_santizer_test.go │ │ ├── package_test.go │ │ ├── readonly_test.go │ │ ├── sanitizer.go │ │ ├── sanitizer_test.go │ │ ├── utf8.go │ │ └── utf8_test.go │ ├── spaniter.go │ ├── spaniter_test.go │ ├── spankind.go │ ├── spankind_test.go │ ├── spanmap.go │ ├── spanmap_test.go │ ├── statuscode.go │ ├── statuscode_test.go │ ├── traces.go │ ├── traces_test.go │ ├── warning.go │ └── warning_test.go ├── jtracer │ ├── jtracer.go │ └── jtracer_test.go ├── leaderelection │ ├── leader_election.go │ ├── leader_election_test.go │ └── mocks │ │ └── mocks.go ├── metrics │ ├── benchmark │ │ └── benchmark_test.go │ ├── counter.go │ ├── factory.go │ ├── gauge.go │ ├── histogram.go │ ├── metrics.go │ ├── metrics_test.go │ ├── metricsbuilder │ │ ├── builder.go │ │ └── builder_test.go │ ├── otelmetrics │ │ ├── counter.go │ │ ├── factory.go │ │ ├── factory_test.go │ │ ├── gauge.go │ │ ├── histogram.go │ │ └── timer.go │ ├── package.go │ ├── prometheus │ │ ├── cache.go │ │ ├── factory.go │ │ └── factory_test.go │ ├── stopwatch.go │ └── timer.go ├── metricstest │ ├── keys.go │ ├── local.go │ ├── local_test.go │ ├── metricstest.go │ ├── metricstest_test.go │ └── package_test.go ├── proto-gen │ ├── .gitignore │ ├── api_v2 │ │ └── metrics │ │ │ ├── openmetrics.pb.go │ │ │ └── otelspankind.pb.go │ ├── patch.sed │ ├── storage │ │ └── v2 │ │ │ ├── dependency_storage.pb.go │ │ │ └── trace_storage.pb.go │ ├── storage_v1 │ │ ├── mocks │ │ │ └── mocks.go │ │ └── storage.pb.go │ └── zipkin │ │ └── zipkin.pb.go ├── proto │ ├── api_v3 │ │ └── query_service.pb.go │ └── metrics │ │ ├── README.md │ │ ├── openmetrics.proto │ │ └── otelspankind.proto ├── recoveryhandler │ ├── zap.go │ └── zap_test.go ├── safeexpvar │ ├── safeexpvar.go │ └── safeexpvar_test.go ├── sampling │ ├── grpc │ │ ├── grpc_handler.go │ │ └── grpc_handler_test.go │ ├── http │ │ ├── cfgmgr.go │ │ ├── cfgmgr_test.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── package_test.go │ │ └── thrift-0.9.2 │ │ │ ├── .nocover │ │ │ ├── constants.go │ │ │ └── ttypes.go │ └── samplingstrategy │ │ ├── adaptive │ │ ├── README.md │ │ ├── aggregator.go │ │ ├── aggregator_test.go │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── calculationstrategy │ │ │ ├── interface.go │ │ │ ├── package_test.go │ │ │ ├── percentage_increase_capped_calculator.go │ │ │ └── percentage_increase_capped_calculator_test.go │ │ ├── floatutils.go │ │ ├── floatutils_test.go │ │ ├── options.go │ │ ├── options_test.go │ │ ├── package_test.go │ │ ├── post_aggregator.go │ │ ├── post_aggregator_test.go │ │ ├── provider.go │ │ ├── provider_test.go │ │ ├── weightvectorcache.go │ │ └── weightvectorcache_test.go │ │ ├── aggregator.go │ │ ├── empty_test.go │ │ ├── factory.go │ │ ├── file │ │ ├── constants.go │ │ ├── fixtures │ │ │ ├── TestServiceNoPerOperationStrategiesDeprecatedBehavior_ServiceA.json │ │ │ ├── TestServiceNoPerOperationStrategiesDeprecatedBehavior_ServiceB.json │ │ │ ├── TestServiceNoPerOperationStrategies_ServiceA.json │ │ │ ├── TestServiceNoPerOperationStrategies_ServiceB.json │ │ │ ├── bad_strategies.json │ │ │ ├── missing-service-types.json │ │ │ ├── operation_strategies.json │ │ │ ├── service_no_per_operation.json │ │ │ └── strategies.json │ │ ├── options.go │ │ ├── package_test.go │ │ ├── provider.go │ │ ├── provider_test.go │ │ └── strategy.go │ │ └── provider.go ├── storage │ ├── cassandra │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ └── package_test.go │ │ ├── empty_test.go │ │ ├── gocql │ │ │ ├── empty_test.go │ │ │ ├── gocql.go │ │ │ └── testutils │ │ │ │ ├── udt.go │ │ │ │ └── udt_test.go │ │ ├── metrics │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── mocks │ │ │ └── mocks.go │ │ └── session.go │ ├── distributedlock │ │ └── cassandra │ │ │ ├── lock.go │ │ │ └── lock_test.go │ ├── elasticsearch │ │ ├── client.go │ │ ├── client │ │ │ ├── basic_auth.go │ │ │ ├── basic_auth_test.go │ │ │ ├── client.go │ │ │ ├── cluster_client.go │ │ │ ├── cluster_client_test.go │ │ │ ├── ilm_client.go │ │ │ ├── ilm_client_test.go │ │ │ ├── index_client.go │ │ │ ├── index_client_test.go │ │ │ ├── interfaces.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ └── package_test.go │ │ ├── config │ │ │ ├── auth_helper.go │ │ │ ├── auth_helper_test.go │ │ │ ├── config.go │ │ │ └── config_test.go │ │ ├── dbmodel │ │ │ ├── dot_replacer.go │ │ │ ├── dot_replacer_test.go │ │ │ ├── model.go │ │ │ └── package_test.go │ │ ├── empty_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── filter │ │ │ ├── alias.go │ │ │ ├── alias_test.go │ │ │ ├── date.go │ │ │ ├── date_test.go │ │ │ └── package_test.go │ │ ├── mocks │ │ │ └── mocks.go │ │ ├── query │ │ │ ├── range_query.go │ │ │ └── range_query_test.go │ │ ├── textTemplate.go │ │ ├── textTemplate_test.go │ │ └── wrapper │ │ │ ├── empty_test.go │ │ │ ├── wrapper.go │ │ │ └── wrapper_nolint.go │ ├── integration │ │ ├── badgerstore_test.go │ │ ├── cassandra_test.go │ │ ├── elasticsearch_test.go │ │ ├── es_index_cleaner_test.go │ │ ├── es_index_rollover_test.go │ │ ├── fixtures │ │ │ ├── grpc_plugin_conf.yaml │ │ │ ├── queries.json │ │ │ ├── queries_es.json │ │ │ └── traces │ │ │ │ ├── default.json │ │ │ │ ├── dur_trace.json │ │ │ │ ├── example_trace.json │ │ │ │ ├── log_tags_trace.json │ │ │ │ ├── max_dur_trace.json │ │ │ │ ├── multi_index_trace.json │ │ │ │ ├── multi_spot_tags_trace.json │ │ │ │ ├── multiple1_trace.json │ │ │ │ ├── multiple2_trace.json │ │ │ │ ├── multiple3_trace.json │ │ │ │ ├── multispottag_dur_trace.json │ │ │ │ ├── multispottag_maxdur_trace.json │ │ │ │ ├── multispottag_opname_dur_trace.json │ │ │ │ ├── multispottag_opname_maxdur_trace.json │ │ │ │ ├── multispottag_opname_trace.json │ │ │ │ ├── opname_dur_trace.json │ │ │ │ ├── opname_maxdur_trace.json │ │ │ │ ├── opname_trace.json │ │ │ │ ├── process_tags_trace.json │ │ │ │ ├── span_tags_trace.json │ │ │ │ ├── tags_dur_trace.json │ │ │ │ ├── tags_escaped_operator_trace_1.json │ │ │ │ ├── tags_escaped_operator_trace_2.json │ │ │ │ ├── tags_maxdur_trace.json │ │ │ │ ├── tags_opname_dur_trace.json │ │ │ │ ├── tags_opname_maxdur_trace.json │ │ │ │ ├── tags_opname_trace.json │ │ │ │ ├── tags_wildcard_regex_1.json │ │ │ │ └── tags_wildcard_regex_2.json │ │ ├── grpc_test.go │ │ ├── integration.go │ │ ├── memstore_test.go │ │ ├── package_test.go │ │ ├── remote_memory_storage.go │ │ ├── trace_compare.go │ │ └── trace_compare_test.go │ ├── metricstore │ │ ├── disabled │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── package_test.go │ │ │ ├── reader.go │ │ │ └── reader_test.go │ │ ├── elasticsearch │ │ │ ├── README.md │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── package_test.go │ │ │ ├── processor.go │ │ │ ├── processor_test.go │ │ │ ├── query_builder.go │ │ │ ├── query_builder_test.go │ │ │ ├── query_logger.go │ │ │ ├── query_logger_test.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ ├── testdata │ │ │ │ ├── output_call_rate.json │ │ │ │ ├── output_call_rate_operation.json │ │ │ │ ├── output_empty.json │ │ │ │ ├── output_error_es.json │ │ │ │ ├── output_error_latencies.json │ │ │ │ ├── output_errors_rate.json │ │ │ │ ├── output_errors_rate_operation.json │ │ │ │ ├── output_latencies.json │ │ │ │ ├── output_latencies_50.json │ │ │ │ ├── output_latencies_75.json │ │ │ │ ├── output_latencies_95.json │ │ │ │ ├── output_latencies_operation.json │ │ │ │ └── output_valid_es.json │ │ │ ├── to_domain.go │ │ │ └── to_domain_test.go │ │ ├── factory.go │ │ ├── factory_config.go │ │ ├── factory_config_test.go │ │ ├── factory_test.go │ │ ├── package_test.go │ │ └── prometheus │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── metricstore │ │ │ ├── dbmodel │ │ │ │ ├── to_domain.go │ │ │ │ └── to_domain_test.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ └── testdata │ │ │ │ ├── empty_response.json │ │ │ │ ├── service_datapoint_response.json │ │ │ │ ├── service_span_name_datapoint_response.json │ │ │ │ └── warning_response.json │ │ │ ├── options.go │ │ │ └── options_test.go │ ├── v1 │ │ ├── api │ │ │ ├── README.md │ │ │ ├── dependencystore │ │ │ │ ├── empty_test.go │ │ │ │ ├── interface.go │ │ │ │ └── mocks │ │ │ │ │ └── mocks.go │ │ │ ├── doc.go │ │ │ ├── empty_test.go │ │ │ ├── metricstore │ │ │ │ ├── empty_test.go │ │ │ │ ├── interface.go │ │ │ │ ├── metricstoremetrics │ │ │ │ │ ├── decorator.go │ │ │ │ │ └── decorator_test.go │ │ │ │ └── mocks │ │ │ │ │ └── mocks.go │ │ │ ├── samplingstore │ │ │ │ ├── empty_test.go │ │ │ │ ├── interface.go │ │ │ │ ├── mocks │ │ │ │ │ └── mocks.go │ │ │ │ └── model │ │ │ │ │ ├── empty_test.go │ │ │ │ │ └── sampling.go │ │ │ └── spanstore │ │ │ │ ├── interface.go │ │ │ │ ├── interface_test.go │ │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ │ └── spanstoremetrics │ │ │ │ ├── package_test.go │ │ │ │ ├── read_metrics.go │ │ │ │ ├── read_metrics_test.go │ │ │ │ ├── write_metrics.go │ │ │ │ └── write_metrics_test.go │ │ ├── badger │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── dependencystore │ │ │ │ ├── package_test.go │ │ │ │ ├── storage.go │ │ │ │ ├── storage_internal_test.go │ │ │ │ └── storage_test.go │ │ │ ├── docs │ │ │ │ ├── storage-file-non-root-permission.md │ │ │ │ └── upgrade-v1-to-v3.md │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── lock.go │ │ │ ├── lock_test.go │ │ │ ├── options.go │ │ │ ├── options_test.go │ │ │ ├── package_test.go │ │ │ ├── samplingstore │ │ │ │ ├── storage.go │ │ │ │ └── storage_test.go │ │ │ ├── spanstore │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── package_test.go │ │ │ │ ├── read_write_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── rw_internal_test.go │ │ │ │ └── writer.go │ │ │ ├── stats.go │ │ │ ├── stats_linux.go │ │ │ ├── stats_linux_test.go │ │ │ └── stats_test.go │ │ ├── blackhole │ │ │ ├── blackhole.go │ │ │ ├── blackhole_test.go │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ └── package_test.go │ │ ├── cassandra │ │ │ ├── Dockerfile │ │ │ ├── dependencystore │ │ │ │ ├── bootstrap.go │ │ │ │ ├── bootstrap_test.go │ │ │ │ ├── model.go │ │ │ │ ├── model_test.go │ │ │ │ ├── package_test.go │ │ │ │ ├── storage.go │ │ │ │ └── storage_test.go │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── helper.go │ │ │ ├── options.go │ │ │ ├── options_test.go │ │ │ ├── package_test.go │ │ │ ├── samplingstore │ │ │ │ ├── storage.go │ │ │ │ └── storage_test.go │ │ │ ├── savetracetest │ │ │ │ └── main.go │ │ │ ├── schema │ │ │ │ ├── README.md │ │ │ │ ├── create.sh │ │ │ │ ├── create.test.sh │ │ │ │ ├── docker.sh │ │ │ │ ├── migration │ │ │ │ │ ├── V002toV003.sh │ │ │ │ │ ├── v001tov002part1.sh │ │ │ │ │ └── v001tov002part2.sh │ │ │ │ ├── package_test.go │ │ │ │ ├── schema.go │ │ │ │ ├── schema_test.go │ │ │ │ ├── v001.cql.tmpl │ │ │ │ ├── v002.cql.tmpl │ │ │ │ ├── v003.cql.tmpl │ │ │ │ ├── v004-go-tmpl.cql.tmpl │ │ │ │ └── v004.cql.tmpl │ │ │ └── spanstore │ │ │ │ ├── dbmodel │ │ │ │ ├── converter.go │ │ │ │ ├── converter_test.go │ │ │ │ ├── cql_udt.go │ │ │ │ ├── cql_udt_test.go │ │ │ │ ├── index_filter.go │ │ │ │ ├── index_filter_test.go │ │ │ │ ├── model.go │ │ │ │ ├── model_test.go │ │ │ │ ├── operation.go │ │ │ │ ├── package_test.go │ │ │ │ ├── tag_filter.go │ │ │ │ ├── tag_filter_drop_all.go │ │ │ │ ├── tag_filter_drop_all_test.go │ │ │ │ ├── tag_filter_exact_match.go │ │ │ │ ├── tag_filter_exact_match_test.go │ │ │ │ ├── tag_filter_test.go │ │ │ │ ├── unique_ids.go │ │ │ │ ├── unique_ids_test.go │ │ │ │ ├── unique_tags.go │ │ │ │ └── unique_tags_test.go │ │ │ │ ├── matchers_test.go │ │ │ │ ├── operation_names.go │ │ │ │ ├── operation_names_test.go │ │ │ │ ├── package_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_test.go │ │ │ │ ├── service_names.go │ │ │ │ ├── service_names_test.go │ │ │ │ ├── writer.go │ │ │ │ ├── writer_options.go │ │ │ │ ├── writer_options_test.go │ │ │ │ └── writer_test.go │ │ ├── configurable.go │ │ ├── elasticsearch │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── dependencystore │ │ │ │ ├── package_test.go │ │ │ │ ├── storagev1.go │ │ │ │ └── storagev1_test.go │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── fixtures │ │ │ │ ├── tags_01.txt │ │ │ │ └── tags_02.txt │ │ │ ├── mappings │ │ │ │ ├── command.go │ │ │ │ ├── command_test.go │ │ │ │ ├── fixtures │ │ │ │ │ ├── jaeger-dependencies-6.json │ │ │ │ │ ├── jaeger-dependencies-7.json │ │ │ │ │ ├── jaeger-dependencies-8.json │ │ │ │ │ ├── jaeger-sampling-6.json │ │ │ │ │ ├── jaeger-sampling-7.json │ │ │ │ │ ├── jaeger-sampling-8.json │ │ │ │ │ ├── jaeger-service-6.json │ │ │ │ │ ├── jaeger-service-7.json │ │ │ │ │ ├── jaeger-service-8.json │ │ │ │ │ ├── jaeger-span-6.json │ │ │ │ │ ├── jaeger-span-7.json │ │ │ │ │ └── jaeger-span-8.json │ │ │ │ ├── flags.go │ │ │ │ ├── flags_test.go │ │ │ │ ├── jaeger-dependencies-6.json │ │ │ │ ├── jaeger-dependencies-7.json │ │ │ │ ├── jaeger-dependencies-8.json │ │ │ │ ├── jaeger-sampling-6.json │ │ │ │ ├── jaeger-sampling-7.json │ │ │ │ ├── jaeger-sampling-8.json │ │ │ │ ├── jaeger-service-6.json │ │ │ │ ├── jaeger-service-7.json │ │ │ │ ├── jaeger-service-8.json │ │ │ │ ├── jaeger-span-6.json │ │ │ │ ├── jaeger-span-7.json │ │ │ │ ├── jaeger-span-8.json │ │ │ │ ├── mapping.go │ │ │ │ └── mapping_test.go │ │ │ ├── options.go │ │ │ ├── options_test.go │ │ │ ├── package_test.go │ │ │ ├── samplingstore │ │ │ │ ├── dbmodel │ │ │ │ │ ├── converter.go │ │ │ │ │ ├── converter_test.go │ │ │ │ │ └── model.go │ │ │ │ ├── storage.go │ │ │ │ └── storage_test.go │ │ │ └── spanstore │ │ │ │ ├── core_span_reader.go │ │ │ │ ├── fixtures │ │ │ │ ├── domain_01.json │ │ │ │ ├── es_01.json │ │ │ │ ├── query_01.json │ │ │ │ ├── query_02.json │ │ │ │ └── query_03.json │ │ │ │ ├── from_domain.go │ │ │ │ ├── from_domain_test.go │ │ │ │ ├── index_utils.go │ │ │ │ ├── json_span_compare_test.go │ │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ │ ├── package_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_test.go │ │ │ │ ├── readerv1.go │ │ │ │ ├── readerv1_test.go │ │ │ │ ├── service_operation.go │ │ │ │ ├── service_operation_test.go │ │ │ │ ├── to_domain.go │ │ │ │ ├── to_domain_test.go │ │ │ │ ├── writer.go │ │ │ │ ├── writer_test.go │ │ │ │ ├── writerv1.go │ │ │ │ └── writerv1_test.go │ │ ├── factory.go │ │ ├── grpc │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── package_test.go │ │ │ ├── proto │ │ │ │ ├── storage.proto │ │ │ │ ├── storage_test.proto │ │ │ │ ├── storage_v1 │ │ │ │ │ └── storage_test.go │ │ │ │ └── storageprototest │ │ │ │ │ └── storage_test.pb.go │ │ │ └── shared │ │ │ │ ├── grpc_handler.go │ │ │ │ ├── grpc_handler_test.go │ │ │ │ ├── interface.go │ │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ │ ├── package_test.go │ │ │ │ ├── streaming_writer.go │ │ │ │ └── streaming_writer_test.go │ │ ├── mocks │ │ │ └── mocks.go │ │ └── package_test.go │ └── v2 │ │ ├── api │ │ ├── depstore │ │ │ ├── factory.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ ├── package_test.go │ │ │ ├── reader.go │ │ │ └── writer.go │ │ ├── package_test.go │ │ └── tracestore │ │ │ ├── empty_test.go │ │ │ ├── factory.go │ │ │ ├── mocks │ │ │ └── mocks.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ ├── tracestoremetrics │ │ │ ├── package_test.go │ │ │ ├── reader_metrics.go │ │ │ └── reader_metrics_test.go │ │ │ └── writer.go │ │ ├── badger │ │ ├── factory.go │ │ ├── factory_test.go │ │ └── package_test.go │ │ ├── cassandra │ │ ├── factory.go │ │ ├── factory_test.go │ │ └── package_test.go │ │ ├── clickhouse │ │ ├── README.md │ │ ├── clickhousetest │ │ │ ├── package_test.go │ │ │ └── server.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── depstore │ │ │ ├── package_test.go │ │ │ ├── reader.go │ │ │ └── reader_test.go │ │ ├── factory.go │ │ ├── factory_test.go │ │ ├── package_test.go │ │ ├── sql │ │ │ ├── create_operations_mv.sql │ │ │ ├── create_operations_table.sql │ │ │ ├── create_services_mv.sql │ │ │ ├── create_services_table.sql │ │ │ ├── create_spans_table.sql │ │ │ ├── package_test.go │ │ │ └── queries.go │ │ └── tracestore │ │ │ ├── assert_test.go │ │ │ ├── dbmodel │ │ │ ├── dbmodel_test.go │ │ │ ├── from.go │ │ │ ├── from_test.go │ │ │ ├── operation.go │ │ │ ├── package_test.go │ │ │ ├── service.go │ │ │ ├── spanrow.go │ │ │ ├── to.go │ │ │ └── to_test.go │ │ │ ├── driver_test.go │ │ │ ├── package_test.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ ├── spans_test.go │ │ │ ├── writer.go │ │ │ └── writer_test.go │ │ ├── elasticsearch │ │ ├── depstore │ │ │ ├── dbmodel │ │ │ │ ├── converter.go │ │ │ │ ├── converter_test.go │ │ │ │ └── model.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ ├── storage.go │ │ │ ├── storage_test.go │ │ │ ├── storagev2.go │ │ │ └── storagev2_test.go │ │ ├── factory.go │ │ ├── factory_test.go │ │ ├── package_test.go │ │ └── tracestore │ │ │ ├── fixtures │ │ │ ├── .gitignore │ │ │ ├── es_01.json │ │ │ ├── es_01_string_tags.json │ │ │ └── otel_traces_01.json │ │ │ ├── from_dbmodel.go │ │ │ ├── from_dbmodel_test.go │ │ │ ├── ids.go │ │ │ ├── package_test.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ ├── to_dbmodel.go │ │ │ ├── to_dbmodel_test.go │ │ │ ├── writer.go │ │ │ └── writer_test.go │ │ ├── grpc │ │ ├── README.md │ │ ├── config.go │ │ ├── config_test.go │ │ ├── depreader.go │ │ ├── depreader_test.go │ │ ├── factory.go │ │ ├── factory_test.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── package_test.go │ │ ├── tracereader.go │ │ ├── tracereader_test.go │ │ ├── tracewriter.go │ │ └── tracewriter_test.go │ │ ├── memory │ │ ├── config.go │ │ ├── config_test.go │ │ ├── factory.go │ │ ├── factory_test.go │ │ ├── fixtures │ │ │ ├── db_traces_01.json │ │ │ ├── db_traces_02.json │ │ │ └── otel_traces_01.json │ │ ├── lock.go │ │ ├── lock_test.go │ │ ├── memory.go │ │ ├── memory_test.go │ │ ├── package_test.go │ │ ├── sampling.go │ │ ├── sampling_test.go │ │ └── tenant.go │ │ └── v1adapter │ │ ├── README.md │ │ ├── depreader.go │ │ ├── depreader_test.go │ │ ├── factory.go │ │ ├── factory_test.go │ │ ├── otelids.go │ │ ├── otelids_test.go │ │ ├── package_test.go │ │ ├── spanreader.go │ │ ├── spanreader_test.go │ │ ├── spanwriter.go │ │ ├── spanwriter_test.go │ │ ├── tracereader.go │ │ ├── tracereader_test.go │ │ ├── tracewriter.go │ │ ├── tracewriter_test.go │ │ ├── translator.go │ │ └── translator_test.go ├── telemetry │ ├── otelsemconv │ │ ├── empty_test.go │ │ ├── semconv.go │ │ └── semconv_test.go │ ├── settings.go │ └── settings_test.go ├── tenancy │ ├── context.go │ ├── context_test.go │ ├── flags.go │ ├── flags_test.go │ ├── grpc.go │ ├── grpc_test.go │ ├── http.go │ ├── http_test.go │ ├── manage_test.go │ ├── manager.go │ └── package_test.go ├── testutils │ ├── leakcheck.go │ ├── leakcheck_test.go │ ├── logger.go │ └── logger_test.go ├── tools │ ├── empty.go │ ├── go.mod │ ├── go.sum │ └── tools.go ├── tracegen │ ├── config.go │ ├── config_test.go │ ├── package_test.go │ ├── worker.go │ └── worker_test.go ├── uimodel │ ├── converter │ │ └── v1 │ │ │ └── json │ │ │ ├── doc.go │ │ │ ├── fixtures │ │ │ ├── domain_01.json │ │ │ ├── domain_es_01.json │ │ │ ├── es_01.json │ │ │ └── ui_01.json │ │ │ ├── from_domain.go │ │ │ ├── from_domain_test.go │ │ │ ├── json_span_compare_test.go │ │ │ ├── package_test.go │ │ │ ├── process_hashtable.go │ │ │ ├── process_hashtable_test.go │ │ │ ├── sampling.go │ │ │ └── sampling_test.go │ ├── doc.go │ ├── empty_test.go │ └── model.go └── version │ ├── build.go │ ├── build_test.go │ ├── command.go │ ├── command_test.go │ ├── handler.go │ ├── handler_test.go │ └── package_test.go ├── monitoring └── jaeger-mixin │ ├── README.md │ ├── alerts.libsonnet │ ├── dashboard-for-grafana.json │ ├── dashboards.libsonnet │ ├── jsonnetfile.json │ ├── mixin.libsonnet │ ├── monitoring-setup.example.jsonnet │ ├── prometheus_alerts.yml │ └── prometheus_alerts_v2.yml ├── ports ├── ports.go └── ports_test.go ├── renovate.json └── scripts ├── build ├── build-all-in-one-image.sh ├── build-crossdock.sh ├── build-hotrod-image.sh ├── build-upload-a-docker-image.sh ├── build-upload-docker-images.sh ├── clean-binaries.sh ├── docker │ ├── base │ │ └── Dockerfile │ └── debug │ │ ├── Dockerfile │ │ ├── go.mod │ │ ├── go.sum │ │ └── tools.go ├── package-deploy.sh ├── rebuild-ui.sh └── upload-docker-readme.sh ├── e2e ├── adaptive-sampling-integration-test.sh ├── cassandra.sh ├── clickhouse.sh ├── compare_metrics.py ├── elasticsearch.sh ├── kafka.sh ├── metrics_summary.py ├── metrics_summary.sh └── spm.sh ├── lint ├── check-go-version.sh ├── check-goleak-files.sh ├── check-jaeger-idl-version.sh ├── check-semconv-version.sh ├── check-test-files.sh ├── dco_check.py ├── import-order-cleanup.py ├── replace_license_headers.py ├── update-semconv-version.sh └── updateLicense.py ├── makefiles ├── BuildBinaries.mk ├── BuildInfo.mk ├── Crossdock.mk ├── Docker.mk ├── IntegrationTests.mk ├── Protobuf.mk ├── Tools.mk └── Windows.mk ├── release ├── draft.py ├── formatter.py ├── notes.py └── start.sh └── utils ├── compare_metrics.py ├── compute-tags.sh ├── compute-tags.test.sh ├── compute-version.sh ├── docker-login.sh ├── generate-help-output.sh ├── ids-to-base64.py ├── metrics-md.py ├── platforms-to-gh-matrix.sh └── run-tests.sh /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/actions/setup-branch/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/actions/setup-branch/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-go-tip/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/actions/setup-go-tip/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-node.js/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/actions/setup-node.js/action.yml -------------------------------------------------------------------------------- /.github/actions/upload-codecov/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/actions/upload-codecov/action.yml -------------------------------------------------------------------------------- /.github/actions/verify-metrics-snapshot/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/actions/verify-metrics-snapshot/action.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-build-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-build-binaries.yml -------------------------------------------------------------------------------- /.github/workflows/ci-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-comment.yml -------------------------------------------------------------------------------- /.github/workflows/ci-crossdock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-crossdock.yml -------------------------------------------------------------------------------- /.github/workflows/ci-deploy-demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-deploy-demo.yml -------------------------------------------------------------------------------- /.github/workflows/ci-docker-all-in-one.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-docker-all-in-one.yml -------------------------------------------------------------------------------- /.github/workflows/ci-docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/ci-docker-hotrod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-docker-hotrod.yml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-all.yml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-badger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-badger.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-cassandra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-cassandra.yml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-clickhouse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-clickhouse.yml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-elasticsearch.yml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-grpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-grpc.yml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-kafka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-kafka.yml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-memory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-memory.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-opensearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-opensearch.yml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-query.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-query.yml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-spm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-spm.yml -------------------------------------------------------------------------------- /.github/workflows/ci-e2e-tailsampling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-e2e-tailsampling.yml -------------------------------------------------------------------------------- /.github/workflows/ci-lint-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-lint-checks.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-release.yml -------------------------------------------------------------------------------- /.github/workflows/ci-unit-tests-go-tip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-unit-tests-go-tip.yml -------------------------------------------------------------------------------- /.github/workflows/ci-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/ci-unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dco_merge_group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/dco_merge_group.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/fossa.yml -------------------------------------------------------------------------------- /.github/workflows/label-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/label-check.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.gitmodules -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.mockery.header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.mockery.header.txt -------------------------------------------------------------------------------- /.mockery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/.mockery.yaml -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/CONTRIBUTING_GUIDELINES.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/DCO -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY-INSIGHTS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/SECURITY-INSIGHTS.yml -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THREAT-MODEL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/THREAT-MODEL.md -------------------------------------------------------------------------------- /_To_People_of_Russia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/_To_People_of_Russia.md -------------------------------------------------------------------------------- /cmd/anonymizer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/Dockerfile -------------------------------------------------------------------------------- /cmd/anonymizer/app/anonymizer/anonymizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/anonymizer/anonymizer.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/anonymizer/anonymizer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/anonymizer/anonymizer_test.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/anonymizer/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/anonymizer/package_test.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/flags.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/flags_test.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/query/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/query/package_test.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/query/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/query/query.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/query/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/query/query_test.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/uiconv/extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/uiconv/extractor.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/uiconv/extractor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/uiconv/extractor_test.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/uiconv/fixtures/trace_empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/anonymizer/app/uiconv/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/uiconv/module.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/uiconv/module_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/uiconv/module_test.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/uiconv/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/uiconv/package_test.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/uiconv/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/uiconv/reader.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/uiconv/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/uiconv/reader_test.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/writer/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/writer/package_test.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/writer/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/writer/writer.go -------------------------------------------------------------------------------- /cmd/anonymizer/app/writer/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/app/writer/writer_test.go -------------------------------------------------------------------------------- /cmd/anonymizer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/anonymizer/main.go -------------------------------------------------------------------------------- /cmd/es-index-cleaner/.gitignore: -------------------------------------------------------------------------------- 1 | es-index-cleaner-*-* 2 | -------------------------------------------------------------------------------- /cmd/es-index-cleaner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-index-cleaner/Dockerfile -------------------------------------------------------------------------------- /cmd/es-index-cleaner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-index-cleaner/README.md -------------------------------------------------------------------------------- /cmd/es-index-cleaner/app/cutoff_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-index-cleaner/app/cutoff_time.go -------------------------------------------------------------------------------- /cmd/es-index-cleaner/app/cutoff_time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-index-cleaner/app/cutoff_time_test.go -------------------------------------------------------------------------------- /cmd/es-index-cleaner/app/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-index-cleaner/app/flags.go -------------------------------------------------------------------------------- /cmd/es-index-cleaner/app/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-index-cleaner/app/flags_test.go -------------------------------------------------------------------------------- /cmd/es-index-cleaner/app/index_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-index-cleaner/app/index_filter.go -------------------------------------------------------------------------------- /cmd/es-index-cleaner/app/index_filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-index-cleaner/app/index_filter_test.go -------------------------------------------------------------------------------- /cmd/es-index-cleaner/app/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-index-cleaner/app/package_test.go -------------------------------------------------------------------------------- /cmd/es-index-cleaner/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-index-cleaner/main.go -------------------------------------------------------------------------------- /cmd/es-rollover/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/Dockerfile -------------------------------------------------------------------------------- /cmd/es-rollover/app/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/actions.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/actions_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/flags.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/flags_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/index_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/index_options.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/index_options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/index_options_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/init/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/init/action.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/init/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/init/action_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/init/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/init/flags.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/init/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/init/flags_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/init/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/init/package_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/lookback/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/lookback/action.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/lookback/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/lookback/action_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/lookback/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/lookback/flags.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/lookback/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/lookback/flags_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/lookback/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/lookback/package_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/lookback/time_reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/lookback/time_reference.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/lookback/time_reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/lookback/time_reference_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/package_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/rollover/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/rollover/action.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/rollover/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/rollover/action_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/rollover/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/rollover/flags.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/rollover/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/rollover/flags_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/app/rollover/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/app/rollover/package_test.go -------------------------------------------------------------------------------- /cmd/es-rollover/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/es-rollover/main.go -------------------------------------------------------------------------------- /cmd/esmapping-generator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/esmapping-generator/main.go -------------------------------------------------------------------------------- /cmd/internal/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/docs/.gitignore -------------------------------------------------------------------------------- /cmd/internal/docs/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/docs/command.go -------------------------------------------------------------------------------- /cmd/internal/docs/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/docs/command_test.go -------------------------------------------------------------------------------- /cmd/internal/featuregate/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/featuregate/command.go -------------------------------------------------------------------------------- /cmd/internal/featuregate/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/featuregate/command_test.go -------------------------------------------------------------------------------- /cmd/internal/featuregate/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/featuregate/package_test.go -------------------------------------------------------------------------------- /cmd/internal/flags/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/flags/admin.go -------------------------------------------------------------------------------- /cmd/internal/flags/admin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/flags/admin_test.go -------------------------------------------------------------------------------- /cmd/internal/flags/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/flags/doc.go -------------------------------------------------------------------------------- /cmd/internal/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/flags/flags.go -------------------------------------------------------------------------------- /cmd/internal/flags/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/flags/flags_test.go -------------------------------------------------------------------------------- /cmd/internal/flags/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/flags/package_test.go -------------------------------------------------------------------------------- /cmd/internal/flags/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/flags/service.go -------------------------------------------------------------------------------- /cmd/internal/flags/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/flags/service_test.go -------------------------------------------------------------------------------- /cmd/internal/printconfig/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/printconfig/command.go -------------------------------------------------------------------------------- /cmd/internal/printconfig/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/printconfig/command_test.go -------------------------------------------------------------------------------- /cmd/internal/status/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/status/command.go -------------------------------------------------------------------------------- /cmd/internal/status/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/status/command_test.go -------------------------------------------------------------------------------- /cmd/internal/storageconfig/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/storageconfig/config.go -------------------------------------------------------------------------------- /cmd/internal/storageconfig/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/storageconfig/config_test.go -------------------------------------------------------------------------------- /cmd/internal/storageconfig/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/storageconfig/factory.go -------------------------------------------------------------------------------- /cmd/internal/storageconfig/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/storageconfig/factory_test.go -------------------------------------------------------------------------------- /cmd/internal/storageconfig/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/internal/storageconfig/package_test.go -------------------------------------------------------------------------------- /cmd/jaeger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/.gitignore -------------------------------------------------------------------------------- /cmd/jaeger/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/Dockerfile -------------------------------------------------------------------------------- /cmd/jaeger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/README.md -------------------------------------------------------------------------------- /cmd/jaeger/config-badger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-badger.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-cassandra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-cassandra.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-clickhouse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-clickhouse.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-elasticsearch.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-kafka-collector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-kafka-collector.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-kafka-ingester.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-kafka-ingester.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-opensearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-opensearch.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-query.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-remote-storage-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-remote-storage-backend.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-remote-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-remote-storage.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-spm-elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-spm-elasticsearch.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-spm-opensearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-spm-opensearch.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-spm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-spm.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-tail-sampling-always-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config-tail-sampling-always-sample.yaml -------------------------------------------------------------------------------- /cmd/jaeger/config-ui.json: -------------------------------------------------------------------------------- 1 | { 2 | "archiveEnabled": true 3 | } 4 | -------------------------------------------------------------------------------- /cmd/jaeger/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/config.yaml -------------------------------------------------------------------------------- /cmd/jaeger/docs/migration/all-in-one-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/docs/migration/all-in-one-metrics.md -------------------------------------------------------------------------------- /cmd/jaeger/docs/migration/badger-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/docs/migration/badger-metrics.md -------------------------------------------------------------------------------- /cmd/jaeger/docs/migration/cassandra-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/docs/migration/cassandra-metrics.md -------------------------------------------------------------------------------- /cmd/jaeger/docs/migration/elasticsearch-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/docs/migration/elasticsearch-metrics.md -------------------------------------------------------------------------------- /cmd/jaeger/docs/migration/opensearch-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/docs/migration/opensearch-metrics.md -------------------------------------------------------------------------------- /cmd/jaeger/internal/all-in-one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/all-in-one.yaml -------------------------------------------------------------------------------- /cmd/jaeger/internal/all_in_one_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/all_in_one_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/command.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/command_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/components.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/components_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/components_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/extension/expvar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/extension/expvar/README.md -------------------------------------------------------------------------------- /cmd/jaeger/internal/extension/expvar/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/extension/expvar/config.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/extension/expvar/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/extension/expvar/config_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/extension/expvar/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/extension/expvar/extension.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/extension/expvar/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/extension/expvar/factory.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/extension/jaegerquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/extension/jaegerquery/README.md -------------------------------------------------------------------------------- /cmd/jaeger/internal/extension/jaegerquery/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/extension/jaegerquery/config.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/extension/jaegerquery/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/extension/jaegerquery/server.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/README.md -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/badger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/badger_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/binary.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/cassandra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/cassandra_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/clickhouse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/clickhouse_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/e2e_integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/e2e_integration.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/grpc_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/kafka_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/kafka_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/memory_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/opensearch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/opensearch_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/package_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/query_test.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/trace_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/trace_reader.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/integration/trace_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/integration/trace_writer.go -------------------------------------------------------------------------------- /cmd/jaeger/internal/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/internal/package_test.go -------------------------------------------------------------------------------- /cmd/jaeger/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/main.go -------------------------------------------------------------------------------- /cmd/jaeger/sampling-strategies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/sampling-strategies.json -------------------------------------------------------------------------------- /cmd/jaeger/sampling_strategies_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/jaeger/sampling_strategies_example.json -------------------------------------------------------------------------------- /cmd/query/app/apiv3/gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/apiv3/gateway_test.go -------------------------------------------------------------------------------- /cmd/query/app/apiv3/grpc_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/apiv3/grpc_handler.go -------------------------------------------------------------------------------- /cmd/query/app/apiv3/grpc_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/apiv3/grpc_handler_test.go -------------------------------------------------------------------------------- /cmd/query/app/apiv3/http_gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/apiv3/http_gateway.go -------------------------------------------------------------------------------- /cmd/query/app/apiv3/http_gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/apiv3/http_gateway_test.go -------------------------------------------------------------------------------- /cmd/query/app/apiv3/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/apiv3/package_test.go -------------------------------------------------------------------------------- /cmd/query/app/apiv3/snapshots/FindTraces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/apiv3/snapshots/FindTraces.json -------------------------------------------------------------------------------- /cmd/query/app/apiv3/snapshots/GetOperations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/apiv3/snapshots/GetOperations.json -------------------------------------------------------------------------------- /cmd/query/app/apiv3/snapshots/GetServices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/apiv3/snapshots/GetServices.json -------------------------------------------------------------------------------- /cmd/query/app/apiv3/snapshots/GetTrace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/apiv3/snapshots/GetTrace.json -------------------------------------------------------------------------------- /cmd/query/app/ddg/deep_dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/ddg/deep_dependencies.go -------------------------------------------------------------------------------- /cmd/query/app/ddg/deep_dependencies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/ddg/deep_dependencies_test.go -------------------------------------------------------------------------------- /cmd/query/app/default_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/default_params.go -------------------------------------------------------------------------------- /cmd/query/app/fixture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/fixture/index.html -------------------------------------------------------------------------------- /cmd/query/app/fixture/otlp2jaeger-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/fixture/otlp2jaeger-in.json -------------------------------------------------------------------------------- /cmd/query/app/fixture/otlp2jaeger-out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/fixture/otlp2jaeger-out.json -------------------------------------------------------------------------------- /cmd/query/app/fixture/static/asset.txt: -------------------------------------------------------------------------------- 1 | some asset 2 | -------------------------------------------------------------------------------- /cmd/query/app/fixture/ui-config-hotreload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/fixture/ui-config-hotreload.json -------------------------------------------------------------------------------- /cmd/query/app/fixture/ui-config-malformed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/fixture/ui-config-malformed.js -------------------------------------------------------------------------------- /cmd/query/app/fixture/ui-config-malformed.json: -------------------------------------------------------------------------------- 1 | {"x" == "y"} 2 | -------------------------------------------------------------------------------- /cmd/query/app/fixture/ui-config-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/fixture/ui-config-menu.js -------------------------------------------------------------------------------- /cmd/query/app/fixture/ui-config-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/fixture/ui-config-menu.json -------------------------------------------------------------------------------- /cmd/query/app/fixture/ui-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/fixture/ui-config.js -------------------------------------------------------------------------------- /cmd/query/app/fixture/ui-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": "y" 3 | } 4 | -------------------------------------------------------------------------------- /cmd/query/app/fixture/ui-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/fixture/ui-config.toml -------------------------------------------------------------------------------- /cmd/query/app/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/flags.go -------------------------------------------------------------------------------- /cmd/query/app/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/flags_test.go -------------------------------------------------------------------------------- /cmd/query/app/grpc_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/grpc_handler.go -------------------------------------------------------------------------------- /cmd/query/app/grpc_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/grpc_handler_test.go -------------------------------------------------------------------------------- /cmd/query/app/handler_archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/handler_archive_test.go -------------------------------------------------------------------------------- /cmd/query/app/handler_deps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/handler_deps_test.go -------------------------------------------------------------------------------- /cmd/query/app/handler_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/handler_options.go -------------------------------------------------------------------------------- /cmd/query/app/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/http_handler.go -------------------------------------------------------------------------------- /cmd/query/app/http_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/http_handler_test.go -------------------------------------------------------------------------------- /cmd/query/app/json_marshaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/json_marshaler.go -------------------------------------------------------------------------------- /cmd/query/app/otlp_translator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/otlp_translator.go -------------------------------------------------------------------------------- /cmd/query/app/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/package_test.go -------------------------------------------------------------------------------- /cmd/query/app/qualitymetrics/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/qualitymetrics/data.go -------------------------------------------------------------------------------- /cmd/query/app/qualitymetrics/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/qualitymetrics/data_test.go -------------------------------------------------------------------------------- /cmd/query/app/qualitymetrics/data_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/qualitymetrics/data_types.go -------------------------------------------------------------------------------- /cmd/query/app/query_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/query_parser.go -------------------------------------------------------------------------------- /cmd/query/app/query_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/query_parser_test.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/adjusters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/adjusters.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/internal/adjuster/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/internal/adjuster/doc.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/metrics_query_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/metrics_query_service.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/query_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/query_service.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/query_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/query_service_test.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/v2/adjuster/adjuster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/v2/adjuster/adjuster.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/v2/adjuster/clockskew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/v2/adjuster/clockskew.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/v2/adjuster/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/v2/adjuster/hash.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/v2/adjuster/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/v2/adjuster/hash_test.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/v2/adjuster/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/v2/adjuster/sort.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/v2/adjuster/sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/v2/adjuster/sort_test.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/v2/adjuster/spanlinks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/v2/adjuster/spanlinks.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/v2/adjuster/standard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/v2/adjuster/standard.go -------------------------------------------------------------------------------- /cmd/query/app/querysvc/v2/querysvc/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/querysvc/v2/querysvc/service.go -------------------------------------------------------------------------------- /cmd/query/app/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/server.go -------------------------------------------------------------------------------- /cmd/query/app/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/server_test.go -------------------------------------------------------------------------------- /cmd/query/app/static_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/static_handler.go -------------------------------------------------------------------------------- /cmd/query/app/static_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/static_handler_test.go -------------------------------------------------------------------------------- /cmd/query/app/token_propagation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/token_propagation_test.go -------------------------------------------------------------------------------- /cmd/query/app/trace_response_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/trace_response_handler.go -------------------------------------------------------------------------------- /cmd/query/app/trace_response_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/trace_response_handler_test.go -------------------------------------------------------------------------------- /cmd/query/app/ui/actual/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /cmd/query/app/ui/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/ui/assets.go -------------------------------------------------------------------------------- /cmd/query/app/ui/assets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/ui/assets_test.go -------------------------------------------------------------------------------- /cmd/query/app/ui/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/ui/doc.go -------------------------------------------------------------------------------- /cmd/query/app/ui/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/ui/empty_test.go -------------------------------------------------------------------------------- /cmd/query/app/ui/placeholder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/ui/placeholder/index.html -------------------------------------------------------------------------------- /cmd/query/app/ui/testdata/actual/index.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/ui/testdata/actual/index.html.gz -------------------------------------------------------------------------------- /cmd/query/app/ui/testdata/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/ui/testdata/empty_test.go -------------------------------------------------------------------------------- /cmd/query/app/ui/testdata/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/ui/testdata/mock.go -------------------------------------------------------------------------------- /cmd/query/app/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/util.go -------------------------------------------------------------------------------- /cmd/query/app/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/query/app/util_test.go -------------------------------------------------------------------------------- /cmd/remote-storage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/remote-storage/Dockerfile -------------------------------------------------------------------------------- /cmd/remote-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/remote-storage/README.md -------------------------------------------------------------------------------- /cmd/remote-storage/app/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/remote-storage/app/config.go -------------------------------------------------------------------------------- /cmd/remote-storage/app/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/remote-storage/app/config_test.go -------------------------------------------------------------------------------- /cmd/remote-storage/app/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/remote-storage/app/package_test.go -------------------------------------------------------------------------------- /cmd/remote-storage/app/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/remote-storage/app/server.go -------------------------------------------------------------------------------- /cmd/remote-storage/app/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/remote-storage/app/server_test.go -------------------------------------------------------------------------------- /cmd/remote-storage/config-badger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/remote-storage/config-badger.yaml -------------------------------------------------------------------------------- /cmd/remote-storage/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/remote-storage/config.yaml -------------------------------------------------------------------------------- /cmd/remote-storage/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/remote-storage/main.go -------------------------------------------------------------------------------- /cmd/tracegen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/tracegen/Dockerfile -------------------------------------------------------------------------------- /cmd/tracegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/tracegen/README.md -------------------------------------------------------------------------------- /cmd/tracegen/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/tracegen/docker-compose.yml -------------------------------------------------------------------------------- /cmd/tracegen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/cmd/tracegen/main.go -------------------------------------------------------------------------------- /crossdock/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/Dockerfile -------------------------------------------------------------------------------- /crossdock/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/docker-compose.yml -------------------------------------------------------------------------------- /crossdock/jaeger-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/jaeger-docker-compose.yml -------------------------------------------------------------------------------- /crossdock/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/main.go -------------------------------------------------------------------------------- /crossdock/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/rules.mk -------------------------------------------------------------------------------- /crossdock/services/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/services/collector.go -------------------------------------------------------------------------------- /crossdock/services/collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/services/collector_test.go -------------------------------------------------------------------------------- /crossdock/services/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/services/common.go -------------------------------------------------------------------------------- /crossdock/services/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/services/common_test.go -------------------------------------------------------------------------------- /crossdock/services/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/services/mocks/mocks.go -------------------------------------------------------------------------------- /crossdock/services/pakcage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/services/pakcage_test.go -------------------------------------------------------------------------------- /crossdock/services/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/services/query.go -------------------------------------------------------------------------------- /crossdock/services/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/services/query_test.go -------------------------------------------------------------------------------- /crossdock/services/t_mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/services/t_mock_test.go -------------------------------------------------------------------------------- /crossdock/services/tracehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/services/tracehandler.go -------------------------------------------------------------------------------- /crossdock/services/tracehandler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/crossdock/services/tracehandler_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/doc.go -------------------------------------------------------------------------------- /docker-compose/cassandra/v4/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/cassandra/v4/docker-compose.yaml -------------------------------------------------------------------------------- /docker-compose/cassandra/v5/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/cassandra/v5/docker-compose.yaml -------------------------------------------------------------------------------- /docker-compose/clickhouse/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/clickhouse/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/kafka/README.md -------------------------------------------------------------------------------- /docker-compose/kafka/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/kafka/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/kafka/v3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/kafka/v3/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/monitor/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /docker-compose/monitor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/monitor/Makefile -------------------------------------------------------------------------------- /docker-compose/monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/monitor/README.md -------------------------------------------------------------------------------- /docker-compose/monitor/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/monitor/datasource.yml -------------------------------------------------------------------------------- /docker-compose/monitor/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/monitor/diagram.png -------------------------------------------------------------------------------- /docker-compose/monitor/docker-compose-v1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/monitor/docker-compose-v1.yml -------------------------------------------------------------------------------- /docker-compose/monitor/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/monitor/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/monitor/jaeger-ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/monitor/jaeger-ui.json -------------------------------------------------------------------------------- /docker-compose/monitor/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/monitor/prometheus.yml -------------------------------------------------------------------------------- /docker-compose/opensearch/v1/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/opensearch/v1/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/opensearch/v2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/opensearch/v2/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/opensearch/v3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/opensearch/v3/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/scylladb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/scylladb/README.md -------------------------------------------------------------------------------- /docker-compose/scylladb/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/scylladb/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/tail-sampling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/tail-sampling/Makefile -------------------------------------------------------------------------------- /docker-compose/tail-sampling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/tail-sampling/README.md -------------------------------------------------------------------------------- /docker-compose/tail-sampling/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docker-compose/tail-sampling/docker-compose.yml -------------------------------------------------------------------------------- /docs/SCARF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docs/SCARF.md -------------------------------------------------------------------------------- /docs/adr/cassandra-find-traces-duration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docs/adr/cassandra-find-traces-duration.md -------------------------------------------------------------------------------- /docs/adr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docs/adr/index.md -------------------------------------------------------------------------------- /docs/release/remove-v1-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/docs/release/remove-v1-checklist.md -------------------------------------------------------------------------------- /empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/empty_test.go -------------------------------------------------------------------------------- /examples/grafana-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/grafana-integration/README.md -------------------------------------------------------------------------------- /examples/grafana-integration/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/grafana-integration/docker-compose.yaml -------------------------------------------------------------------------------- /examples/hotrod/.gitignore: -------------------------------------------------------------------------------- 1 | hotrod-linux 2 | -------------------------------------------------------------------------------- /examples/hotrod/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/Dockerfile -------------------------------------------------------------------------------- /examples/hotrod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/README.md -------------------------------------------------------------------------------- /examples/hotrod/cmd/all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/cmd/all.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/customer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/cmd/customer.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/cmd/driver.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/cmd/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/cmd/flags.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/cmd/frontend.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/cmd/root.go -------------------------------------------------------------------------------- /examples/hotrod/cmd/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/cmd/route.go -------------------------------------------------------------------------------- /examples/hotrod/docker-compose-v1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/docker-compose-v1.yml -------------------------------------------------------------------------------- /examples/hotrod/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/docker-compose.yml -------------------------------------------------------------------------------- /examples/hotrod/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/kubernetes/README.md -------------------------------------------------------------------------------- /examples/hotrod/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/main.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/delay/delay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/delay/delay.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/delay/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/delay/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/httperr/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/httperr/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/httperr/httperr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/httperr/httperr.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/log/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/log/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/log/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/log/factory.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/log/logger.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/log/spanlogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/log/spanlogger.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/pool/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/pool/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/pool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/pool/pool.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/baggage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/tracing/baggage.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/tracing/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/tracing/http.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/tracing/init.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/mutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/tracing/mutex.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/tracing/mux.go -------------------------------------------------------------------------------- /examples/hotrod/pkg/tracing/rpcmetrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/pkg/tracing/rpcmetrics/README.md -------------------------------------------------------------------------------- /examples/hotrod/services/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/config/config.go -------------------------------------------------------------------------------- /examples/hotrod/services/config/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/config/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/services/customer/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/customer/client.go -------------------------------------------------------------------------------- /examples/hotrod/services/customer/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/customer/database.go -------------------------------------------------------------------------------- /examples/hotrod/services/customer/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/customer/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/services/customer/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/customer/interface.go -------------------------------------------------------------------------------- /examples/hotrod/services/customer/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/customer/server.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/driver/client.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/driver.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/driver/driver.pb.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/driver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/driver/driver.proto -------------------------------------------------------------------------------- /examples/hotrod/services/driver/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/driver/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/driver/interface.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/driver/redis.go -------------------------------------------------------------------------------- /examples/hotrod/services/driver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/driver/server.go -------------------------------------------------------------------------------- /examples/hotrod/services/frontend/best_eta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/frontend/best_eta.go -------------------------------------------------------------------------------- /examples/hotrod/services/frontend/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/frontend/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/services/frontend/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/frontend/server.go -------------------------------------------------------------------------------- /examples/hotrod/services/route/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/route/client.go -------------------------------------------------------------------------------- /examples/hotrod/services/route/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/route/empty_test.go -------------------------------------------------------------------------------- /examples/hotrod/services/route/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/route/interface.go -------------------------------------------------------------------------------- /examples/hotrod/services/route/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/route/server.go -------------------------------------------------------------------------------- /examples/hotrod/services/route/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/hotrod/services/route/stats.go -------------------------------------------------------------------------------- /examples/oci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/oci/README.md -------------------------------------------------------------------------------- /examples/oci/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/oci/config.yaml -------------------------------------------------------------------------------- /examples/oci/deploy-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/oci/deploy-all.sh -------------------------------------------------------------------------------- /examples/oci/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/oci/ingress.yaml -------------------------------------------------------------------------------- /examples/oci/jaeger-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/oci/jaeger-values.yaml -------------------------------------------------------------------------------- /examples/oci/load-generator/generate_traces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/oci/load-generator/generate_traces.py -------------------------------------------------------------------------------- /examples/oci/load-generator/load-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/oci/load-generator/load-generator.yaml -------------------------------------------------------------------------------- /examples/oci/monitoring-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/oci/monitoring-values.yaml -------------------------------------------------------------------------------- /examples/oci/prometheus-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/oci/prometheus-svc.yaml -------------------------------------------------------------------------------- /examples/oci/tls-cert/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/oci/tls-cert/issuer.yaml -------------------------------------------------------------------------------- /examples/oci/ui-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/oci/ui-config.json -------------------------------------------------------------------------------- /examples/opentracing-tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/opentracing-tutorial/README.md -------------------------------------------------------------------------------- /examples/otel-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/README.md -------------------------------------------------------------------------------- /examples/otel-demo/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/cleanup.sh -------------------------------------------------------------------------------- /examples/otel-demo/deploy-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/deploy-all.sh -------------------------------------------------------------------------------- /examples/otel-demo/generate_traces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/generate_traces.py -------------------------------------------------------------------------------- /examples/otel-demo/ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/ingress/README.md -------------------------------------------------------------------------------- /examples/otel-demo/ingress/ingress-jaeger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/ingress/ingress-jaeger.yaml -------------------------------------------------------------------------------- /examples/otel-demo/jaeger-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/jaeger-config.yaml -------------------------------------------------------------------------------- /examples/otel-demo/jaeger-query-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/jaeger-query-service.yaml -------------------------------------------------------------------------------- /examples/otel-demo/jaeger-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/jaeger-values.yaml -------------------------------------------------------------------------------- /examples/otel-demo/load-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/load-generator.yaml -------------------------------------------------------------------------------- /examples/otel-demo/opensearch-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/opensearch-values.yaml -------------------------------------------------------------------------------- /examples/otel-demo/otel-demo-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/otel-demo-values.yaml -------------------------------------------------------------------------------- /examples/otel-demo/start-port-forward.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/otel-demo/start-port-forward.sh -------------------------------------------------------------------------------- /examples/reverse-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/reverse-proxy/README.md -------------------------------------------------------------------------------- /examples/reverse-proxy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/reverse-proxy/docker-compose.yml -------------------------------------------------------------------------------- /examples/reverse-proxy/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/examples/reverse-proxy/httpd.conf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/go.sum -------------------------------------------------------------------------------- /internal/auth/apikey/apikey-context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/apikey/apikey-context.go -------------------------------------------------------------------------------- /internal/auth/apikey/apikey-context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/apikey/apikey-context_test.go -------------------------------------------------------------------------------- /internal/auth/apikey/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/apikey/package_test.go -------------------------------------------------------------------------------- /internal/auth/bearertoken/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/bearertoken/context.go -------------------------------------------------------------------------------- /internal/auth/bearertoken/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/bearertoken/context_test.go -------------------------------------------------------------------------------- /internal/auth/bearertoken/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/bearertoken/grpc.go -------------------------------------------------------------------------------- /internal/auth/bearertoken/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/bearertoken/grpc_test.go -------------------------------------------------------------------------------- /internal/auth/bearertoken/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/bearertoken/http.go -------------------------------------------------------------------------------- /internal/auth/bearertoken/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/bearertoken/http_test.go -------------------------------------------------------------------------------- /internal/auth/bearertoken/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/bearertoken/package_test.go -------------------------------------------------------------------------------- /internal/auth/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/package_test.go -------------------------------------------------------------------------------- /internal/auth/tokenloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/tokenloader.go -------------------------------------------------------------------------------- /internal/auth/tokenloader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/tokenloader_test.go -------------------------------------------------------------------------------- /internal/auth/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/transport.go -------------------------------------------------------------------------------- /internal/auth/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/auth/transport_test.go -------------------------------------------------------------------------------- /internal/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/cache/cache.go -------------------------------------------------------------------------------- /internal/cache/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/cache/lru.go -------------------------------------------------------------------------------- /internal/cache/lru_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/cache/lru_test.go -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/config_test.go -------------------------------------------------------------------------------- /internal/config/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/package_test.go -------------------------------------------------------------------------------- /internal/config/promcfg/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/promcfg/config.go -------------------------------------------------------------------------------- /internal/config/promcfg/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/promcfg/config_test.go -------------------------------------------------------------------------------- /internal/config/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/string_slice.go -------------------------------------------------------------------------------- /internal/config/string_slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/string_slice_test.go -------------------------------------------------------------------------------- /internal/config/tlscfg/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/tlscfg/flags.go -------------------------------------------------------------------------------- /internal/config/tlscfg/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/tlscfg/flags_test.go -------------------------------------------------------------------------------- /internal/config/tlscfg/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/tlscfg/options.go -------------------------------------------------------------------------------- /internal/config/tlscfg/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/tlscfg/options_test.go -------------------------------------------------------------------------------- /internal/config/tlscfg/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/tlscfg/package_test.go -------------------------------------------------------------------------------- /internal/config/tlscfg/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/tlscfg/testdata/README.md -------------------------------------------------------------------------------- /internal/config/tlscfg/testdata/bad-CA-cert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/tlscfg/testdata/bad-CA-cert.txt -------------------------------------------------------------------------------- /internal/config/tlscfg/testdata/gen-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/config/tlscfg/testdata/gen-certs.sh -------------------------------------------------------------------------------- /internal/converter/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/converter/doc.go -------------------------------------------------------------------------------- /internal/converter/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/converter/empty_test.go -------------------------------------------------------------------------------- /internal/converter/thrift/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/converter/thrift/doc.go -------------------------------------------------------------------------------- /internal/converter/thrift/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/converter/thrift/empty_test.go -------------------------------------------------------------------------------- /internal/converter/thrift/jaeger/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/converter/thrift/jaeger/doc.go -------------------------------------------------------------------------------- /internal/converter/thrift/jaeger/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/converter/thrift/jaeger/package_test.go -------------------------------------------------------------------------------- /internal/converter/thrift/jaeger/to_domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/converter/thrift/jaeger/to_domain.go -------------------------------------------------------------------------------- /internal/distributedlock/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/distributedlock/empty_test.go -------------------------------------------------------------------------------- /internal/distributedlock/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/distributedlock/interface.go -------------------------------------------------------------------------------- /internal/distributedlock/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/distributedlock/mocks/mocks.go -------------------------------------------------------------------------------- /internal/fswatcher/fswatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/fswatcher/fswatcher.go -------------------------------------------------------------------------------- /internal/fswatcher/fswatcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/fswatcher/fswatcher_test.go -------------------------------------------------------------------------------- /internal/gogocodec/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/gogocodec/codec.go -------------------------------------------------------------------------------- /internal/gogocodec/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/gogocodec/codec_test.go -------------------------------------------------------------------------------- /internal/grpctest/reflection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/grpctest/reflection.go -------------------------------------------------------------------------------- /internal/grpctest/reflection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/grpctest/reflection_test.go -------------------------------------------------------------------------------- /internal/gzipfs/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/gzipfs/gzip.go -------------------------------------------------------------------------------- /internal/gzipfs/gzip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/gzipfs/gzip_test.go -------------------------------------------------------------------------------- /internal/gzipfs/testdata/foobar: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /internal/gzipfs/testdata/foobar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/gzipfs/testdata/foobar.gz -------------------------------------------------------------------------------- /internal/gzipfs/testdata/foobaz.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/gzipfs/testdata/foobaz.gz -------------------------------------------------------------------------------- /internal/gzipfs/testdata/foobaz_truncated.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/gzipfs/testdata/foobaz_truncated.gz -------------------------------------------------------------------------------- /internal/gzipfs/testdata/not_archive.gz: -------------------------------------------------------------------------------- 1 | this is not a gzipped file 2 | -------------------------------------------------------------------------------- /internal/healthcheck/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/healthcheck/handler.go -------------------------------------------------------------------------------- /internal/healthcheck/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/healthcheck/handler_test.go -------------------------------------------------------------------------------- /internal/healthcheck/internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/healthcheck/internal_test.go -------------------------------------------------------------------------------- /internal/healthcheck/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/healthcheck/package_test.go -------------------------------------------------------------------------------- /internal/hostname/hostname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/hostname/hostname.go -------------------------------------------------------------------------------- /internal/hostname/hostname_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/hostname/hostname_test.go -------------------------------------------------------------------------------- /internal/httpfs/prefixed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/httpfs/prefixed.go -------------------------------------------------------------------------------- /internal/httpfs/prefixed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/httpfs/prefixed_test.go -------------------------------------------------------------------------------- /internal/httpfs/test_assets/somefile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/jaegerclientenv2otel/envvars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jaegerclientenv2otel/envvars.go -------------------------------------------------------------------------------- /internal/jaegerclientenv2otel/envvars_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jaegerclientenv2otel/envvars_test.go -------------------------------------------------------------------------------- /internal/jiter/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jiter/iter.go -------------------------------------------------------------------------------- /internal/jiter/iter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jiter/iter_test.go -------------------------------------------------------------------------------- /internal/jiter/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jiter/package_test.go -------------------------------------------------------------------------------- /internal/jptrace/aggregator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/aggregator.go -------------------------------------------------------------------------------- /internal/jptrace/aggregator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/aggregator_test.go -------------------------------------------------------------------------------- /internal/jptrace/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/attributes.go -------------------------------------------------------------------------------- /internal/jptrace/attributes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/attributes_test.go -------------------------------------------------------------------------------- /internal/jptrace/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/package_test.go -------------------------------------------------------------------------------- /internal/jptrace/sanitizer/emptyservicename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/sanitizer/emptyservicename.go -------------------------------------------------------------------------------- /internal/jptrace/sanitizer/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/sanitizer/package_test.go -------------------------------------------------------------------------------- /internal/jptrace/sanitizer/readonly_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/sanitizer/readonly_test.go -------------------------------------------------------------------------------- /internal/jptrace/sanitizer/sanitizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/sanitizer/sanitizer.go -------------------------------------------------------------------------------- /internal/jptrace/sanitizer/sanitizer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/sanitizer/sanitizer_test.go -------------------------------------------------------------------------------- /internal/jptrace/sanitizer/utf8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/sanitizer/utf8.go -------------------------------------------------------------------------------- /internal/jptrace/sanitizer/utf8_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/sanitizer/utf8_test.go -------------------------------------------------------------------------------- /internal/jptrace/spaniter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/spaniter.go -------------------------------------------------------------------------------- /internal/jptrace/spaniter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/spaniter_test.go -------------------------------------------------------------------------------- /internal/jptrace/spankind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/spankind.go -------------------------------------------------------------------------------- /internal/jptrace/spankind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/spankind_test.go -------------------------------------------------------------------------------- /internal/jptrace/spanmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/spanmap.go -------------------------------------------------------------------------------- /internal/jptrace/spanmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/spanmap_test.go -------------------------------------------------------------------------------- /internal/jptrace/statuscode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/statuscode.go -------------------------------------------------------------------------------- /internal/jptrace/statuscode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/statuscode_test.go -------------------------------------------------------------------------------- /internal/jptrace/traces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/traces.go -------------------------------------------------------------------------------- /internal/jptrace/traces_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/traces_test.go -------------------------------------------------------------------------------- /internal/jptrace/warning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/warning.go -------------------------------------------------------------------------------- /internal/jptrace/warning_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jptrace/warning_test.go -------------------------------------------------------------------------------- /internal/jtracer/jtracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jtracer/jtracer.go -------------------------------------------------------------------------------- /internal/jtracer/jtracer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/jtracer/jtracer_test.go -------------------------------------------------------------------------------- /internal/leaderelection/leader_election.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/leaderelection/leader_election.go -------------------------------------------------------------------------------- /internal/leaderelection/leader_election_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/leaderelection/leader_election_test.go -------------------------------------------------------------------------------- /internal/leaderelection/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/leaderelection/mocks/mocks.go -------------------------------------------------------------------------------- /internal/metrics/benchmark/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/benchmark/benchmark_test.go -------------------------------------------------------------------------------- /internal/metrics/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/counter.go -------------------------------------------------------------------------------- /internal/metrics/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/factory.go -------------------------------------------------------------------------------- /internal/metrics/gauge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/gauge.go -------------------------------------------------------------------------------- /internal/metrics/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/histogram.go -------------------------------------------------------------------------------- /internal/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/metrics.go -------------------------------------------------------------------------------- /internal/metrics/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/metrics_test.go -------------------------------------------------------------------------------- /internal/metrics/metricsbuilder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/metricsbuilder/builder.go -------------------------------------------------------------------------------- /internal/metrics/metricsbuilder/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/metricsbuilder/builder_test.go -------------------------------------------------------------------------------- /internal/metrics/otelmetrics/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/otelmetrics/counter.go -------------------------------------------------------------------------------- /internal/metrics/otelmetrics/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/otelmetrics/factory.go -------------------------------------------------------------------------------- /internal/metrics/otelmetrics/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/otelmetrics/factory_test.go -------------------------------------------------------------------------------- /internal/metrics/otelmetrics/gauge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/otelmetrics/gauge.go -------------------------------------------------------------------------------- /internal/metrics/otelmetrics/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/otelmetrics/histogram.go -------------------------------------------------------------------------------- /internal/metrics/otelmetrics/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/otelmetrics/timer.go -------------------------------------------------------------------------------- /internal/metrics/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/package.go -------------------------------------------------------------------------------- /internal/metrics/prometheus/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/prometheus/cache.go -------------------------------------------------------------------------------- /internal/metrics/prometheus/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/prometheus/factory.go -------------------------------------------------------------------------------- /internal/metrics/prometheus/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/prometheus/factory_test.go -------------------------------------------------------------------------------- /internal/metrics/stopwatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/stopwatch.go -------------------------------------------------------------------------------- /internal/metrics/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metrics/timer.go -------------------------------------------------------------------------------- /internal/metricstest/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metricstest/keys.go -------------------------------------------------------------------------------- /internal/metricstest/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metricstest/local.go -------------------------------------------------------------------------------- /internal/metricstest/local_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metricstest/local_test.go -------------------------------------------------------------------------------- /internal/metricstest/metricstest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metricstest/metricstest.go -------------------------------------------------------------------------------- /internal/metricstest/metricstest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metricstest/metricstest_test.go -------------------------------------------------------------------------------- /internal/metricstest/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/metricstest/package_test.go -------------------------------------------------------------------------------- /internal/proto-gen/.gitignore: -------------------------------------------------------------------------------- 1 | .patched/ 2 | -------------------------------------------------------------------------------- /internal/proto-gen/patch.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/proto-gen/patch.sed -------------------------------------------------------------------------------- /internal/proto-gen/storage_v1/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/proto-gen/storage_v1/mocks/mocks.go -------------------------------------------------------------------------------- /internal/proto-gen/storage_v1/storage.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/proto-gen/storage_v1/storage.pb.go -------------------------------------------------------------------------------- /internal/proto-gen/zipkin/zipkin.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/proto-gen/zipkin/zipkin.pb.go -------------------------------------------------------------------------------- /internal/proto/api_v3/query_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/proto/api_v3/query_service.pb.go -------------------------------------------------------------------------------- /internal/proto/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/proto/metrics/README.md -------------------------------------------------------------------------------- /internal/proto/metrics/openmetrics.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/proto/metrics/openmetrics.proto -------------------------------------------------------------------------------- /internal/proto/metrics/otelspankind.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/proto/metrics/otelspankind.proto -------------------------------------------------------------------------------- /internal/recoveryhandler/zap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/recoveryhandler/zap.go -------------------------------------------------------------------------------- /internal/recoveryhandler/zap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/recoveryhandler/zap_test.go -------------------------------------------------------------------------------- /internal/safeexpvar/safeexpvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/safeexpvar/safeexpvar.go -------------------------------------------------------------------------------- /internal/safeexpvar/safeexpvar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/safeexpvar/safeexpvar_test.go -------------------------------------------------------------------------------- /internal/sampling/grpc/grpc_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/grpc/grpc_handler.go -------------------------------------------------------------------------------- /internal/sampling/grpc/grpc_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/grpc/grpc_handler_test.go -------------------------------------------------------------------------------- /internal/sampling/http/cfgmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/http/cfgmgr.go -------------------------------------------------------------------------------- /internal/sampling/http/cfgmgr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/http/cfgmgr_test.go -------------------------------------------------------------------------------- /internal/sampling/http/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/http/handler.go -------------------------------------------------------------------------------- /internal/sampling/http/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/http/handler_test.go -------------------------------------------------------------------------------- /internal/sampling/http/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/http/package_test.go -------------------------------------------------------------------------------- /internal/sampling/http/thrift-0.9.2/.nocover: -------------------------------------------------------------------------------- 1 | Thrift-generated files 2 | -------------------------------------------------------------------------------- /internal/sampling/http/thrift-0.9.2/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/http/thrift-0.9.2/constants.go -------------------------------------------------------------------------------- /internal/sampling/http/thrift-0.9.2/ttypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/http/thrift-0.9.2/ttypes.go -------------------------------------------------------------------------------- /internal/sampling/samplingstrategy/aggregator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/samplingstrategy/aggregator.go -------------------------------------------------------------------------------- /internal/sampling/samplingstrategy/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/samplingstrategy/empty_test.go -------------------------------------------------------------------------------- /internal/sampling/samplingstrategy/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/samplingstrategy/factory.go -------------------------------------------------------------------------------- /internal/sampling/samplingstrategy/file/fixtures/bad_strategies.json: -------------------------------------------------------------------------------- 1 | "nonsense" 2 | -------------------------------------------------------------------------------- /internal/sampling/samplingstrategy/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/sampling/samplingstrategy/provider.go -------------------------------------------------------------------------------- /internal/storage/cassandra/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/cassandra/config/config.go -------------------------------------------------------------------------------- /internal/storage/cassandra/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/cassandra/config/config_test.go -------------------------------------------------------------------------------- /internal/storage/cassandra/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/cassandra/empty_test.go -------------------------------------------------------------------------------- /internal/storage/cassandra/gocql/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/cassandra/gocql/empty_test.go -------------------------------------------------------------------------------- /internal/storage/cassandra/gocql/gocql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/cassandra/gocql/gocql.go -------------------------------------------------------------------------------- /internal/storage/cassandra/metrics/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/cassandra/metrics/table.go -------------------------------------------------------------------------------- /internal/storage/cassandra/metrics/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/cassandra/metrics/table_test.go -------------------------------------------------------------------------------- /internal/storage/cassandra/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/cassandra/mocks/mocks.go -------------------------------------------------------------------------------- /internal/storage/cassandra/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/cassandra/session.go -------------------------------------------------------------------------------- /internal/storage/elasticsearch/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/elasticsearch/client.go -------------------------------------------------------------------------------- /internal/storage/elasticsearch/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/elasticsearch/client/client.go -------------------------------------------------------------------------------- /internal/storage/elasticsearch/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/elasticsearch/config/config.go -------------------------------------------------------------------------------- /internal/storage/elasticsearch/dbmodel/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/elasticsearch/dbmodel/model.go -------------------------------------------------------------------------------- /internal/storage/elasticsearch/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/elasticsearch/empty_test.go -------------------------------------------------------------------------------- /internal/storage/elasticsearch/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/elasticsearch/errors.go -------------------------------------------------------------------------------- /internal/storage/elasticsearch/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/elasticsearch/errors_test.go -------------------------------------------------------------------------------- /internal/storage/elasticsearch/filter/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/elasticsearch/filter/alias.go -------------------------------------------------------------------------------- /internal/storage/elasticsearch/filter/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/elasticsearch/filter/date.go -------------------------------------------------------------------------------- /internal/storage/elasticsearch/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/elasticsearch/mocks/mocks.go -------------------------------------------------------------------------------- /internal/storage/elasticsearch/textTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/elasticsearch/textTemplate.go -------------------------------------------------------------------------------- /internal/storage/integration/badgerstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/integration/badgerstore_test.go -------------------------------------------------------------------------------- /internal/storage/integration/cassandra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/integration/cassandra_test.go -------------------------------------------------------------------------------- /internal/storage/integration/fixtures/grpc_plugin_conf.yaml: -------------------------------------------------------------------------------- 1 | enable_streaming_writer: true -------------------------------------------------------------------------------- /internal/storage/integration/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/integration/grpc_test.go -------------------------------------------------------------------------------- /internal/storage/integration/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/integration/integration.go -------------------------------------------------------------------------------- /internal/storage/integration/memstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/integration/memstore_test.go -------------------------------------------------------------------------------- /internal/storage/integration/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/integration/package_test.go -------------------------------------------------------------------------------- /internal/storage/integration/trace_compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/integration/trace_compare.go -------------------------------------------------------------------------------- /internal/storage/metricstore/disabled/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/metricstore/disabled/reader.go -------------------------------------------------------------------------------- /internal/storage/metricstore/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/metricstore/factory.go -------------------------------------------------------------------------------- /internal/storage/metricstore/factory_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/metricstore/factory_config.go -------------------------------------------------------------------------------- /internal/storage/metricstore/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/metricstore/package_test.go -------------------------------------------------------------------------------- /internal/storage/v1/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/api/README.md -------------------------------------------------------------------------------- /internal/storage/v1/api/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/api/doc.go -------------------------------------------------------------------------------- /internal/storage/v1/api/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/api/empty_test.go -------------------------------------------------------------------------------- /internal/storage/v1/api/metricstore/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/api/metricstore/interface.go -------------------------------------------------------------------------------- /internal/storage/v1/api/spanstore/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/api/spanstore/interface.go -------------------------------------------------------------------------------- /internal/storage/v1/api/spanstore/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/api/spanstore/mocks/mocks.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/README.md -------------------------------------------------------------------------------- /internal/storage/v1/badger/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/config.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/config_test.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/factory.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/factory_test.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/lock.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/lock_test.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/options.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/options_test.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/package_test.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/spanstore/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/spanstore/cache.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/spanstore/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/spanstore/reader.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/spanstore/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/spanstore/writer.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/stats.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/stats_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/stats_linux.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/stats_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/stats_linux_test.go -------------------------------------------------------------------------------- /internal/storage/v1/badger/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/badger/stats_test.go -------------------------------------------------------------------------------- /internal/storage/v1/blackhole/blackhole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/blackhole/blackhole.go -------------------------------------------------------------------------------- /internal/storage/v1/blackhole/blackhole_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/blackhole/blackhole_test.go -------------------------------------------------------------------------------- /internal/storage/v1/blackhole/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/blackhole/factory.go -------------------------------------------------------------------------------- /internal/storage/v1/blackhole/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/blackhole/factory_test.go -------------------------------------------------------------------------------- /internal/storage/v1/blackhole/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/blackhole/package_test.go -------------------------------------------------------------------------------- /internal/storage/v1/cassandra/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/cassandra/Dockerfile -------------------------------------------------------------------------------- /internal/storage/v1/cassandra/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/cassandra/factory.go -------------------------------------------------------------------------------- /internal/storage/v1/cassandra/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/cassandra/factory_test.go -------------------------------------------------------------------------------- /internal/storage/v1/cassandra/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/cassandra/helper.go -------------------------------------------------------------------------------- /internal/storage/v1/cassandra/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/cassandra/options.go -------------------------------------------------------------------------------- /internal/storage/v1/cassandra/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/cassandra/options_test.go -------------------------------------------------------------------------------- /internal/storage/v1/cassandra/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/cassandra/package_test.go -------------------------------------------------------------------------------- /internal/storage/v1/cassandra/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/cassandra/schema/README.md -------------------------------------------------------------------------------- /internal/storage/v1/cassandra/schema/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/cassandra/schema/create.sh -------------------------------------------------------------------------------- /internal/storage/v1/cassandra/schema/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/cassandra/schema/docker.sh -------------------------------------------------------------------------------- /internal/storage/v1/cassandra/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/cassandra/schema/schema.go -------------------------------------------------------------------------------- /internal/storage/v1/configurable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/configurable.go -------------------------------------------------------------------------------- /internal/storage/v1/elasticsearch/.gitignore: -------------------------------------------------------------------------------- 1 | esmapping-generator-*-* 2 | -------------------------------------------------------------------------------- /internal/storage/v1/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/elasticsearch/README.md -------------------------------------------------------------------------------- /internal/storage/v1/elasticsearch/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/elasticsearch/factory.go -------------------------------------------------------------------------------- /internal/storage/v1/elasticsearch/fixtures/tags_02.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /internal/storage/v1/elasticsearch/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/elasticsearch/options.go -------------------------------------------------------------------------------- /internal/storage/v1/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/factory.go -------------------------------------------------------------------------------- /internal/storage/v1/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/grpc/README.md -------------------------------------------------------------------------------- /internal/storage/v1/grpc/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/grpc/config.go -------------------------------------------------------------------------------- /internal/storage/v1/grpc/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/grpc/config_test.go -------------------------------------------------------------------------------- /internal/storage/v1/grpc/factory.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2025 The Jaeger Authors. 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | package grpc 5 | -------------------------------------------------------------------------------- /internal/storage/v1/grpc/factory_test.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2025 The Jaeger Authors. 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | package grpc 5 | -------------------------------------------------------------------------------- /internal/storage/v1/grpc/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/grpc/package_test.go -------------------------------------------------------------------------------- /internal/storage/v1/grpc/proto/storage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/grpc/proto/storage.proto -------------------------------------------------------------------------------- /internal/storage/v1/grpc/shared/grpc_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/grpc/shared/grpc_handler.go -------------------------------------------------------------------------------- /internal/storage/v1/grpc/shared/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/grpc/shared/interface.go -------------------------------------------------------------------------------- /internal/storage/v1/grpc/shared/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/grpc/shared/mocks/mocks.go -------------------------------------------------------------------------------- /internal/storage/v1/grpc/shared/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/grpc/shared/package_test.go -------------------------------------------------------------------------------- /internal/storage/v1/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/mocks/mocks.go -------------------------------------------------------------------------------- /internal/storage/v1/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v1/package_test.go -------------------------------------------------------------------------------- /internal/storage/v2/api/depstore/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/api/depstore/factory.go -------------------------------------------------------------------------------- /internal/storage/v2/api/depstore/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/api/depstore/mocks/mocks.go -------------------------------------------------------------------------------- /internal/storage/v2/api/depstore/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/api/depstore/package_test.go -------------------------------------------------------------------------------- /internal/storage/v2/api/depstore/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/api/depstore/reader.go -------------------------------------------------------------------------------- /internal/storage/v2/api/depstore/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/api/depstore/writer.go -------------------------------------------------------------------------------- /internal/storage/v2/api/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/api/package_test.go -------------------------------------------------------------------------------- /internal/storage/v2/api/tracestore/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/api/tracestore/empty_test.go -------------------------------------------------------------------------------- /internal/storage/v2/api/tracestore/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/api/tracestore/factory.go -------------------------------------------------------------------------------- /internal/storage/v2/api/tracestore/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/api/tracestore/reader.go -------------------------------------------------------------------------------- /internal/storage/v2/api/tracestore/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/api/tracestore/writer.go -------------------------------------------------------------------------------- /internal/storage/v2/badger/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/badger/factory.go -------------------------------------------------------------------------------- /internal/storage/v2/badger/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/badger/factory_test.go -------------------------------------------------------------------------------- /internal/storage/v2/badger/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/badger/package_test.go -------------------------------------------------------------------------------- /internal/storage/v2/cassandra/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/cassandra/factory.go -------------------------------------------------------------------------------- /internal/storage/v2/cassandra/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/cassandra/factory_test.go -------------------------------------------------------------------------------- /internal/storage/v2/cassandra/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/cassandra/package_test.go -------------------------------------------------------------------------------- /internal/storage/v2/clickhouse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/clickhouse/README.md -------------------------------------------------------------------------------- /internal/storage/v2/clickhouse/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/clickhouse/config.go -------------------------------------------------------------------------------- /internal/storage/v2/clickhouse/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/clickhouse/config_test.go -------------------------------------------------------------------------------- /internal/storage/v2/clickhouse/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/clickhouse/factory.go -------------------------------------------------------------------------------- /internal/storage/v2/clickhouse/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/clickhouse/factory_test.go -------------------------------------------------------------------------------- /internal/storage/v2/clickhouse/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/clickhouse/package_test.go -------------------------------------------------------------------------------- /internal/storage/v2/clickhouse/sql/queries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/clickhouse/sql/queries.go -------------------------------------------------------------------------------- /internal/storage/v2/elasticsearch/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/elasticsearch/factory.go -------------------------------------------------------------------------------- /internal/storage/v2/elasticsearch/tracestore/fixtures/.gitignore: -------------------------------------------------------------------------------- 1 | actual_* -------------------------------------------------------------------------------- /internal/storage/v2/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/README.md -------------------------------------------------------------------------------- /internal/storage/v2/grpc/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/config.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/config_test.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/depreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/depreader.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/depreader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/depreader_test.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/factory.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/factory_test.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/handler.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/handler_test.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/package_test.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/tracereader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/tracereader.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/tracereader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/tracereader_test.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/tracewriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/tracewriter.go -------------------------------------------------------------------------------- /internal/storage/v2/grpc/tracewriter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/grpc/tracewriter_test.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/config.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/config_test.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/factory.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/factory_test.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/lock.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/lock_test.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/memory.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/memory_test.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/package_test.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/sampling.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/sampling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/sampling_test.go -------------------------------------------------------------------------------- /internal/storage/v2/memory/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/memory/tenant.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/README.md -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/depreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/depreader.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/depreader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/depreader_test.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/otelids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/otelids.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/otelids_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/otelids_test.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/package_test.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/spanreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/spanreader.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/spanreader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/spanreader_test.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/spanwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/spanwriter.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/spanwriter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/spanwriter_test.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/tracereader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/tracereader.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/tracewriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/tracewriter.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/translator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/translator.go -------------------------------------------------------------------------------- /internal/storage/v2/v1adapter/translator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/storage/v2/v1adapter/translator_test.go -------------------------------------------------------------------------------- /internal/telemetry/otelsemconv/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/telemetry/otelsemconv/empty_test.go -------------------------------------------------------------------------------- /internal/telemetry/otelsemconv/semconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/telemetry/otelsemconv/semconv.go -------------------------------------------------------------------------------- /internal/telemetry/otelsemconv/semconv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/telemetry/otelsemconv/semconv_test.go -------------------------------------------------------------------------------- /internal/telemetry/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/telemetry/settings.go -------------------------------------------------------------------------------- /internal/telemetry/settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/telemetry/settings_test.go -------------------------------------------------------------------------------- /internal/tenancy/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tenancy/context.go -------------------------------------------------------------------------------- /internal/tenancy/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tenancy/context_test.go -------------------------------------------------------------------------------- /internal/tenancy/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tenancy/flags.go -------------------------------------------------------------------------------- /internal/tenancy/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tenancy/flags_test.go -------------------------------------------------------------------------------- /internal/tenancy/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tenancy/grpc.go -------------------------------------------------------------------------------- /internal/tenancy/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tenancy/grpc_test.go -------------------------------------------------------------------------------- /internal/tenancy/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tenancy/http.go -------------------------------------------------------------------------------- /internal/tenancy/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tenancy/http_test.go -------------------------------------------------------------------------------- /internal/tenancy/manage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tenancy/manage_test.go -------------------------------------------------------------------------------- /internal/tenancy/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tenancy/manager.go -------------------------------------------------------------------------------- /internal/tenancy/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tenancy/package_test.go -------------------------------------------------------------------------------- /internal/testutils/leakcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/testutils/leakcheck.go -------------------------------------------------------------------------------- /internal/testutils/leakcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/testutils/leakcheck_test.go -------------------------------------------------------------------------------- /internal/testutils/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/testutils/logger.go -------------------------------------------------------------------------------- /internal/testutils/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/testutils/logger_test.go -------------------------------------------------------------------------------- /internal/tools/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tools/empty.go -------------------------------------------------------------------------------- /internal/tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tools/go.mod -------------------------------------------------------------------------------- /internal/tools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tools/go.sum -------------------------------------------------------------------------------- /internal/tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tools/tools.go -------------------------------------------------------------------------------- /internal/tracegen/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tracegen/config.go -------------------------------------------------------------------------------- /internal/tracegen/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tracegen/config_test.go -------------------------------------------------------------------------------- /internal/tracegen/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tracegen/package_test.go -------------------------------------------------------------------------------- /internal/tracegen/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tracegen/worker.go -------------------------------------------------------------------------------- /internal/tracegen/worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/tracegen/worker_test.go -------------------------------------------------------------------------------- /internal/uimodel/converter/v1/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/uimodel/converter/v1/json/doc.go -------------------------------------------------------------------------------- /internal/uimodel/converter/v1/json/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/uimodel/converter/v1/json/sampling.go -------------------------------------------------------------------------------- /internal/uimodel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/uimodel/doc.go -------------------------------------------------------------------------------- /internal/uimodel/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/uimodel/empty_test.go -------------------------------------------------------------------------------- /internal/uimodel/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/uimodel/model.go -------------------------------------------------------------------------------- /internal/version/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/version/build.go -------------------------------------------------------------------------------- /internal/version/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/version/build_test.go -------------------------------------------------------------------------------- /internal/version/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/version/command.go -------------------------------------------------------------------------------- /internal/version/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/version/command_test.go -------------------------------------------------------------------------------- /internal/version/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/version/handler.go -------------------------------------------------------------------------------- /internal/version/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/version/handler_test.go -------------------------------------------------------------------------------- /internal/version/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/internal/version/package_test.go -------------------------------------------------------------------------------- /monitoring/jaeger-mixin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/monitoring/jaeger-mixin/README.md -------------------------------------------------------------------------------- /monitoring/jaeger-mixin/alerts.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/monitoring/jaeger-mixin/alerts.libsonnet -------------------------------------------------------------------------------- /monitoring/jaeger-mixin/dashboards.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/monitoring/jaeger-mixin/dashboards.libsonnet -------------------------------------------------------------------------------- /monitoring/jaeger-mixin/jsonnetfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/monitoring/jaeger-mixin/jsonnetfile.json -------------------------------------------------------------------------------- /monitoring/jaeger-mixin/mixin.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/monitoring/jaeger-mixin/mixin.libsonnet -------------------------------------------------------------------------------- /monitoring/jaeger-mixin/prometheus_alerts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/monitoring/jaeger-mixin/prometheus_alerts.yml -------------------------------------------------------------------------------- /monitoring/jaeger-mixin/prometheus_alerts_v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/monitoring/jaeger-mixin/prometheus_alerts_v2.yml -------------------------------------------------------------------------------- /ports/ports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/ports/ports.go -------------------------------------------------------------------------------- /ports/ports_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/ports/ports_test.go -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/build/build-all-in-one-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/build-all-in-one-image.sh -------------------------------------------------------------------------------- /scripts/build/build-crossdock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/build-crossdock.sh -------------------------------------------------------------------------------- /scripts/build/build-hotrod-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/build-hotrod-image.sh -------------------------------------------------------------------------------- /scripts/build/build-upload-a-docker-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/build-upload-a-docker-image.sh -------------------------------------------------------------------------------- /scripts/build/build-upload-docker-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/build-upload-docker-images.sh -------------------------------------------------------------------------------- /scripts/build/clean-binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/clean-binaries.sh -------------------------------------------------------------------------------- /scripts/build/docker/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/docker/base/Dockerfile -------------------------------------------------------------------------------- /scripts/build/docker/debug/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/docker/debug/Dockerfile -------------------------------------------------------------------------------- /scripts/build/docker/debug/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/docker/debug/go.mod -------------------------------------------------------------------------------- /scripts/build/docker/debug/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/docker/debug/go.sum -------------------------------------------------------------------------------- /scripts/build/docker/debug/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/docker/debug/tools.go -------------------------------------------------------------------------------- /scripts/build/package-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/package-deploy.sh -------------------------------------------------------------------------------- /scripts/build/rebuild-ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/rebuild-ui.sh -------------------------------------------------------------------------------- /scripts/build/upload-docker-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/build/upload-docker-readme.sh -------------------------------------------------------------------------------- /scripts/e2e/cassandra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/e2e/cassandra.sh -------------------------------------------------------------------------------- /scripts/e2e/clickhouse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/e2e/clickhouse.sh -------------------------------------------------------------------------------- /scripts/e2e/compare_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/e2e/compare_metrics.py -------------------------------------------------------------------------------- /scripts/e2e/elasticsearch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/e2e/elasticsearch.sh -------------------------------------------------------------------------------- /scripts/e2e/kafka.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/e2e/kafka.sh -------------------------------------------------------------------------------- /scripts/e2e/metrics_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/e2e/metrics_summary.py -------------------------------------------------------------------------------- /scripts/e2e/metrics_summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/e2e/metrics_summary.sh -------------------------------------------------------------------------------- /scripts/e2e/spm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/e2e/spm.sh -------------------------------------------------------------------------------- /scripts/lint/check-go-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/lint/check-go-version.sh -------------------------------------------------------------------------------- /scripts/lint/check-goleak-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/lint/check-goleak-files.sh -------------------------------------------------------------------------------- /scripts/lint/check-jaeger-idl-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/lint/check-jaeger-idl-version.sh -------------------------------------------------------------------------------- /scripts/lint/check-semconv-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/lint/check-semconv-version.sh -------------------------------------------------------------------------------- /scripts/lint/check-test-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/lint/check-test-files.sh -------------------------------------------------------------------------------- /scripts/lint/dco_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/lint/dco_check.py -------------------------------------------------------------------------------- /scripts/lint/import-order-cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/lint/import-order-cleanup.py -------------------------------------------------------------------------------- /scripts/lint/replace_license_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/lint/replace_license_headers.py -------------------------------------------------------------------------------- /scripts/lint/update-semconv-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/lint/update-semconv-version.sh -------------------------------------------------------------------------------- /scripts/lint/updateLicense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/lint/updateLicense.py -------------------------------------------------------------------------------- /scripts/makefiles/BuildBinaries.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/makefiles/BuildBinaries.mk -------------------------------------------------------------------------------- /scripts/makefiles/BuildInfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/makefiles/BuildInfo.mk -------------------------------------------------------------------------------- /scripts/makefiles/Crossdock.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/makefiles/Crossdock.mk -------------------------------------------------------------------------------- /scripts/makefiles/Docker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/makefiles/Docker.mk -------------------------------------------------------------------------------- /scripts/makefiles/IntegrationTests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/makefiles/IntegrationTests.mk -------------------------------------------------------------------------------- /scripts/makefiles/Protobuf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/makefiles/Protobuf.mk -------------------------------------------------------------------------------- /scripts/makefiles/Tools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/makefiles/Tools.mk -------------------------------------------------------------------------------- /scripts/makefiles/Windows.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/makefiles/Windows.mk -------------------------------------------------------------------------------- /scripts/release/draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/release/draft.py -------------------------------------------------------------------------------- /scripts/release/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/release/formatter.py -------------------------------------------------------------------------------- /scripts/release/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/release/notes.py -------------------------------------------------------------------------------- /scripts/release/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/release/start.sh -------------------------------------------------------------------------------- /scripts/utils/compare_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/utils/compare_metrics.py -------------------------------------------------------------------------------- /scripts/utils/compute-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/utils/compute-tags.sh -------------------------------------------------------------------------------- /scripts/utils/compute-tags.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/utils/compute-tags.test.sh -------------------------------------------------------------------------------- /scripts/utils/compute-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/utils/compute-version.sh -------------------------------------------------------------------------------- /scripts/utils/docker-login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/utils/docker-login.sh -------------------------------------------------------------------------------- /scripts/utils/generate-help-output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/utils/generate-help-output.sh -------------------------------------------------------------------------------- /scripts/utils/ids-to-base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/utils/ids-to-base64.py -------------------------------------------------------------------------------- /scripts/utils/metrics-md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/utils/metrics-md.py -------------------------------------------------------------------------------- /scripts/utils/platforms-to-gh-matrix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/utils/platforms-to-gh-matrix.sh -------------------------------------------------------------------------------- /scripts/utils/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegertracing/jaeger/HEAD/scripts/utils/run-tests.sh --------------------------------------------------------------------------------