Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Metrics APIs provided by Kubernetes can be gotten by:


Code Block
~]$ kubectl api-versions

...



...

...



custom.metrics.k8s.io/v1beta1

...



...

...



metrics.k8s.io/v1beta1

...



...



cAdvisor automatically scrapes metrics from every active pod in the system regarding to CPU and memory usage. The state of core metrics can be requested by the followings:



Code Block
~]$ kubectl top

...

 node

NAME            CPU(cores)

...

   CPU%   MEMORY(bytes)

...

   MEMORY%

172.24.16.

...

104   1248m        62%    5710Mi                      74%

172.24.16.

...

105   1268m        63%    5423Mi                      71%

172.24.16.

...

107   1215m        60%    5191Mi                      68%

172.24.16.112   253m           6%     846Mi                        11%


With this command you can

172.24.16.112   253m           6%     846Mi                        11%

With this command you can get core metrics from nodes respectively to CPU and memory usage. The printout shows the names of nodes actually the IP addresses of nodes, the usage of CPUs in percentage and milli standard for 2 CPUs in the example furthermore memory usage in percentage and Mi (MiB) standard.

Code Block
~]$ kubectl top pod --namespace=kube-system | grep elasticsearch

...


NAME CPU(cores) MEMORY(bytes)

...


elasticsearch-data-0 71m 1106Mi

...


elasticsearch-data-1 65m 1114Mi

...


elasticsearch-data-2 75m 1104Mi

...


elasticsearch-master-0 4m 1068Mi

...


elasticsearch-master-1 7m 1076Mi

...


elasticsearch-master-2 3m 1075Mi

Console output shows pod names and their CPU and memory consumptions in the same format.

...

Basic example application in Python:


Code Block
languagepy
from prometheus_client import start_http_server, Histogram

...



import random

...



import time

...




function_exec = Histogram('function_exec_time',

...

                          'Time spent processing a function',

...



                          'Time spent processing a function',

                          ['func_name'])

...




def func():

...



    if (random.random() < 0.02):

...



        time.sleep(2)

...

        return



        return

time.sleep(0.2)

...




start_http_server(9100)

...



while True:

...



    start_time = time.time()

...



    func()

...



    function_exec.labels(func_name="func").observe(time.time() - start_time)



This application imports http_server and Histogram metrics from Prometheus client library and exposes metrics from the func() function. Prometheus can scrape these metrics from port 9100.



Code Block
~]$ kubectl

...

 get --raw "/apis/custom.metrics.k8s.io/v1beta1" | jq .

...

{

...



{

  "kind": "APIResourceList",

...



  "apiVersion": "v1",

...



  "groupVersion": "custom.metrics.k8s.io/v1beta1",

...



  "resources":

...

    {

...

 [

    {

      "name": "pods/go_memstats_heap_released_bytes",

...



      "singularName": "",

...



      "namespaced": true,

...



      "kind": "MetricValueList",

...



      "verbs":

...

 [

        "get"

...

      ]

    },

    {

...



      ]

    },

    {

      "name": "jobs.batch/http_requests",

...



      "singularName": "",

...



      "namespaced": true,

...



      "kind": "MetricValueList",

...



      "verbs":

...

 [

        "get"

...

      ]

    }

    ]



      ]

    }

    ]

}


The command result lists the custom metrics in the system, each metrics can be requested one by one for more details:


Code Block
kubectl get –raw "/apis/custom.metrics.k8s.io/v1beta1/namespaces/kube-system/pods/*/http_requests" | jq .

...

{

...



{

  "kind": "MetricValueList",

...



  "apiVersion": "custom.metrics.k8s.io/v1beta1",

...



  "metadata":

...

 {

    "selfLink": "/apis/custom.metrics.k8s.io/v1beta1/namespaces/kube-system/pods/%2A/http_requests"

...



  },

...



  "items":

...

    {

...

 [

    {

      "describedObject":

...

 {

        "kind": "Pod",

...



        "namespace": "kube-system",

...



        "name": "podinfo-bd494c88d-lmt2j",

...



        "apiVersion": "/v1

...

      },

...

"

      },

      "metricName": "http_requests",

...



      "timestamp": "2019-02-14T10:21:19Z",

...



      "value": "898m"

...

    },

    {

...



    },

    {

      "describedObject":

...

 {

        "kind": "Pod",

...



        "namespace": "kube-system",

...



        "name": "podinfo-bd494c88d-lxng7

...

",

        "apiVersion": "/v1"

...

      },

...



      },

      "metricName": "http_requests",

...



      "timestamp": "2019-02-14T10:21:19Z",

...



      "value": "898m"

...

    }

  ]

}



    }

  ]

}


