exporter for Aliyun CloudMonitor. Written in Golang. inspired by aliyun-exporter
cd aliyun-exporter
make tidy# build
go build -o aliyun-exporter
# run
./aliyun-exporter serve- 将配置迁移到consul,方便修改配置
aliyun-exporter-consul serve --consul.address="localhost:8500" --consul.token="" --consul.key="aliyun"- 新增了yaml配置选项:"spec",因为我们往往会创建很多的资源组来区分资源的归属,所以"app"实际上就是资源组标识,"team"是我个人用的报警的推送组,"instance"为资源组下想要展示的资源实例.
- "instance"定义了要收集的实例ID,因为往往有时候你可以能只是一个ram账号,不想收集其他人的资源信息
- 添加的"app"、"team"都会作为额外的label添加到metric中
- 关闭了查看config的接口,ak sk如此重要的数据不应该直接查看的
新增的spec并不是一个全局的定义,因此在编辑配置文件的时候还是蛮痛苦的
metrics:
acs_kvstore:
- name: ShardingCpuUsage
desc: CPU使用率
dimensions:
- instanceId
- nodeId
measure: Average
period: 60
unit: "%"
spec:
claim:
- app: A
team: tt-A
instance:
- instanceId
- instanceId
- app: B
team: tt-B
instance:
- instanceId
- instanceId Provide a configuration file containing authentication information.
credentials:
# You can obtain monitoring data of multiple tenants by configuring multiple Tenant information.
tenantId1:
accessKey: xxxxxxxxxxxx
accessKeySecret: xxxxxxxxxxxx
region: cn-hangzhou
tenantId2:
accessKey: xxxxxxxxxxxx
accessKeySecret: xxxxxxxxxxxx
region: cn-hangzhou- job_name: 'aliyun-exporter'
scrape_interval: 60s
scrape_timeout: 60s
# # Docking with didi/nightingale
# relabel_configs:
# metric_relabel_configs:
# - source_labels:
# - instanceId
# - cloudID
# separator: ;
# target_label: ident
static_configs:
- targets: ['aliyun-exporter:9527']
## Docking with didi/nightingale
#remote_write:
# - url: "http://$n9e-server:19000/prometheus/v1/write"
# # Configures the queue used to write to remote storage.
# queue_config:
# # Number of samples to buffer per shard before we start dropping them.
# capacity: 10000
# # Maximum number of shards, i.e. amount of concurrency.
# max_shards: 1
# # Maximum number of samples per send.
# max_samples_per_send: 500You can visit metrics in http://aliyun-exporter:8100/metrics
In this way, the authentication information of the configuration file will be ignored, and all authentication information needs to be provided through the parameters in the get request.
You can visit http://aliyun-exporter:9527/, and you will know what parameters are required for this method, Such as: http://127.0.0.1:9527/monitors?tenant=xxxx&accessKey=xxxx&accessKeySecret=xxxx®ionId=cn-hangzhou
This method can be combined with consul:
curl -X PUT -d '{"id": "aliyun-exporter001","name": "aliyun-exporter001","address": "aliyun-exporter","port": 9527,"tags": ["aliyun-exporter"],"Meta":{"tenant":"aliyun-exporter001","accessKey":"xxxx","accessKeySecret":"xxxx","regionId":"xxxx"},"checks": [{"http": "http://aliyun-exporter:9527/healthz", "interval": "30s"}]}' http://consul:8500/v1/agent/service/registervi /etc/prometheus/prometheus.yml
- job_name: "aliyun-exporter"
honor_timestamps: true
scrape_interval: 3m
scrape_timeout: 20s
metrics_path: /monitors
scheme: http
relabel_configs:
- source_labels: [__meta_consul_tags]
separator: ;
regex: .*aliyun-exporter.*
replacement: $1
action: keep
- source_labels: [__meta_consul_service_metadata_tenant]
separator: ;
regex: (.*)
target_label: __param_tenant
replacement: $1
action: replace
- source_labels: [__meta_consul_service_metadata_accessKey]
separator: ;
regex: (.*)
target_label: __param_accessKey
replacement: $1
action: replace
- source_labels: [__meta_consul_service_metadata_accessKeySecret]
separator: ;
regex: (.*)
target_label: __param_accessKeySecret
replacement: $1
action: replace
- source_labels: [__meta_consul_service_metadata_regionId]
separator: ;
regex: (.*)
target_label: __param_regionId
replacement: $1
action: replace
## Docking with didi/nightingale
# metric_relabel_configs:
# - source_labels:
# - instanceId
# - __param_tenant
# separator: ;
# target_label: ident
consul_sd_configs:
- server: consul:8500
tag_separator: ','
scheme: http
allow_stale: true
refresh_interval: 30s
## Docking with didi/nightingale
#remote_write:
# - url: "http://$n9e-server:19000/prometheus/v1/write"
# # Configures the queue used to write to remote storage.
# queue_config:
# # Number of samples to buffer per shard before we start dropping them.
# capacity: 10000
# # Maximum number of shards, i.e. amount of concurrency.
# max_shards: 1
# # Maximum number of samples per send.
# max_samples_per_send: 500Compatible with didi/nightingale

- an exporter instance can only scrape metrics from single region (Done)
- ...
- dynamic rate limiter