jaeger icon indicating copy to clipboard operation
jaeger copied to clipboard

[Bug]: Jaeger query not picking up from Elasticsearch

Open devopsING2 opened this issue 1 year ago • 0 comments

What happened?

I also have the same problem, with Operator version 1.49.0. I have the traces which arrive on collector but which are not displayed on the UI interface, there is no error in the logs, whether on the operator, collector, or elasticsearch.

And I would like to point out at the same time that the latest version mentioned in the documentation which is 1.50.0 does not even exist, when I try to access the url https://github.com/jaegertracing/jaeger -operator/releases/download/v1.50.0/jaeger-operator.yaml, this was not found.

Steps to reproduce

  1. jaeger operator deployment v1.49.0
  2. deploy an elasticsearch instance v7.5.2
  3. deploy from a jaeger instance

Expected behavior

I expect the ui interface to show the traces stored in elasticsearch collected by collector

Relevant log output

No response

Screenshot

No response

Additional context

No response

Jaeger backend version

v1.49.0

SDK

No response

Pipeline

No response

Stogage backend

Elasticsearch v7.5.2

Operating system

Linux

Deployment model

Kubernetes, operator jaeger

Deployment configs

k8s manifests
# Create the Jaeger instance
apiVersion: jaegertracing.io/v1
kind: Jaeger
metadata:
  name: jaeger
  namespace: observability
spec:
  strategy: production
  collector:
    maxReplicas: 20
    options:
      log-level: debug
      es:
        use-aliases: true
    secretName: jaeger-secret
  storage:
    type: elasticsearch
    options:
      es:
        create-index-templates: false
        server-urls: http://ec2elasticsearch:9200
        index-prefix: test
    secretName: jaeger-secret
  query:
    options:
      log-level: debug
      es:
        use-aliases: true
    secretName: jaeger-secret
  ingress:
    enabled: true
  ui:
    options: 
      log-level: debug
      dependencies:
        menuEnabled: true

devopsING2 avatar Oct 24 '23 06:10 devopsING2