From be14369fad13889c6b65d2867d07b47a3a99aecb Mon Sep 17 00:00:00 2001
From: David Tesar <david.tesar@microsoft.com>
Date: Fri, 21 Sep 2018 14:22:46 -0700
Subject: [PATCH] Add Prometheus dashboard instructions

---
 README.md | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/README.md b/README.md
index b682de5b..58c1f91b 100644
--- a/README.md
+++ b/README.md
@@ -74,6 +74,18 @@ $ kubectl create -f manifests/ 2>/dev/null || true  # This command sometimes may
 $ kubectl delete -f manifests/ || true
 ```
 
+### Access the dashboards
+
+Prometheus, Grafana, and Alertmanager dashboards can be accessed after running the quickstart via the following commands:
+
+Prometheus
+
+```shell
+export PROMETHEUS=$(kubectl get pods --namespace monitoring -l "app=prometheus" -o jsonpath="{.items[0].metadata.name}")
+kubectl --namespace monitoring port-forward $PROMETHEUS 3000:3000
+```
+Then access via [http://localhost:3000](http://localhost:3000)
+
 ## Customizing Kube-Prometheus
 
 This section:
-- 
GitLab