Skip to content

Commit

Permalink
Updates docs with instructions for viewing the grafana dashboards (#222)
Browse files Browse the repository at this point in the history
* Updates docs with  instructions for viewing the grafana dashboards

Signed-off-by: Elena Kolevska <[email protected]>

* adds timeline of changes in the longhaul-release deployments

Signed-off-by: Elena Kolevska <[email protected]>

* Update README.md

---------

Signed-off-by: Elena Kolevska <[email protected]>
  • Loading branch information
elena-kolevska authored May 14, 2024
1 parent 1e86f13 commit bb7e5e1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,24 @@ for app in "feed-generator-app" "hashtag-actor-app" "hashtag-counter-app" "messa
done
```

### Accessing the Grafana dashboards
There's currently a managed Grafana in the resource group in Azure, but it is not set up. The actual Grafana dashboards are running inside of the AKS cluster. You can access them by port-forwarding the Grafana service to your local machine:

For longhaul release:
```bash
az aks get-credentials --name aks-longhaul-release --resource-group aks-longhaul-release
kubectl port-forward svc/grafana 8080:80 --namespace dapr-monitoring
```

For longhaul weekly:
```bash
az aks get-credentials --name aks-longhaul-weekly --resource-group aks-longhaul-weekly
kubectl port-forward svc/grafana 8081:80 --namespace dapr-monitoring
```

The username for the Grafana dashboard is "admin" and you can get the password by running:
```bash
kubectl get secret --namespace dapr-monitoring grafana -o jsonpath={.data.admin-password} | base64 --decode
```

## On Azure Container Apps (ACA)
6 changes: 6 additions & 0 deletions release_deploy_timeline.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# deploy-longhaul-release timeline

- 2024-04-27 - Reverted the deployment of the wrong helm charts
- 2024-04-26 - Mistakenly deployed the wrong helm charts
- 2024-04-15 - Updated apps version to use sdk version 1.13.0 (from 1.13.0-rc3)
- 2024-04-09 - Updated dapr version to 1.13.2 (from 1.13.0-rc6)

0 comments on commit bb7e5e1

Please sign in to comment.