Giter VIP home page Giter VIP logo

practical-observability's Introduction

Practical Observability

A book that covers the application of observability practices.

We cover the topics of Metrics, Tracing, and Logging, as well as how common observability providers implement each of these ecosystems.

You will learn the theory behind different kinds of observability tools, how they are implemented from first principles, and how to instrument new and existing services in a few popular programming languages (Golang and Python).

Deployment

This book is deployed as a draft in GCS for now:

Environment Book Link
GCS Practical Observability
GH Pages Practical Observability

Development

To run this project locally, simply clone the repository and run make dev to bring up a mdbook container that exposes the docs at http://localhost:3000

You'll need a recent version of Docker in order to run the project.

Demo Stack Standup

To startup the local demo stack including Prometheus, Grafana, and AlertManager, use the following steps on your local Kubernetes cluster.

Install Helm

$ brew install helm

Install the Helm Prometheus Repo and Charts

$ helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
$ helm repo add stable https://charts.helm.sh/stable
$ helm repo update

Create a Monitoring Namespace for Prometheus components

$ kubectl create namespace monitoring

Run the Prometheus Helm Chart

Note the ports we're assigning to each service, these can be changed if necessary to accomodate your local environment.

$ helm install kind-prometheus prometheus-community/kube-prometheus-stack \
    --namespace monitoring \
    --set prometheus.service.nodePort=30000 \
    --set prometheus.service.type=NodePort \
    --set grafana.service.nodePort=31000 \
    --set grafana.service.type=NodePort \
    --set alertmanager.service.nodePort=32000 \
    --set alertmanager.service.type=NodePort \
    --set prometheus-node-exporter.service.nodePort=32001 \
    --set prometheus-node-exporter.service.type=NodePort

Patch the Node Exporter to keep it from crashing since it has difficulties with Docker Desktop clusters on occasion:

$ kubectl patch -n monitoring ds kind-prometheus-prometheus-node-exporter --type "json" -p '[{"op": "remove", "path" : "/spec/template/spec/containers/0/volumeMounts/2/mountPropagation"}]'

Check for running Prometheus pods:

$ kubectl --namespace monitoring get pods -l release=kind-prometheus
NAME                                                   READY   STATUS    RESTARTS   AGE
kind-prometheus-kube-prome-operator-75468846f9-ng4kk   1/1     Running   0          6m14s
kind-prometheus-kube-state-metrics-554c667875-mg27l    1/1     Running   0          6m14s
kind-prometheus-prometheus-node-exporter-l7qng         1/1     Running   0          55s

Check the full component stack:

$ kubectl get all --namespace monitoring

NAME                                                         READY   STATUS    RESTARTS        AGE
pod/alertmanager-kind-prometheus-kube-prome-alertmanager-0   2/2     Running   1 (7m21s ago)   7m43s
pod/kind-prometheus-grafana-59764d785-fq26p                  3/3     Running   0               7m59s
pod/kind-prometheus-kube-prome-operator-75468846f9-ng4kk     1/1     Running   0               7m59s
pod/kind-prometheus-kube-state-metrics-554c667875-mg27l      1/1     Running   0               7m59s
pod/kind-prometheus-prometheus-node-exporter-l7qng           1/1     Running   0               2m40s
pod/prometheus-kind-prometheus-kube-prome-prometheus-0       2/2     Running   0               7m43s

NAME                                               TYPE        CLUSTER-IP       EXTERNAL-IP   PORT(S)                      AGE
service/alertmanager-operated                      ClusterIP   None             <none>        9093/TCP,9094/TCP,9094/UDP   7m43s
service/kind-prometheus-grafana                    NodePort    10.101.226.52    <none>        80:31000/TCP                 7m59s
service/kind-prometheus-kube-prome-alertmanager    NodePort    10.109.27.17     <none>        9093:32000/TCP               7m59s
service/kind-prometheus-kube-prome-operator        ClusterIP   10.96.108.97     <none>        443/TCP                      7m59s
service/kind-prometheus-kube-prome-prometheus      NodePort    10.105.140.103   <none>        9090:30000/TCP               7m59s
service/kind-prometheus-kube-state-metrics         ClusterIP   10.111.190.206   <none>        8080/TCP                     7m59s
service/kind-prometheus-prometheus-node-exporter   NodePort    10.99.3.90       <none>        9100:32001/TCP               7m59s
service/prometheus-operated                        ClusterIP   None             <none>        9090/TCP                     7m43s

NAME                                                      DESIRED   CURRENT   READY   UP-TO-DATE   AVAILABLE   NODE SELECTOR   AGE
daemonset.apps/kind-prometheus-prometheus-node-exporter   1         1         1       1            1           <none>          7m59s

NAME                                                  READY   UP-TO-DATE   AVAILABLE   AGE
deployment.apps/kind-prometheus-grafana               1/1     1            1           7m59s
deployment.apps/kind-prometheus-kube-prome-operator   1/1     1            1           7m59s
deployment.apps/kind-prometheus-kube-state-metrics    1/1     1            1           7m59s

NAME                                                             DESIRED   CURRENT   READY   AGE
replicaset.apps/kind-prometheus-grafana-59764d785                1         1         1       7m59s
replicaset.apps/kind-prometheus-kube-prome-operator-75468846f9   1         1         1       7m59s
replicaset.apps/kind-prometheus-kube-state-metrics-554c667875    1         1         1       7m59s

NAME                                                                    READY   AGE
statefulset.apps/alertmanager-kind-prometheus-kube-prome-alertmanager   1/1     7m43s
statefulset.apps/prometheus-kind-prometheus-kube-prome-prometheus       1/1     7m43s

After the install you'll find:

Log into Grafana with the following credentials:

Username: admin
Password: prom-operator

Teardown

Teardown the stack when you're done with:

$ kubectl delete namespace monitoring

CI/CD

This repo has one main CI pipeline, that builds and publishes the draft to GCS in a GitHub Action.

Commits to the main branch will trigger a build and deploy and generally within 20 seconds of a push you should see the updated docs at the Draft environment link.

practical-observability's People

Contributors

ericvolp12 avatar

Stargazers

D. Scarnecchia avatar Ben Freshwater avatar Noah Stride avatar Donovan Grajewski avatar Ricardo avatar Maryanne Wachter avatar Walter Zhang avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.