HL - Host List, a simple flexible fuzzy search/execute tool for lists of hosts
Project description
HL - a simple flexible fuzzy host search/execute
HL (Host List) provides omni-box style query interface (inspired by next to any modern browser). HL uses easy to understand weighted fuzzy-matching over hierarchical host lists. Things considered in full-text matching process are project name, env (prod, qa, dev, etc.), tags, ports and FQDN itself.
Note that what defines project name, or environment, etc. is your own arbitrary convention and they all work the same in HL. In reality, HL accepts any hierarchical classification with each level considered as a tag. Upper classification tags have proportionally more weight then any other below, this property is used to disambiguate fuzzy string matches.
Installation
pip install --user hl
Example
Imaginary config for simple project with API and DBs, having 2 environments - staging on AWS and production on bare metal in 2 DCs. Note that admins are funky and DB have their own unique and inconsistent names + different ports, that we want to classify properly our with tags.
# our-project.yml:
---
prod:
api:
us-east-dc:
hosts: api-[0-4]-east-prod.our-company.cloud
ports:
http: 8080
us-west-dc:
hosts: api-[0-4]-west-prod.our-company.cloud
ports:
http: 8080
db:
us-east-dc:
# list of host patterns is acceptable
hosts:
- ricky-the-great.our-company.cloud
- mikky-the-malicious.our-company.cloud
ports:
postgres: 5432
us-east-dc:
# list of different host entries as well
- hosts: east-mcgram-db.our-company.cloud
ports:
postgres: 5432
- hosts: east-paul-db.our-company.cloud
ports:
postgres: 6432
qa:
aws:
api:
hosts: api-[0-4]-aws-staging.ec2.cloud
ports:
http: 8080
db:
hosts: db-aws-staging.ec2.cloud
ports:
postgres: 5432
Enter hl
tool:
hl aws
Algorithm
Algorithm is simple (subject to change) - first we traverse the graph of host patterns and consider each tag as a token inversly weighted by depth (the deeper, the less weight). Then we apply sensible tokenization of hostname (split by '-', '_' and '.'), each token gets minimal weight. The result is then merged tags and hostname tokens.
Query is tokenized in the same way as hostnames. After that the two frequency dictionaries are multipled like sparse vectors, to minimize sharp effect of repeated words, weights in query is smoothed by sigmoid (this will likely change in the future).
Next step is to use trigramms or similar to fix typos in query and still find closest token to match.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file hl-0.2.0.tar.gz
.
File metadata
- Download URL: hl-0.2.0.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2197fa60b89daff9ca405e78738aa30a256fa52877cdd0b63700cd6cf8722a9d |
|
MD5 | c18fe9ff8fb7d7cd2c39418c96e0bd8e |
|
BLAKE2b-256 | 93832640f9f45e0a280ef183176647f421403e6b7aa6d5f69b79dd75d976143c |