Prometheus cloudeye exporter for Huaweicloud.
$ git clone https://github.com/huaweicloud/cloudeye-exporter
$ wget https://dl.google.com/go/go1.12.5.linux-amd64.tar.gz
$ sudo tar -C /usr/local -xzf go1.12.5.linux-amd64.tar.gz
$ export PATH=$PATH:/usr/local/go/bin # You should put in your .profile or .bashrc
$ go version # to verify it runs and version #
$ go get github.com/huaweicloud/cloudeye-exporter
$ cd ~/go/src/github.com/huaweicloud/cloudeye-exporter
$ go build
./cloudeye-exporter -config=clouds.yml
The default port is 8087, default config file location is ./clouds.yml.
Visit metrics in http://localhost:8087/metrics?services=SYS.VPC,SYS.ELB
Usage of ./cloudeye-exporter:
-config string
Path to the cloud configuration file (default "./clouds.yml")
-debug
If debug the code.
The "URL" value can be get from Identity and Access Management (IAM) endpoint list.
global:
prefix: "huaweicloud"
port: ":8087"
metric_path: "/metrics"
scrape_batch_size: 10
auth:
auth_url: "https://iam.xxx.yyy.com/v3"
project_name: "{project_name}"
access_key: "{access_key}"
secret_key: "{secret_key}"
region: "{region}"
or
auth:
auth_url: "https://iam.xxx.yyy.com/v3"
project_name: "{project_name}"
user_name: "{username}"
password: "{password}"
region: "{region}"
domain_name: "{domain_name}"
The huaweicloud exporter needs to be passed the address as a parameter, this can be done with relabelling.
Example config:
global:
scrape_interval: 1m # Set the scrape interval to every 1 minute seconds. Default is every 1 minute.
scrape_timeout: 1m
scrape_configs:
- job_name: 'huaweicloud'
static_configs:
- targets: ['10.0.0.10:8087']
params:
services: ['SYS.VPC,SYS.ELB']