Skip to content

Commit fa7847e

Browse files
[grafana] Add Exemplars Dashboard (open-telemetry#1836)
* [grafana] Add Exemplars Dashboard * changelog * use heatmap and 95th pct chart * decrease user load to 5 * increase Jaeger capacity * use heatmap for histogram * linter fix * Add extra row --------- Co-authored-by: Pierre Tessier <[email protected]>
1 parent 9b7cfad commit fa7847e

File tree

4 files changed

+440
-3
lines changed

4 files changed

+440
-3
lines changed

.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ IMAGE_PROVIDER_DOCKERFILE=./src/imageprovider/Dockerfile
9494

9595
# Load Generator
9696
LOCUST_WEB_PORT=8089
97-
LOCUST_USERS=10
97+
LOCUST_USERS=5
9898
LOCUST_HOST=http://${FRONTEND_PROXY_ADDR}
9999
LOCUST_WEB_HOST=loadgenerator
100100
LOCUST_AUTOSTART=true

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ the release.
3232
([#1827](https://github.com/open-telemetry/opentelemetry-demo/pull/1827))
3333
* [cartservice] - Add Exemplars to Cart Service
3434
([#1830](https://github.com/open-telemetry/opentelemetry-demo/pull/1830))
35+
* [grafana] Add Exemplars Dashboard
36+
([#1836](https://github.com/open-telemetry/opentelemetry-demo/pull/1836))
3537
* [otel-collector] rename otelcol to otel-collector
3638
([#1841](https://github.com/open-telemetry/opentelemetry-demo/pull/1841))
3739

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -689,15 +689,15 @@ services:
689689
image: ${JAEGERTRACING_IMAGE}
690690
container_name: jaeger
691691
command:
692-
- "--memory.max-traces=5000"
692+
- "--memory.max-traces=25000"
693693
- "--query.base-path=/jaeger/ui"
694694
- "--prometheus.server-url=http://${PROMETHEUS_ADDR}"
695695
- "--prometheus.query.normalize-calls=true"
696696
- "--prometheus.query.normalize-duration=true"
697697
deploy:
698698
resources:
699699
limits:
700-
memory: 400M
700+
memory: 1200M
701701
restart: unless-stopped
702702
ports:
703703
- "${JAEGER_SERVICE_PORT}" # Jaeger UI

0 commit comments

Comments
 (0)