Prometheus exporter for Hetzner Cloud
We won’t cover further details how to properly setup Prometheus itself, we will only cover some basic setup based on docker-compose. But if you want to run this exporter without docker-compose you should be able to adopt that to your needs.
First of all we need to prepare a configuration for Prometheus that includes the exporter based on a static configuration with the container name as a hostname:
global:
scrape_interval: 1m
scrape_timeout: 10s
evaluation_interval: 1m
scrape_configs:
- job_name: hcloud
static_configs:
- targets:
- hcloud_exporter:9501
After preparing the configuration we need to create the docker-compose.yml
within the same folder, this docker-compose.yml
starts a simple
Prometheus instance together with the exporter. Don’t forget to
update the environment variables with the required credentials.
version: '2'
volumes:
prometheus:
services:
prometheus:
image: prom/prometheus:latest
restart: always
ports:
- 9090:9090
volumes:
- prometheus:/prometheus
- ./prometheus.yml:/etc/prometheus/prometheus.yml
hcloud_exporter:
image: promhippie/hcloud-exporter:latest
restart: always
environment:
- HCLOUD_EXPORTER_TOKEN=bldyecdtysdahs76ygtbw51w3oeo6a4cvjwoitmb
- HCLOUD_EXPORTER_LOG_PRETTY=true
Since our latest
tag always refers to the master
branch of the Git
repository you should always use some fixed version. You can see all available
tags at DockerHub or Quay, there you will see that we
also provide a manifest, you can easily start the exporter on various
architectures without any change to the image name. You should apply a change
like this to the docker-compose.yml
file:
hcloud_exporter:
- image: promhippie/hcloud-exporter:latest
+ image: promhippie/hcloud-exporter:1.0.0
restart: always
environment:
- HCLOUD_EXPORTER_TOKEN=bldyecdtysdahs76ygtbw51w3oeo6a4cvjwoitmb
- HCLOUD_EXPORTER_LOG_PRETTY=true
If you want to access the exporter directly you should bind it to a local port,
otherwise only Prometheus will have access to the exporter. For
debugging purpose or just to discover all available metrics directly you can
apply this change to your docker-compose.yml
, after that you can access it
directly at http://localhost:9501/metrics:
hcloud-exporter:
image: promhippie/hcloud-exporter:latest
restart: always
+ ports:
+ - 127.0.0.1:9501:9501
environment:
- HCLOUD_EXPORTER_TOKEN=bldyecdtysdahs76ygtbw51w3oeo6a4cvjwoitmb
- HCLOUD_EXPORTER_LOG_PRETTY=true
If you want to secure the access to the exporter you can provide a web config. You just need to provide a path to the config file in order to enable the support for it, for details about the config format look at the documentation section:
hcloud_exporter:
image: promhippie/hcloud-exporter:latest
restart: always
environment:
+ - HCLOUD_EXPORTER_WEB_CONFIG=path/to/web-config.json
- HCLOUD_EXPORTER_TOKEN=bldyecdtysdahs76ygtbw51w3oeo6a4cvjwoitmb
- HCLOUD_EXPORTER_LOG_PRETTY=true
If you want to provide the required secrets from a file it’s also possible. For this use case you can write the secret to a file on any path and reference it with the following format:
hcloud_exporter:
image: promhippie/hcloud-exporter:latest
restart: always
environment:
- - HCLOUD_EXPORTER_TOKEN=bldyecdtysdahs76ygtbw51w3oeo6a4cvjwoitmb
+ - HCLOUD_EXPORTER_TOKEN=file://path/to/secret/file/with/token
- HCLOUD_EXPORTER_LOG_PRETTY=true
Finally the exporter should be configured fine, let’s start this stack with
docker-compose, you just need to execute docker-compose up
within
the directory where you have stored the prometheus.yml
and
docker-compose.yml
.
That’s all, the exporter should be up and running. Have fun with it and hopefully you will gather interesting metrics and never run into issues. You can access the exporter at http://localhost:9501/metrics and Prometheus at http://localhost:9090.
info
false
0.0.0.0:9501
/metrics
false
10s
10s
true
true
true
true
false
true
true
false
If you want to secure the service by TLS or by some basic authentication you can
provide a YAML
configuration file which follows the Prometheus
toolkit format. You can see a full configuration example within the
toolkit documentation.
You can a rough list of available metrics below, additionally to these metrics you will always get the standard metrics exported by the Golang client of Prometheus. If you want to know more about these standard metrics take a look at the process collector and the Go collector.
Currently we are covering the most famous installation methods on Kubernetes, you can choose between Kustomize and Helm.
We won’t cover the installation of Kustomize within this guide, to
get it installed and working please read the upstream documentation. After the
installation of Kustomize you just need to prepare a
kustomization.yml
wherever you like similar to this:
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: hcloud-exporter
resources:
- github.com/promhippie/hcloud_exporter//deploy/kubernetes?ref=master
configMapGenerator:
- name: hcloud-exporter
behavior: merge
literals: []
secretGenerator:
- name: hcloud-exporter
behavior: merge
literals: []
After that you can simply execute kustomize build | kubectl apply -f -
to get
the manifest applied. Generally it’s best to use fixed versions of the container
images, this can be done quite easy, you just need to append this block to your
kustomization.yml
to use this specific version:
images:
- name: quay.io/promhippie/hcloud-exporter
newTag: 1.1.0
After applying this manifest the exporter should be directly visible within your Prometheus instance if you are using the Prometheus Operator as these manifests are providing a ServiceMonitor.
We won’t cover the installation of Helm within this guide, to get it installed and working please read the upstream documentation. After the installation of Helm you just need to execute the following commands:
helm repo add promhippie https://promhippie.github.io/charts
helm show values promhippie/hcloud-exporter
helm install hcloud-exporter promhippie/hcloud-exporter
You can also watch that available values and generally the details of the chart provided by us within our chart repository or on Artifacthub.
After applying this manifest the exporter should be directly visible within your Prometheus instance depending on your installation if you enabled the annotations or the service monitor.
As this project is built with Go you need to install Go first. The installation of Go is out of the scope of this document, please follow the official documentation. After the installation of Go you need to get the sources:
git clone https://github.com/promhippie/hcloud_exporter.git
cd hcloud_exporter/
All required tool besides Go itself are bundled, all you need is part of the
Makefile
:
make generate build
Finally you should have the binary within the bin/
folder now, give it a try
with ./bin/hcloud_exporter -h
to see all available options.