Created
January 16, 2020 02:49
-
-
Save rubenvp8510/c36a81e65efc9a61b75aeb7c46e1cce3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# setup an elasticsearch with `make es` | |
# setup a kafka platform with `make kafka` See https://strimzi.io for more information | |
apiVersion: jaegertracing.io/v1 | |
kind: Jaeger | |
metadata: | |
name: simple-streaming | |
spec: | |
strategy: streaming | |
collector: | |
image: jaegertracing/jaeger-collector:1.14.0 | |
options: | |
kafka: | |
producer: | |
topic: jaeger-spans | |
brokers: my-cluster-kafka-brokers.kafka:9092 | |
ingester: | |
replicas: 1 | |
image: jaegertracing/jaeger-ingester:1.14.0 | |
options: | |
kafka: | |
consumer: | |
topic: jaeger-spans | |
brokers: my-cluster-kafka-brokers.kafka:9092 | |
ingester: | |
deadlockInterval: 0 | |
storage: | |
type: elasticsearch | |
options: | |
es: | |
# Note: This assumes elasticsearch is running in the "default" namespace. | |
server-urls: http://elasticsearch.default.svc:9200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment