|
| 1 | +# Flexible Labeling with Docker Flow Monitor |
| 2 | + |
| 3 | +*Docker Flow Monitor* and *Docker Flow Swarm Listener* can be configured to allow for more flexible labeling of exporters. Please read the [Running Docker Flow Monitor](tutorial.md) tutorial before reading this one. This tutorial focuses on configuring the stacks to allow for flexible labeling. |
| 4 | + |
| 5 | +## Setting Up A Cluster |
| 6 | + |
| 7 | +!!! info |
| 8 | + Feel free to skip this section if you already have a Swarm cluster that can be used for this tutorial |
| 9 | + |
| 10 | +We'll create a Swarm cluster consisting of three nodes created with Docker Machine. |
| 11 | + |
| 12 | +```bash |
| 13 | +git clone https://github.com/vfarcic/docker-flow-monitor.git |
| 14 | + |
| 15 | +cd docker-flow-monitor |
| 16 | + |
| 17 | +./scripts/dm-swarm.sh |
| 18 | + |
| 19 | +eval $(docker-machine env swarm-1) |
| 20 | +``` |
| 21 | + |
| 22 | +## Deploying Docker Flow Monitor |
| 23 | + |
| 24 | +We will deploy [stacks/docker-flow-monitor-flexible-labels.yml](https://github.com/vfarcic/docker-flow-monitor/blob/master/stacks/docker-flow-monitor-flexible-labels.yml) stack that contains three services: `monitor`, `alert-manager` and `swarm-listener`. The `swarm-listener` service includes an additional environment variable: `DF_INCLUDE_NODE_IP_INFO=true`. This configures `swarm-listener` to send node and ip information to `mointor`. |
| 25 | + |
| 26 | +The `monitor` service includes the environment variable: `DF_SCRAPE_TARGET_LABELS=env,metricType`. This sets up flexible labeling for exporters. If an exporter defines a deploy label `com.df.env` or `com.df.metricType`, that label will be used by `monitor`. |
| 27 | + |
| 28 | +Let's deploy the `monitor` stack: |
| 29 | + |
| 30 | +```bash |
| 31 | +docker network create -d overlay monitor |
| 32 | + |
| 33 | +docker stack deploy \ |
| 34 | + -c stacks/docker-flow-monitor-flexible-labels.yml \ |
| 35 | + monitor |
| 36 | +``` |
| 37 | + |
| 38 | +## Collecting Metrics and Defining Alerts |
| 39 | + |
| 40 | +We will deploy exporters stack defined in [stacks/exporters-tutorial-flexible-labels.yml](https://github.com/vfarcic/docker-flow-monitor/blob/master/stacks/exporters-tutorial-flexible-labels.yml), two containing two services: `cadvisor` and `node-exporter`. |
| 41 | + |
| 42 | +The definition of the `cadvisor` service contains additional deploy labels: |
| 43 | + |
| 44 | +```yaml |
| 45 | + cadvisor: |
| 46 | + image: google/cadvisor |
| 47 | + networks: |
| 48 | + - monitor |
| 49 | + ... |
| 50 | + deploy: |
| 51 | + mode: global |
| 52 | + labels: |
| 53 | + ... |
| 54 | + - com.df.scrapeNetwork=monitor |
| 55 | + - com.df.env=prod |
| 56 | + - com.df.metricType=system |
| 57 | +``` |
| 58 | +
|
| 59 | +The `com.df.scrapeNetwork` deploy label tells `swarm-listener` to use `cadvisor`'s IP on the `monitor` network. This is important because the `monitor` service is using the `monitor` network to scrape `cadvisor`. The `com.df.env=prod` and `com.df.metricType=system` deploy labels configures flexible labeling for `cadvisor`. |
| 60 | + |
| 61 | +The second service, `node-exporter` is also configured with flexiable labels: |
| 62 | + |
| 63 | +```yaml |
| 64 | + node-exporter: |
| 65 | + image: basi/node-exporter |
| 66 | + networks: |
| 67 | + - monitor |
| 68 | + ... |
| 69 | + deploy: |
| 70 | + mode: global |
| 71 | + labels: |
| 72 | + ... |
| 73 | + - com.df.scrapeNetwork=monitor |
| 74 | + - com.df.env=dev |
| 75 | + - com.df.metricType=system |
| 76 | +``` |
| 77 | + |
| 78 | +Let's deploy the `exporter` stack |
| 79 | + |
| 80 | +```bash |
| 81 | +docker stack deploy \ |
| 82 | + -c stacks/exporters-tutorial-flexible-labels.yml \ |
| 83 | + exporter |
| 84 | +``` |
| 85 | + |
| 86 | +Please wait until the service in the stack are up-and-running. You can check their status by executing `docker stack ps exporter`. |
| 87 | + |
| 88 | +Now we can open the *Prometheus* targets page from a browser. |
| 89 | + |
| 90 | +> If you're a Windows user, Git Bash might not be able to use the `open` command. If that's the case, replace the `open` command with `echo`. As a result, you'll get the full address that should be opened directly in your browser of choice. |
| 91 | + |
| 92 | +```bash |
| 93 | +open "http://$(docker-machine ip swarm-1):9090/targets" |
| 94 | +``` |
| 95 | + |
| 96 | +You should see a targets page similar to the following: |
| 97 | + |
| 98 | + |
| 99 | + |
| 100 | +Each service is labeled with its associated `com.df.env` or `com.df.metricType` deploy label. In addition, the `node` label is the hostname the service is running on. |
| 101 | + |
| 102 | +## What Now? |
| 103 | + |
| 104 | +*Docker Flow Monitors*'s flexible labeling feature provides more information about your services. Please consult the documentation for any additional information you might need. Feel free to open [an issue](https://github.com/vfarcic/docker-flow-monitor/issues) if you require additional info, if you find a bug, or if you have a feature request. |
| 105 | + |
| 106 | +Before you go, please remove the cluster we created and free those resources for something else. |
| 107 | + |
| 108 | +```bash |
| 109 | +docker-machine rm -f swarm-1 swarm-2 swarm-3 |
| 110 | +``` |
0 commit comments