Compare commits

..

4 commits
v0.5 ... master

Author SHA1 Message Date
Lance Edgar 7ec8690d72 build: ignore some files 2024-09-13 18:24:34 -05:00
Lance Edgar dec2561db2 Improve error handling when remote check fails 2022-01-28 17:02:36 -06:00
Lance Edgar 602848cd9d Update changelog 2019-10-14 20:25:55 -05:00
Lance Edgar e51a9ff678 Add the check_systemd_service command 2019-10-14 20:25:01 -05:00
5 changed files with 19 additions and 5 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*~

View file

@ -5,6 +5,10 @@ All notable changes to rattail-shinken will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [0.6] - 2019-10-14
### Changed
- Add the `check_systemd_service` command.
## [0.5] - 2018-12-12
### Changed
- Add `check_supervisor_process` command.

View file

@ -108,7 +108,11 @@ if __name__ == '__main__':
# Ok now connect, and try to get values for memory
client = schecks.connect(hostname, port, ssh_key_file, passphrase, user)
result, exitcode = execute_check(client, check_path)
print result
sys.exit(exitcode)
result = execute_check(client, check_path)
if result is False:
print("failed to execute remote check!")
sys.exit(3)
else:
output, exitcode = result
print(output)
sys.exit(exitcode)

View file

@ -9,3 +9,8 @@ define command {
command_name check_supervisor_process
command_line $PLUGINSDIR$/check_rattail_daemon_by_ssh.py -H $HOSTADDRESS$ -p $_HOSTSSH_PORT$ -u $_HOSTSSH_USER$ -i $_HOSTSSH_KEY$ -P "$_HOSTSSH_KEY_PASSPHRASE$" -r "check-supervisor-process $ARG1$"
}
define command {
command_name check_systemd_service
command_line $PLUGINSDIR$/check_rattail_daemon_by_ssh.py -H $HOSTADDRESS$ -p $_HOSTSSH_PORT$ -u $_HOSTSSH_USER$ -i $_HOSTSSH_KEY$ -P "$_HOSTSSH_KEY_PASSPHRASE$" -r "check-systemd-service $ARG1$"
}

View file

@ -1,7 +1,7 @@
{
"name": "rattail",
"types": ["pack"],
"version": "0.5",
"version": "0.6",
"homepage": "https://rattailproject.org/",
"author": "Lance Edgar",
"contributors": [