The following sections list the changes for 2.1.0.
- Chg #258: Switch to official logging library
- Chg #272: Add type to IP pricing and add metrics for primary IPs
-
Change #258: Switch to official logging library
Since there have been a structured logger part of the Go standard library we thought it's time to replace the library with that. Be aware that log messages should change a little bit.
-
Change #272: Add type to IP pricing and add metrics for primary IPs
Since the client SDK has deprecated the previous handling for the pricing of IP addresses we had to update the metrics to include the type and location of the IPs. Besides that we have also added metrics for the pricing of the primary IP addresses.
The following sections list the changes for 2.0.0.
- Fix #246: Fetch metrics for all servers
- Chg #240: Improve pricing error handling
- Chg #240: New traffic pricing metrics because of deprecation
-
Bugfix #246: Fetch metrics for all servers
For previous versions we have used the wrong client function to gather the list of servers for the server metrics, this hvae been fixed by using a function that automatically fetches all servers by iterating of the pagination.
-
Change #240: Improve pricing error handling
So far we always existed the scraping if there have been any kind of error while parsing the metric values, from now on we are logging an error but continue to provide the remaining metrics to avoid loosing unrelated metrics.
-
Change #240: New traffic pricing metrics because of deprecation
The previous traffic pricing metrics have been deprecated and got to be replaced by new metrics as the new metrics have been split between service type like load balancers and server types.
The following sections list the changes for 1.3.0.
- Chg #193: Read secrets form files
- Chg #193: Integrate standard web config
- Enh #193: Integrate option pprof profiling
-
Change #193: Read secrets form files
We have added proper support to load secrets like the password from files or from base64-encoded strings. Just provide the flags or environment variables for token or private key with a DSN formatted string like
file://path/to/file
orbase64://Zm9vYmFy
. -
Change #193: Integrate standard web config
We integrated the new web config from the Prometheus toolkit which provides a configuration for TLS support and also some basic builtin authentication. For the detailed configuration you can check out the documentation.
-
Enhancement #193: Integrate option pprof profiling
We have added an option to enable a pprof endpoint for proper profiling support with the help of tools like Parca. The endpoint
/debug/pprof
can now optionally be enabled to get the profiling details for catching potential memory leaks.
The following sections list the changes for 1.2.3.
- Fix #175: Correctly read loadbalancer traffic
-
Bugfix #175: Correctly read loadbalancer traffic
We used a wrong attribute to read the loadbalancer traffic which resulted in missing metrics for the realtime traffic in and out for all loadbalancers. With this fix you should be able to use the metrics.
The following sections list the changes for 1.2.2.
- Fix #72: Fix index out of range issue within server metrics
- Fix #74: Another fix for go routines within server metrics
-
Bugfix #72: Fix index out of range issue within server metrics
The code has not checked if an index have been really available within the server metrics API response. With this fix it gets properly handled.
-
Bugfix #74: Another fix for go routines within server metrics
We disabled the server metrics by default for now until the implementation is really stable to avoid any side effects. I have reintroduced routines, otherwise the scrapetime will be far too high. This time I used wait groups to get everything handled properly.
The following sections list the changes for 1.2.1.
- Fix #70: Fix go routine errors within server metrics
-
Bugfix #70: Fix go routine errors within server metrics
We fixed a go routines issue within the new server metrics. We just got rid of the routines to avoid any errors related to sending to closed channels.
The following sections list the changes for 1.2.0.
- Chg #53: Integrate standard web config
- Chg #67: Add collector for server metrics
-
Change #53: Integrate standard web config
We integrated the new web config from the Prometheus toolkit which provides a configuration for TLS support and also some basic builtin authentication. For the detailed configuration you check out the documentation.
-
Change #67: Add collector for server metrics
Hetzner Cloud collects basic metrics on the hypervisor-level for each server. We have added a new collector which scrapes the latest available metric point for each running server. It is enabled by default.
The following sections list the changes for 1.1.0.
- Chg #21: Add collector for volumes
- Chg #24: Refactor build tools and project structure
- Chg #25: Drop darwin/386 release builds
- Chg #39: Add collector for load balancers
-
Change #21: Add collector for volumes
We have added a new optional collector, which is disabled by default, to gather metrics about the volumes part of the configured Hetzner Cloud project.
-
Change #24: Refactor build tools and project structure
To have a unified project structure and build tooling we have integrated the same structure we already got within our GitHub exporter.
-
Change #25: Drop darwin/386 release builds
We dropped the build of 386 builds on Darwin as this architecture is not supported by current Go versions anymore.
-
Change #39: Add collector for load balancers
We have added a new optional collector, which is enabled by default, to gather metrics about all loadbalancers part of the configured Hetzner Cloud project.
The following sections list the changes for 1.0.0.
- Chg #19: Add
vat
labels for net and gross values
-
Change #19: Add
vat
labels for net and gross valuesAdded a new
vat
label forgross
ornet
values to thehcloud_server_price
metric. Depending on the setup this can be a breaking change and it may be necessary to adjust some dashboards and alerting rules.
The following sections list the changes for 0.2.0.
- Chg #17: Add pricing collector
- Chg #18: Add new metric to see if backups enabled
-
Change #17: Add pricing collector
We added a new collector to gather information about the pricings, that way somebody could do calculations how much the costs are increasing or decreasing by sclae up or sclae down. The new collector includes new metrics named
hcloud_pricing_floating_ip
,hcloud_pricing_image
,hcloud_pricing_server_backup
andhcloud_pricing_traffic
. -
Change #18: Add new metric to see if backups enabled
We added a new metric named
hcloud_server_backup
which indicates if a server got backups enabled or not, that way somebody could add some alerting if a server is missing a backup.
The following sections list the changes for 0.1.1.
- Fix #11: Fix typo within
hcloud_server_incoming_traffic_bytes
- Chg #13: Pin go version to 1.10
-
Bugfix #11: Fix typo within
hcloud_server_incoming_traffic_bytes
We fixed a typo within the
hcloud_server_incoming_traffic_bytes
metric where we were just missing a tiny single letter. -
Change #13: Pin go version to 1.10
To make sure we got something nearly like reproducible builds and to fix the builds we should pin the build dependencies like the Go version to make sure it is always buildable.
The following sections list the changes for 0.1.0.
- Chg #23: Initial release of basic version
-
Change #23: Initial release of basic version
Just prepared an initial basic version which could be released to the public.