Commit f82bcca2 authored by Fabian Reinartz's avatar Fabian Reinartz

Adjust to client_golang changes

parent 3f552f82
...@@ -152,19 +152,20 @@ to scrape. ...@@ -152,19 +152,20 @@ to scrape.
The Go client library includes an example which exports fictional RPC latencies The Go client library includes an example which exports fictional RPC latencies
for three services with different latency distributions. for three services with different latency distributions.
Ensure you have the [Go compiler installed](https://golang.org/doc/install).
Download the Go client library for Prometheus and run three of these example Download the Go client library for Prometheus and run three of these example
processes: processes:
```bash ```bash
# Fetch the client library code and compile example. # Fetch the client library code and compile example.
git clone https://github.com/prometheus/client_golang.git git clone https://github.com/prometheus/client_golang.git
cd client_golang cd client_golang/examples/random
make example_random go build
# Start 3 example targets in separate terminals: # Start 3 example targets in separate terminals:
./example_random -listen-address=:8080 ./random -listen-address=:8080
./example_random -listen-address=:8081 ./random -listen-address=:8081
./example_random -listen-address=:8082 ./random -listen-address=:8082
``` ```
You should now have example targets listening on http://localhost:8080/metrics, You should now have example targets listening on http://localhost:8080/metrics,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment