How to configure Jaeger with elasticsearch?

前端 未结 5 760
孤街浪徒
孤街浪徒 2020-12-16 00:39

I have tried executing this docker command to setup Jaeger Agent and jaeger collector with elasticsearch.

sudo docker run \\
-p 5775:5775/udp \\
-p 6831:6831         


        
5条回答
  •  不思量自难忘°
    2020-12-16 01:14

    If Jaeger needs to be set up in Kubernetes cluster as a helm chart, one can use this: https://github.com/jaegertracing/helm-charts/tree/master/charts/jaeger It can delploy either Elasticsearch or Cassandara as a storage backend. Which is just a matter of right value being passed in to the chart:

    storage:
      type: elasticsearch
    

    This section shows the helm command as an example: https://github.com/jaegertracing/helm-charts/tree/master/charts/jaeger#installing-the-chart-using-a-new-elasticsearch-cluster

提交回复
热议问题