metrics/

directory
v0.17.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 13, 2020 License: Apache-2.0

README

Knative with GCP Metrics

All commands assume root of repo.

Prometheus Collection

  1. Enable Knatives install of Prometheus to scrape Knative with GCP, run the following:

    kubectl get configmap -n  knative-monitoring prometheus-scrape-config -oyaml > tmp.prometheus-scrape-config.yaml
    sed -e 's/^/    /' config/monitoring/metrics/prometheus/prometheus-scrape-kn-gcp.yaml > tmp.prometheus-scrape-kn-gcp.yaml
    sed -e '/    scrape_configs:/r tmp.prometheus-scrape-kn-gcp.yaml' tmp.prometheus-scrape-config.yaml \
      | kubectl apply -f -
    
  2. To verify, run the following to show the diff between what the resource was original and is now (note: k8s will update metadata.annotations):

    kubectl get configmap -n  knative-monitoring prometheus-scrape-config -oyaml \
      | diff - tmp.prometheus-scrape-config.yaml
    

    Or, to just see our changes (without metadata.annotations) run:

    CHANGED_LINES=$(echo $(cat  tmp.prometheus-scrape-kn-gcp.yaml | wc -l) + 1 | bc)
    kubectl get configmap -n  knative-monitoring prometheus-scrape-config -oyaml \
      | diff - tmp.prometheus-scrape-config.yaml \
      | head -n $CHANGED_LINES
    
  3. Restart Prometheus

    To pick up this new config, the pods that run Prometheus need to be restarted, run:

    kubectl delete pods -n knative-monitoring prometheus-system-0 prometheus-system-1
    

    And they will come back:

    $ kubectl get pods -n knative-monitoring
    NAME                                 READY   STATUS    RESTARTS   AGE
    grafana-d7478555c-8qgf7              1/1     Running   0          22h
    kube-state-metrics-765d876c6-z7dfn   4/4     Running   0          22h
    node-exporter-5m9cz                  2/2     Running   0          22h
    node-exporter-z59gz                  2/2     Running   0          22h
    prometheus-system-0                  1/1     Running   0          32s
    prometheus-system-1                  1/1     Running   0          36s
    
  4. To remove the temp files, run:

    rm tmp.prometheus-scrape-kn-gcp.yaml
    rm tmp.prometheus-scrape-config.yaml
    
Remove Scrape Config

Remove the text related to Cloud Run Events from prometheus-scrape-config,

kubectl edit configmap -n  knative-monitoring prometheus-scrape-config

And then restart Prometheus.

Grafana Dashboard

To enable the Knative with GCP dashboard in Grafana, run the following:

kubectl patch  configmap grafana-dashboard-definition-knative -n knative-monitoring \
  --patch "$(cat config/monitoring/metrics/grafana/100-grafana-dash-kn-gcp.yaml)"

Accessing Prometheus and Grafana

Prometheus port forwarding:
kubectl port-forward -n knative-monitoring \
  $(kubectl get pods -n knative-monitoring --selector=app=prometheus --output=jsonpath="{.items[0].metadata.name}") \
  9090

Then, access the Prometheus Dashboard

Grafana port forwarding:
kubectl port-forward --namespace knative-monitoring \
  $(kubectl get pods --namespace knative-monitoring --selector=app=grafana --output=jsonpath="{.items..metadata.name}") \
  3000

Then, access the Grafana Dashboard

StackDriver Collection

  1. Install Knative Stackdriver components by running the following command from the root directory of knative/serving repository:

          kubectl apply --recursive --filename config/monitoring/100-namespace.yaml \
              --filename config/monitoring/metrics/stackdriver
    
  2. Set up the Pub/Sub Enabled Service Account with StackDriver Monitoring permissions.

  3. Run the following command to setup StackDriver as the metrics backend:

       kubectl edit cm -n cloud-run-events config-observability
    

Add metrics.backend-destination: stackdriver, metrics.allow-stackdriver-custom-metrics: "true" and metrics.stackdriver-custom-metrics-subdomain: "cloud.google.com/events" to the data field.
You can find detailed information in data._example field in the ConfigMap you are editing.

  1. Open the StackDriver UI and see your resource metrics in the StackDriver Metrics Explorer. You should be able to see metrics with the prefix custom.googleapis.com/cloud.google.com/events.

Directories

Path Synopsis
Package core is a placeholder that allows us to pull in config files via go mod vendor.
Package core is a placeholder that allows us to pull in config files via go mod vendor.
Package core is a placeholder that allows us to pull in config files via go mod vendor.
Package core is a placeholder that allows us to pull in config files via go mod vendor.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL