Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated agent tutorial with important meme and beta tag. #4834

Merged
merged 2 commits into from
Nov 16, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion tutorials/katacoda/thanos/4-receiver-agent/courseBase.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

docker pull quay.io/bwplotka/prometheus:agent1
docker pull quay.io/prometheus/prometheus:main # Change to beta.
docker pull quay.io/thanos/thanos:v0.21.0

mkdir /root/editor
5 changes: 5 additions & 0 deletions tutorials/katacoda/thanos/4-receiver-agent/finish.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Summary

Congratulations! 🎉🎉🎉

`Batmobile` is now well-monitored! Batman says thank you!

![batman](./assets/batmobile.jpg)

You completed this Prometheus Agent tutorial. Let's summarize what we learned:

* Thanos Receive is a component that implements the `Prometheus Remote Write` protocol.
Expand Down
12 changes: 6 additions & 6 deletions tutorials/katacoda/thanos/4-receiver-agent/step2.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ docker run -d --net=host --rm \
-v /root/prom-batmobile-data:/prometheus \
-u root \
--name prom-agent-batmobile \
quay.io/bwplotka/prometheus:agent1 \
--agent \
quay.io/prometheus/prometheus:main \
--enable-feature=agent \
--config.file=/etc/prometheus/prometheus.yaml \
--storage.tsdb.path=/prometheus \
--storage.agent.path=/prometheus \
--web.listen-address=:9090
```{{execute}}

Expand Down Expand Up @@ -90,10 +90,10 @@ docker run -d --net=host --rm \
-v /root/prom-batcopter-data:/prometheus \
-u root \
--name prom-agent-batcopter \
quay.io/bwplotka/prometheus:agent1 \
--agent \
quay.io/prometheus/prometheus:main \
--enable-feature=agent \
--config.file=/etc/prometheus/prometheus.yaml \
--storage.tsdb.path=/prometheus \
--storage.agent.path=/prometheus \
--web.listen-address=:9091
```{{execute}}

Expand Down