Static and Dynamic Analysis for nginx-amplify-agent Health Status
Project description
Setup
pip install nginx-amplify-agent-health-check
custom config file (in ini format):
[options]
heading=Amplify Agent Health Check Analysis
# Amplify
amplify_agent_path=/opt/nginx-amplify-agent
amplify_reqs_file=/packages/nginx-amplify-agent/requirements
amplify_conf_file=/etc/amplify-agent/agent.conf
amplify_log_file=/var/log/amplify-agent/agent.log
amplify_pid_file=/var/run/amplify-agent/amplify-agent.pid
# Nginx
nginx_all_confs_path=/etc/nginx
nginx_conf_file=/etc/nginx/nginx.conf
nginx_status_conf_file=/etc/nginx/conf.d/stub_status.conf
nginx_sites_available_conf_files=/etc/nginx/sites-available/*.conf
nginx_sites_enabled_conf_files=/etc/nginx/sites-enabled/*.conf
nginx_mime_types_file=/etc/nginx/mime.types
nginx_log_files=/var/log/nginx/*.log
nginx_pid_file=/var/run/nginx.pid
nginx_additional_metrics=[
'sn="$server_name"',
'rt=$request_time',
'ua="$upstream_addr"',
'us="$upstream_status"',
'ut="$upstream_response_time"',
'ul="$upstream_response_length"',
'cs=$upstream_cache_status'
]
# System
system_packages=[
'python', 'python-dev',
'git',
'util-linux', 'procps',
'curl', # 'wget',
'gcc', 'musl-dev', 'linux-headers'
]
system_find_package_command=['apk', 'info']
system_time_diff_max_allowance=80
Note: custom config file doesn’t need to have all the attributes of the original config file as it will only override the specified attributes. But it has to follow the ini formatting.
Usage
via cli interface:
amphc
cli options
usage: amphc [-h] [-V] [-v] [-d] [-c CONFIG_FILE]
[-x SKIP_METHODS [SKIP_METHODS ...] | -m METHODS [METHODS ...]]
Static and Dynamic Analysis for nginx-amplify-agent Health Status
optional arguments:
-h, --help show this help message and exit
-V, --version show program's version information and exit
-v, --verbose show all check logs
-d, --plain suppress decorating logs
-c CONFIG_FILE, --config CONFIG_FILE
set configuration file path (i.e. in ini format)
-x SKIP_METHODS [SKIP_METHODS ...], --skip SKIP_METHODS [SKIP_METHODS ...]
specify methods to skip running
-m METHODS [METHODS ...], --methods METHODS [METHODS ...]
specify methods to run
verification methods:
---------------------
1) verify_agent_log
2) verify_agent_ps
3) verify_agent_user
4) verify_all_packages
5) verify_dns_resolver
6) verify_metrics_collection
7) verify_ngx_config_files_access
8) verify_ngx_logs_read_access
9) verify_ngx_master_ps
10) verify_ngx_metrics
11) verify_ngx_stub_status
12) verify_outbound_tls_access
13) verify_proc_sys_access
14) verify_py_pkgs
15) verify_sys_pkgs
16) verify_sys_ps_access
17) verify_sys_time
via api interface:
import amplifyhealthcheck as amphc
amphc = amphc.configure(
config_file='./custom-config.cfg' # custom config file path in ini format
)
amphc.verify_agent_ps()
amphc.verify_agent_log()
amphc.verify_agent_user()
amphc.verify_ngx_master_ps()
amphc.verify_ngx_stub_status()
amphc.verify_ngx_logs_read_access()
amphc.verify_ngx_config_files_access()
amphc.verify_ngx_metrics()
amphc.verify_all_packages()
amphc.verify_sys_time()
amphc.verify_sys_ps_access()
amphc.verify_outbound_tls_access()
amphc.verify_proc_sys_access()
amphc.verify_dns_resolver()
amphc.verify_metrics_collection()
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
File details
Details for the file nginx-amplify-agent-health-check-0.1.6.tar.gz
.
File metadata
- Download URL: nginx-amplify-agent-health-check-0.1.6.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5672150fff1bf56ab7b1a49a156b7f6ddb2367884c0180f4ecbb7f4f086955ea |
|
MD5 | b6ee9ca96e406d05385bd700a6a55a1b |
|
BLAKE2b-256 | 62aad638251d153d637b6bb32cbadd358e7364bd308f05f37fbb16a004e25945 |