Useful tools to handle Consul.
Project description
Consul Utils
Introduction
Consul is a highly available and distributed service discovery and KV store designed with support for the modern data center. Consul provides a useful UI but it is not convenient for automation and batch processing. Consul-utils is a useful command line tool for these jobs based on Consul's API.
Installation
Installation is easy by pip
pip install consul_utils
Usage
Show help by
consul_utils --help
Consul-utils provides several useful tools to handle Consul.
Configuration
First you should create a configuration file to save common settings like below:
# consul configuration
consul:
# consul host
host: "test.consul.com"
# consul port
port: 8500
# consul scheme
scheme: "http"
# consul ACL token
token: ""
# default root
root: ""
# cache configuration
cache:
# cache enabled or not
cache_enabled: true
# cache file
cache_dir: ".consul_cache"
# cache expire seconds
cache_ttl: 600
# log configuration
log:
# log level
log_level: "INFO"
# output configuration
reporter:
# result output type, text, json or csv
output_type: "text"
# result output file, leave empty to print to console
output_file: ""
# output all scan data
show_all_scan: false
# output filtered data
show_filtered: true
# output not filtered data
show_no_filtered: false
# output flags data
show_flags: false
# search command configuration
search:
# search results limit
limit: 10
# search fields, keys or values
fields: "keys"
# use regex for search or not
regex: false
Save this file to config.yml
, remember it is not required and all settings can be specified by command line option. If same settings exists both in config file and options, the options value will override config file.
Dump Consul key values
Dump key and values
consul_utils dump -c config.yml
Specify directory
consul_utils dump -c config.yml -r test/test_root
Change output type, text (default), json or csv
consul_utils dump -c config.yml -r test/test_root -x json
Output to file instead of console
consul_utils dump -c config.yml -r test/test_root -o out.txt
Search in the Consul key values
Search keys that contains test
consul_utils search -c config.yml -q test
Search values that contains test
consul_utils search -c config.yml -q test -f values
Limit output result number, default 10
consul_utils search -c config.yml -q test --limit 5
Use regex to search
consul_utils search -c config.yml -q ^test$ -e
Copy key values from one place to another
Copy key values under source root to target root
consul_utils copy -c config.yml --root test/source --target-root test/target
Compare two key values
Compare two key values and all sub key values under two specified root This command will compare all values for keys with the same relative path.
consul_utils diff -c config.yml --root1 test1/aa --root2 test2/bb
Compare key values from two different host. If not specified, will use the default (host, port, scheme, token) settings.
consul_utils diff -c config.yml --host1 test1.consul.com --root1 test1/aa --host2 test2.consul.com --root2 test2/bb
Tests
Prepare a consul node at http://test.consul.com:8500 (you can change hosts file).
install pytest and run by pytest
pytest
Authors
Wu Wentao
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file consul_utils-0.1.3.tar.gz
.
File metadata
- Download URL: consul_utils-0.1.3.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21130cbc915e9fa4fb087824943f7b29a4e300657f1aa8b544fbf08c47ca35ed |
|
MD5 | 36805bbd65043dce4b9ebf333348bc5b |
|
BLAKE2b-256 | 83e38c5736fcfbeb0333653a0aa5dae4485880fcf797fccd05653f39b32602a4 |
File details
Details for the file consul_utils-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: consul_utils-0.1.3-py3-none-any.whl
- Upload date:
- Size: 12.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d937e3c4bac28d3003ada706d2510c5817b2d3f6f32d3eafe601ca73a7a65e43 |
|
MD5 | 7cec350d0473eba3e40f1ba6f10e358a |
|
BLAKE2b-256 | fed39c99a79752c772b3b3cb5ebd27b61abfec4b7d95bf8c1fef1ebe77d36106 |