Configure Prometheus
Prometheus Support
This page shows how you configure LWS to use prometheus metrics.
Before you begin
Make sure you the following conditions are set:
- A Kubernetes cluster is running.
 - The kubectl command-line tool has communication with your cluster.
 - Prometheus is installed
 - Cert Manager can be optionally installed
 
LWS supports either Kustomize or installation via a Helm chart.
Kustomize Installation
- Enable 
prometheusinconfig/default/kustomization.yamland uncomment all sections with ‘PROMETHEUS’. 
Kustomize Prometheus with certificates
If you want to enable TLS verification for the metrics endpoint, follow the directions below.
- Set 
internalCertManagement.enabletofalsein the LWS configuration. - Comment out the 
internalcertfolder inconfig/default/kustomization.yaml. - Enable 
cert-managerinconfig/default/kustomization.yamland uncomment all sections with ‘CERTMANAGER’. - To enable secure metrics with TLS protection, uncomment all sections with ‘PROMETHEUS-WITH-CERTS’.
 
Helm Installation
Prometheus installation
LWS can also supports helm deployment for Prometheus.
- Set 
enablePrometheusin your values.yaml file to true. 
Helm Prometheus with certificates
If you want to secure the metrics endpoints with external certificates:
- Set 
internalCertManagement.enabletofalsein the LWS configuration. - Set both 
enableCertManagerandenablePrometheusto true. - Provide values for the tlsConfig, see the example below:
 
An example for your tlsConfig in the helm chart could be as follows:
...
metrics:
  prometheusNamespace: monitoring
# tls configs for serviceMonitor
  serviceMonitor:
    tlsConfig:
      serverName: lws-controller-manager-metrics-service.lws-system.svc
      ca:
        secret:
          name: lws-metrics-server-cert
          key: ca.crt
      cert:
        secret:
          name: lws-metrics-server-cert
          key: tls.crt
      keySecret:
        name: lws-metrics-server-cert
        key: tls.key
The secrets must reference the cert manager generated secrets.
Last modified April 29, 2025: Add documentation for the installation of cert-manager, monitoring (#516) (ec5823a)