diff --git a/opsec/anonymous_server_monitoring/index.html b/opsec/anonymous_server_monitoring/index.html
index da16a9f..2da909e 100644
--- a/opsec/anonymous_server_monitoring/index.html
+++ b/opsec/anonymous_server_monitoring/index.html
@@ -200,6 +200,72 @@
First, let's have a look at the network topology we'll be building:
+
+
+AutomapHostsSuffixes .onion,.exit
+DataDirectory /var/lib/tor
+SOCKSPort 127.0.0.1:9050 IsolateDestAddr
+HiddenServiceDir /var/lib/tor/onion/grafana
+HiddenServicePort 80 127.0.0.1:2700
+
+
+And that's all you'll need! one hiddn service for grafana.
+global:
+ scrape_interval: 10s
+scrape_configs:
+- job_name: nodes
+ proxy_url: socks5h://localhost:9050
+ static_configs:
+ - labels: {}
+ targets:
+ - [fill later with our client .onion address]:9002
+
+
+
+AutomapHostsSuffixes .onion,.exit
+DataDirectory /var/lib/tor
+HiddenServiceDir /var/lib/tor/onion/prometheus
+HiddenServicePort 9002 127.0.0.1:9002
+
+
+ Next, you need to install the prometheus-node-exporter. Depending on your distribution of choice it's very likely it's in your package manager under that name.
+
+prometheus_node_exporter --collector.systemd --web.listen-address 127.0.0.1:9002 --collector.ethtool --collector.softirqs --collector.tcpstat --collector.wifi
+
+
+