Feedback
This commit is contained in:
parent
39c56f4146
commit
ed8dce7036
4 changed files with 14 additions and 3 deletions
Binary file not shown.
Before Width: | Height: | Size: 15 KiB |
Binary file not shown.
Before Width: | Height: | Size: 51 KiB |
|
@ -28,6 +28,6 @@ Prometheus server up and running. You have two options here:
|
|||
|
||||
In order to isolate and only display relevant CPU and Memory metrics for a given environment, GitLab needs a method to detect which containers it is running. Because these metrics are tracked at the container level, traditional Kubernetes labels are not available.
|
||||
|
||||
Instead, the [Deployment](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/) or [DaemonSet](https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/) name should begin with the name of the [environment](../../../../ci/environments.md). It can be followed by a `-` and additional content if desired.
|
||||
Instead, the [Deployment](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/) or [DaemonSet](https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/) name should begin with the name of the [environment](../../../../ci/environments.md). It can be followed by a `-` and additional content if desired. For example, a deployment name of `review-homepage-5620p5` would match the `review/homepage` environment.
|
||||
|
||||
If you are using [GitLab Auto-Deploy](../../../../ci/autodeploy/index.md) and one of the two [provided Kubernetes monitoring solutions](../prometheus.md#getting-started-with-prometheus-monitoring), the naming will be correctly set automatically.
|
||||
|
|
|
@ -18,13 +18,24 @@ GitLab has support for automatically detecting and monitoring the Kubernetes NGI
|
|||
|
||||
## Configuring NGINX ingress monitoring
|
||||
|
||||
If you have deployed NGINX Ingress using GitLab's [Kubernetes cluster integration](../../clusters/index.md#installing-applications), it will automatically be monitored by Prometheus.
|
||||
If you have deployed NGINX Ingress using GitLab's [Kubernetes cluster integration](../../clusters/index.md#installing-applications), it will [automatically be monitored](#about-managed-nginx-ingress-deployments) by Prometheus.
|
||||
|
||||
For other deployments, there is some configuration required depending on your installation:
|
||||
For other deployments, there is [some configuration](#manually-setting-up-nginx-ingress-for-prometheus-monitoring) required depending on your installation:
|
||||
* NGINX Ingress should be version 0.9.0 or above, with metrics enabled
|
||||
* NGINX Ingress should be annotated for Prometheus monitoring
|
||||
* Prometheus should be configured to monitor annotated pods
|
||||
|
||||
### About managed NGINX Ingress deployments
|
||||
|
||||
NGINX Ingress is deployed into the `gitlab-managed-apps` namespace, using the [official Helm chart](https://github.com/kubernetes/charts/tree/master/stable/nginx-ingress). NGINX Ingress will be [externally reachable via the Load Balancer's IP](https://docs.gitlab.com/ce/user/project/clusters/index.html#getting-the-external-ip-address).
|
||||
|
||||
NGINX is configured for Prometheus monitoring, by setting:
|
||||
* `enable-vts-status: "true"`, to export Prometheus metrics
|
||||
* `prometheus.io/scrape: "true"`, to enable automatic discovery
|
||||
* `prometheus.io/port: "10254"`, to specify the metrics port
|
||||
|
||||
When used in conjunction with the GitLab deployed Prometheus service, response metrics will be automatically collected.
|
||||
|
||||
### Manually setting up NGINX Ingress for Prometheus monitoring
|
||||
|
||||
Version 0.9.0 and above of [NGINX ingress](https://github.com/kubernetes/ingress/tree/master/controllers/nginx) have built-in support for exporting Prometheus metrics. To enable, a ConfigMap setting must be passed: `enable-vts-status: "true"`. Once enabled, a Prometheus metrics endpoint will start running on port 10254.
|
||||
|
|
Loading…
Reference in a new issue