~]$ curl http://$(kubectl get service podinfo --namespace=kube-system -o jsonpath='{ .spec.clusterIP }'):9898/metrics

...



...



http_request_duration_seconds_bucket{method="GET",path="healthz",status="200",le="0.005"} 2040

...



http_request_duration_seconds_bucket{method="GET",path="healthz",status="200",le="0.01"} 2040

...



http_request_duration_seconds_bucket{method="GET",path="healthz",status="200",le="0.025"} 2040

...



http_request_duration_seconds_bucket{method="GET",path="healthz",status="200",le="0.05"} 2072

...



http_request_duration_seconds_bucket{method="GET",path="healthz",status="200",le="0.1"} 2072

...



http_request_duration_seconds_bucket{method="GET",path="healthz",status="200",le="0.25"} 2072

...



...



# HELP http_requests_total The total number of HTTP requests.

...



# TYPE http_requests_total counter

...



http_requests_total{status="200"} 5593

...




This is a HTTP request with cURL, it shows the custom metrics exposed by an HTTP server of an application running in a Kubernetes pod.

...

HPA manifest with core metrics scraping:


Code Block
languageyml
php-apache-hpa.yml

...



apiVersion: autoscaling/v1

...



kind: HorizontalPodAutoscaler

...



metadata:

...



  name: php-apache-hpa

...



spec:

...



  scaleTargetRef:

...



    apiVersion: extensions/v1beta1

...



    kind:

...

 Deployment

    name: php-apache-deployment

...



  minReplicas:

...

 1

  maxReplicas:

...

 5

  targetCPUUtilizationPercentage: 50


In this example HPA scrapes metrics from CPU consumption of php-apache-deployment. The initial pod number is one and the maximum replica counts are five. HPA initiates pod scaling when the CPU utilization is higher than 50%. If the utilization is less than 50% HPA starts scaling down the number of pods by one.

...

HPA manifest with custom metrics scraping:


Code Block
languageyml
podinfo-hpa-custom.yaml

...



apiVersion: autoscaling/v2beta1

...



kind: HorizontalPodAutoscaler

...



metadata:

...



  name:

...

 podinfo

  namespace: kube-system

...



spec:

...



  scaleTargetRef:

...



    apiVersion: extensions/v1beta1

...



    kind:

...

 Deployment

    name:

...

 podinfo

  minReplicas:

...

 2

  maxReplicas:

...

  metrics:

  - type: Pods

    pods:

      metricName: http_requests

...

 10

  metrics:

  - type: Pods

    pods:

      metricName: http_requests

      targetAverageValue: 10


In the second example HPA uses custom metrics to manage the performance. The podinfo application contains the implementation of an HTTP server which exposes the metrics in Prometheus format. The initial number of pods are two and the maximum are ten. The custom metric is the cardinality of the http requests on the HTTP server regarding to the metrics exposed.

...

The starter command for custom metric based HPA manifest is:

Code Block
~]$ kubectl create -f podinfo-hpa-custom.yaml --namespace=kube-system

In case of starting core metrics HPA the command is the same.

...

After HPA start you can get information about the state of actual performance management of the system with:


Code Block
~]$ kubectl describe hpa podinfo --namespace=kube-system

...

Name:                       podinfo

Namespace:                  kube-system

Labels:                     <none>

Annotations:                <none>

...



Name:                       podinfo

Namespace:                  kube-system

Labels:                     <none>

Annotations:                <none>

CreationTimestamp:          Tue, 19 Feb 2019 10:08:21 +0100

...



Reference:                  Deployment/podinfo

...

Metrics:                    ( current / target )

...



Metrics:                    ( current / target )

  "http_requests" on pods:

...

  901m / 10

...



Min replicas:

...

Max replicas:               10

Deployment pods:            2 current / 2 desired

Conditions:

  Type            Status  Reason            Message

  ----            ------  ------            -------

  AbleToScale     True    ReadyForNewScale  recommended size matches current size

  ScalingActive   True    ValidMetricFound  the HPA was able to successfully calculate a replica count from pods metric http_requests

  ScalingLimited  True    TooFewReplicas    the desired replica count is increasing faster than the maximum scale rate

...

               2

Max replicas:               10

Deployment pods:            2 current / 2 desired

Conditions:

  Type            Status  Reason            Message

  ----            ------  ------            -------

  AbleToScale     True    ReadyForNewScale  recommended size matches current size

  ScalingActive   True    ValidMetricFound  the HPA was able to successfully calculate a replica count from pods metric http_requests

  ScalingLimited  True    TooFewReplicas    the desired replica count is increasing faster than the maximum scale rate

Events:           <none>



Note that: HPA API supports scaling based on both core and custom metrics within the same HPA object.

...