No description
Find a file
dependabot[bot] 38e354a16c
Bump github.com/onsi/ginkgo/v2 from 2.8.0 to 2.8.3 (#58)
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.8.0 to 2.8.3.
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/ginkgo/compare/v2.8.0...v2.8.3)

---
updated-dependencies:
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-02-20 19:22:50 +01:00
.github Bump docker/build-push-action from 3 to 4 in /.github/workflows (#52) 2023-01-31 19:39:14 +01:00
e2e chore: Add tests for new additional labels feature 2023-01-25 21:23:54 +01:00
fetcher chore: Add tests for new additional labels feature 2023-01-25 21:23:54 +01:00
helm/hcloud-pricing-exporter Release Helm chart for v0.7.0 2023-01-25 21:35:45 +01:00
.chartreleaser.yaml Add helm chart for easy deployment 2021-03-06 17:13:57 +01:00
.editorconfig fix: Correct settings for YAML files 2023-01-25 21:36:40 +01:00
.gitignore Prepare initial project layout 2021-03-05 16:35:29 +01:00
.golangci.yml Adapt go linting 2022-12-14 14:38:40 +01:00
.goreleaser.yml Fix build target and linting issues 2021-03-05 21:02:07 +01:00
Dockerfile Fix build target and linting issues 2021-03-05 21:02:07 +01:00
go.mod Bump github.com/onsi/ginkgo/v2 from 2.8.0 to 2.8.3 (#58) 2023-02-20 19:22:50 +01:00
go.sum Bump github.com/onsi/ginkgo/v2 from 2.8.0 to 2.8.3 (#58) 2023-02-20 19:22:50 +01:00
LICENSE Prepare initial project layout 2021-03-05 16:35:29 +01:00
main.go Add additional labels flag (#48) 2023-01-25 20:24:33 +01:00
README.md chore: Add new feature to the README 2023-01-25 21:27:50 +01:00
version.yaml Release Helm chart for v0.7.0 2023-01-25 21:35:45 +01:00

hcloud-pricing-exporter

Build Status PkgGoDev Go Report Card Docker Pulls Artifact HUB

A Prometheus exporter that connects to your HCloud account and collects data on your current expenses. The aim is to make cost of cloud infrastructure more transparent and manageable, especially for private projects.

Please note that no guarantees on correctness are made and any financial decisions should be always be based on the billing and cost functions provided by HCloud itself. Some hourly costs are estimations based on monthly costs, if the HCloud API does not provide an hourly expense.

Deployment

To run the exporter from the CLI you need to run the following commands:

# Just run it with the default settings
./hcloud-pricing-exporter -hcloud-token <TOKEN>

# Get the token from an ENV variable
export HCLOUD_TOKEN=<TOKEN>
./hcloud-pricing-exporter

# Run the exporter on a different port with another fetch interval
./hcloud-pricing-exporter -port 1234 -fetch-interval 45m

Alternatively, the exporter can be run by using the provided docker image:

docker run jangraefen/hcloud-pricing-exporter:latest -e HCLOUD_TOKEN=<TOKEN> -p 8080:8080

If you want to deploy the exporter to a Kubernetes environment, you can use the provided helm chart. Just perform the following commands:

helm repo add hcloud-pricing-exporter https://jangraefen.github.io/hcloud-pricing-exporter
helm repo update
helm upgrade --install hcloud-pricing-exporter hcloud-pricing-exporter/hcloud-pricing-exporter --version {VERSION}

Exported metrics

  • hcloud_pricing_floatingip_hourly{name, location, type} (Estimated based on the monthly price)
  • hcloud_pricing_floatingip_monthly{name, location, type}
  • hcloud_pricing_loadbalancer_hourly{name, location, type}
  • hcloud_pricing_loadbalancer_monthly{name, location, type}
  • hcloud_pricing_primaryip_hourly{name, datacenter, type}
  • hcloud_pricing_primaryip_monthly{name, datacenter, type}
  • hcloud_pricing_server_hourly{name, location, type}
  • hcloud_pricing_server_monthly{name, location, type}
  • hcloud_pricing_server_backups_hourly{name, location, type}
  • hcloud_pricing_server_backups_monthly{name, location, type}
  • hcloud_pricing_server_traffic_hourly{name, location, type} (Estimated based on the monthly price)
  • hcloud_pricing_server_traffic_monthly{name, location, type}
  • hcloud_pricing_snapshot_hourly{name} (Estimated based on the monthly price)
  • hcloud_pricing_snapshot_monthly{name}
  • hcloud_pricing_volume_hourly{name, location, bytes} (Estimated based on the monthly price)
  • hcloud_pricing_volume_monthly{name, location, bytes}

Each exported metric can also be enriched with additional labels, coming from the actual labels on the Hetzner resource. To expose additional labels, use the -additional-labels label1,label2,... command line parameter.