Consul common interface

prometheus.yml Configuration

  - job_name: 'node_exporter'
    consul_sd_configs:
      - server: 'consul_ip:8500'
        services: ['node_exporter']
# 匹配service关键字
 - job_name: 'service'
    consul_sd_configs:
    - server: 'consul_ip:8500'
      services: []
    relabel_configs:
    - source_labels: [__meta_consul_tags]
      regex: .*service.*
      action: keep


Registration Service
curl -X PUT -d '{"id": "test1","name": "test1","address": "10.80.229.55","port": 9100,"tags": ["service"],"checks": [{"http": "http:// 10.80.229.55:9100/","interval": "5s"}]}' http://consul_ip:8500/v1/agent/service/register
    The query specifies nodes and service information specified
curl http://consul_ip:8500/v1/catalog/service/mysql 
Delete Service
curl --request PUT http://consul_ip:8500/v1/agent/service/deregister/mysql
Lists the data center
curl http://consul_ip:8500/v1/catalog/datacenters

List the nodes
curl http://consul_ip:8500/v1/catalog/nodes

Services listed
curl http://consul_ip:8500/v1/catalog/services

Lists service node
curl http://consul_ip:8500/v1/catalog/service/my-service 


Guess you like

Origin www.cnblogs.com/momoyan/p/11783538.html