55 lines
2.2 KiB
YAML
55 lines
2.2 KiB
YAML
---
|
|
- name: Create Consul service definition
|
|
include_role: name=consul-service
|
|
vars:
|
|
consul_config_name: '{{ openethereum_service_name }}'
|
|
consul_services:
|
|
- id: '{{ openethereum_service_name }}'
|
|
name: '{{ openethereum_consul_service_name }}'
|
|
tags: '{{ openethereum_consul_tags }}'
|
|
port: '{{ openethereum_p2p_port }}'
|
|
address: '{{ ansible_host }}'
|
|
meta:
|
|
node_enode: '{{ openethereum_enode_addr }}'
|
|
checks:
|
|
- id: '{{ openethereum_service_name }}-status'
|
|
type: 'tcp'
|
|
tcp: '127.0.0.1:{{ openethereum_p2p_port }}'
|
|
|
|
- id: '{{ openethereum_service_name }}-rpc'
|
|
name: '{{ openethereum_consul_service_name }}-rpc'
|
|
tags: '{{ openethereum_consul_tags + ["rpc"] }}'
|
|
port: '{{ openethereum_rpc_port }}'
|
|
address: '{{ openethereum_consul_address }}'
|
|
meta:
|
|
url: 'http://{{ openethereum_consul_address }}:{{ openethereum_rpc_port }}'
|
|
checks:
|
|
- id: '{{ openethereum_service_name }}-rpc-status'
|
|
type: 'script'
|
|
script: '{{ openethereum_service_path }}/rpc.sh eth_syncing'
|
|
timeout: '5s'
|
|
|
|
- id: '{{ openethereum_service_name }}-ws'
|
|
name: '{{ openethereum_consul_service_name }}-ws'
|
|
tags: '{{ openethereum_consul_tags + ["websocket"] }}'
|
|
port: '{{ openethereum_websocket_port }}'
|
|
address: '{{ openethereum_consul_address }}'
|
|
meta:
|
|
url: 'ws://{{ openethereum_consul_address }}:{{ openethereum_websocket_port }}'
|
|
checks:
|
|
- id: '{{ openethereum_service_name }}-ws-status'
|
|
name: 'openethereum WebSocket API'
|
|
type: 'tcp'
|
|
tcp: 'localhost:{{ openethereum_websocket_port }}'
|
|
|
|
- id: '{{ openethereum_service_name }}-metrics'
|
|
name: '{{ openethereum_consul_service_name }}-metrics'
|
|
tags: '{{ openethereum_consul_tags + ["metrics"] }}'
|
|
port: '{{ openethereum_metrics_port }}'
|
|
address: '{{ openethereum_consul_address }}'
|
|
checks:
|
|
- id: '{{ openethereum_service_name }}-metrics'
|
|
name: 'openethereum metrics API'
|
|
type: 'tcp'
|
|
tcp: 'localhost:{{ openethereum_metrics_port }}'
|