May 2018
Intermediate to advanced
554 pages
13h 51m
English
As you can see, the installed Kibana versions are different based on the Kubernetes provisioning tool. But this cookbook explores the basic functions of Kibana. Therefore, there are no version-specific operations to worry about.
Let's launch a sample application and then learn how to monitor your application log using Kibana:
$ cat myapp.yamlapiVersion: v1kind: Podmetadata: name: myappspec: containers: - image: busybox name: application args: - /bin/sh - -c - > while true; do echo "$(date) INFO hello"; sleep 1; done
$ kubectl create -f myapp.yaml --namespace=chap9pod "myapp" created ...