Jaeger Query : Source code #5944
Answered
by
dosubot
bot
amthoughts
asked this question in
Q&A
Answered
by
dosubot
bot
Return to top
-
I am unable to locate source code for Jaeger Query component, please help with that. Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
dosubot[bot]
Sep 6, 2024
Replies: 1 comment
-
Hey @amthoughts! 👋 I'm here to help you with any bugs, questions, or contributions you have for Jaeger Query while you wait for a human maintainer. Let's squash those bugs together! You can find the source code for the Jaeger Query component in the file package main
import (
"context"
"fmt"
"log"
"os"
"github.com/spf13/cobra"
"github.com/spf13/viper"
_ "go.uber.org/automaxprocs"
"go.uber.org/zap"
"github.com/jaegertracing/jaeger/cmd/internal/docs"
"github.com/jaegertracing/jaeger/cmd/internal/env"
"github.com/jaegertracing/jaeger/cmd/internal/flags"
"github.com/jaegertracing/jaeger/cmd/internal/printconfig"
"github.com/jaegertracing/jaeger/cmd/internal/status"
"github.com/jaegertracing/jaeger/cmd/query/app"
"github.com/jaegertracing/jaeger/cmd/query/app/querysvc"
"github.com/jaegertracing/jaeger/pkg/bearertoken"
"github.com/jaegertracing/jaeger/pkg/config"
"github.com/jaegertracing/jaeger/pkg/jtracer"
"github.com/jaegertracing/jaeger/pkg/metrics"
"github.com/jaegertracing/jaeger/pkg/telemetery"
"github.com/jaegertracing/jaeger/pkg/tenancy"
"github.com/jaegertracing/jaeger/pkg/version"
metricsPlugin "github.com/jaegertracing/jaeger/plugin/metrics"
"github.com/jaegertracing/jaeger/plugin/storage"
"github.com/jaegertracing/jaeger/ports"
metricsstoreMetrics "github.com/jaegertracing/jaeger/storage/metricsstore/metrics"
spanstoreMetrics "github.com/jaegertracing/jaeger/storage/spanstore/metrics"
) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
yurishkuro
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @amthoughts! 👋 I'm here to help you with any bugs, questions, or contributions you have for Jaeger Query while you wait for a human maintainer. Let's squash those bugs together!
You can find the source code for the Jaeger Query component in the file
cmd/query/main.go
in the Jaeger repository. Here is a snippet from that file: