pip install git+ssh://git@github.com/CSCfi/pyops.gitSee command help with pyops-downtime --help.
PyOPS expects to find the following variables:
prod_ops_base-- The REST API endpoint of your OpsView-instanceprod_ops_user-- username to be used to login to opsviewprod_ops_pass-- password for the user
Can be setup with following:
export prod_ops_base="https://<your-opsview-server>/opsview/rest/"
export prod_ops_user="$USER"
read -s prod_ops_pass && export prod_ops_pass # Read OpsView password from stdinOptional arguments:
-e ENDTIME, --endtime ENDTIME
Downtime end time in an opsview format (e.g. +10m, +2d or '2018-08-10 15:00').
-d, --delete Delete downtimes instead of adding them.
-c COMMENT, --comment COMMENT
Comment for the downtime
-s STARTTIME, --starttime STARTTIME
Start time in an opsview format ('2018-08-10 13:00'). Defaults to 'now'
-g, --group Interpret the host list as a list of hostgroup names,
and apply the downtime to all the hosts in the groups.
# Individual nodes
pyops-downtime -e +1d -c "Server maintenance" testserver1 testserver2
## Delete
pyops-downtime -d testserver1 testserver2
# A named group of nodes
pyops-downtime -e +2h -c "Server maintenance" -g "My Monitoring Group"
pyops-downtime -d -g "My Monitoring Group"Example scripts for inspiration can be found from ./examples/.
Copy and edit as needed