Skip to content

Commit

Permalink
docs: adds additional info for monitoring documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaskuechler committed Oct 16, 2024
1 parent a8007c0 commit 34797e5
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions components/keystone/aio-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ bootstrap:
# give 'argoworkflow' 'admin' over the 'baremetal' project
openstack role add --user-domain infra --project-domain infra --user argoworkflow --project baremetal admin
# create 'monitoring' user for monitoring usage
openstack user create --or-show --domain infra --password monitoring_demo monitoring
# give 'monitoring' the 'admin' over the 'baremetal' project
openstack role add --user-domain infra --project-domain infra --user monitoring --project baremetal admin
# this is too early because ironic won't exist
openstack role add --project service --user ironic --user-domain service service
Expand Down
22 changes: 22 additions & 0 deletions docs/user-guide/monitoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,25 @@ UnderStack uses the `kube-prometheus-stack` which is a prometheus + grafana moni
<https://github.com/prometheus-operator/kube-prometheus>

It uses the namespace: `monitoring`

## Accessing Prometheus

Prometheus is not exposed publicly so a port-forward needs to be created
and then you'll be able to access the Prometheus UI.

``` bash
kubectl -n monitoring port-forward service/prometheus-operated 9090:9090
```

Once the port-forward is running, you can browse to <http://localhost:9090> to access Prometheus UI.

## Accessing AlertManager

AlertManager is not exposed publicly so a port-forward needs to be created
and then you'll be able to access the AlertManager UI.

``` bash
kubectl -n monitoring port-forward service/alertmanager-operated 9093:9093
```

Once the port-forward is running, you can browse to <http://localhost:9093> to access AlertManager UI.

0 comments on commit 34797e5

Please sign in to comment.