Reveal output
-
-
-```bash
---8<-- "src/gnmic-prometheus/gnmic.yml"
-```
-
-We can see that we're going to use `gnmic` to subscribe to several OpenConfig and EOS native paths and write the data into
-Prometheus either in their raw states or modifying them with [processors](https://gnmic.openconfig.net/user_guide/event_processors/intro/), which
-are needed due to Prometheus only accepting numerical values.
-
-
-
-
-### Running the lab
-
-```bash
-cd src/gnmic-prometheus/
-containerlab -t topology.yaml deploy
-```
-
-or
-
-`containerlab -t topology.yaml deploy --reconfigure` on subsequent runs when modifications are made
-
-Our environment should look as the following:
-
-```
-+----+--------------------+--------------+-------------------------------------------------------------+-------+---------+--------------------+------------------------+
-| # | Name | Container ID | Image | Kind | State | IPv4 Address | IPv6 Address |
-+----+--------------------+--------------+-------------------------------------------------------------+-------+---------+--------------------+------------------------+
-| 1 | clab-om-avd | 2b71ef8fe868 | ghcr.io/aristanetworks/avd/universal:python3.12-avd-v4.10.2 | linux | running | 172.144.100.230/24 | 2001:172:144:100::7/80 |
-| 2 | clab-om-client1 | 5d6f06a162d3 | alpine-host | linux | running | 172.144.100.8/24 | 2001:172:144:100::8/80 |
-| 3 | clab-om-client2 | 95642c587a14 | alpine-host | linux | running | 172.144.100.9/24 | 2001:172:144:100::9/80 |
-| 4 | clab-om-client3 | d4fd040c251b | alpine-host | linux | running | 172.144.100.10/24 | 2001:172:144:100::a/80 |
-| 5 | clab-om-client4 | f98b0a992d42 | alpine-host | linux | running | 172.144.100.11/24 | 2001:172:144:100::c/80 |
-| 6 | clab-om-gnmic | 7676f355ade9 | ghcr.io/openconfig/gnmic:0.38.2 | linux | running | 172.144.100.200/24 | 2001:172:144:100::2/80 |
-| 7 | clab-om-grafana | 0fa1af12aac9 | grafana/grafana:11.2.0 | linux | running | 172.144.100.220/24 | 2001:172:144:100::d/80 |
-| 8 | clab-om-om-pe11 | bd4888d56a1a | ceosimage:4.32.2F | ceos | running | 172.144.100.4/24 | 2001:172:144:100::4/80 |
-| 9 | clab-om-om-pe12 | 51fe187893c7 | ceosimage:4.32.2F | ceos | running | 172.144.100.5/24 | 2001:172:144:100::b/80 |
-| 10 | clab-om-om-pe21 | b9ed639155cb | ceosimage:4.32.2F | ceos | running | 172.144.100.6/24 | 2001:172:144:100::3/80 |
-| 11 | clab-om-om-pe22 | 2b0061a2aec0 | ceosimage:4.32.2F | ceos | running | 172.144.100.7/24 | 2001:172:144:100::f/80 |
-| 12 | clab-om-om-spine1 | 582e33ddbdb6 | ceosimage:4.32.2F | ceos | running | 172.144.100.2/24 | 2001:172:144:100::5/80 |
-| 13 | clab-om-om-spine2 | a5f28f53582e | ceosimage:4.32.2F | ceos | running | 172.144.100.3/24 | 2001:172:144:100::6/80 |
-| 14 | clab-om-prometheus | 04cdbdd65795 | prom/prometheus:v2.54.1 | linux | running | 172.144.100.210/24 | 2001:172:144:100::e/80 |
-+----+--------------------+--------------+-------------------------------------------------------------+-------+---------+--------------------+------------------------+
-```
-
-Now we're ready to access Grafana at http://myserver:3001 (arista/arista)
-
-To add additional configurations to the switches, such as configuring EVPN we can use the `clab-om-avd` container and run the ansible playbook inside:
-
-```
-docker exec -it clab-om-avd zsh
-cd project
-ansible-playbook playbooks/fabric-deploy-config.yaml -i inventory.yaml
-```
-
-> NOTE You might need to create the avd user on the host if it doesn't exist, otherwise the container won't be able to create files.
-
-```
-useradd avd
-usermod -aG wheel avd
-chown -R avd:avd ./
-```