Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
0b53c711
Commit
0b53c711
authored
May 28, 2013
by
Darryl Stoflet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding monit modules to start/stop/monitor/unmonitor process via monit
parent
dbfad567
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
146 additions
and
0 deletions
+146
-0
library/monitoring/monit
+146
-0
No files found.
library/monitoring/monit
0 → 100644
View file @
0b53c711
#!/usr/bin/python
# -*- coding: utf-8 -*-
# (c) 2013, Darryl Stoflet <stoflet@gmail.com>
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
DOCUMENTATION
=
'''
---
module: monit
short_description: Manage the state of a program monitored via Monit
description:
- Manage the state of a program monitored via I(Monit)
version_added: "1.2"
options:
name:
description:
- The name of the I(monit) program/process to manage
required: true
default: null
state:
description:
- The state of service
required: true
default: null
choices: [ "present", "started", "stopped", "restarted", "monitored", "unmonitored", "reloaded" ]
examples:
- code: "monit: name=httpd state=started"
description: Manage the state of program I(httpd) to be in I(started) state.
requirements: [ ]
author: Darryl Stoflet
'''
def
main
():
arg_spec
=
dict
(
name
=
dict
(
required
=
True
),
state
=
dict
(
required
=
True
,
choices
=
[
'present'
,
'started'
,
'restarted'
,
'stopped'
,
'monitored'
,
'unmonitored'
,
'reloaded'
])
)
module
=
AnsibleModule
(
argument_spec
=
arg_spec
,
supports_check_mode
=
True
)
name
=
module
.
params
[
'name'
]
state
=
module
.
params
[
'state'
]
MONIT
=
module
.
get_bin_path
(
'monit'
,
True
)
if
state
==
'reloaded'
:
if
module
.
check_mode
:
module
.
exit_json
(
changed
=
True
)
rc
,
out
,
err
=
module
.
run_command
(
'
%
s reload'
%
MONIT
)
module
.
exit_json
(
changed
=
True
,
name
=
name
,
state
=
state
)
rc
,
out
,
err
=
module
.
run_command
(
'
%
s summary | grep "Process
\'
%
s
\'
"'
%
(
MONIT
,
name
))
present
=
name
in
out
if
not
present
and
not
state
==
'present'
:
module
.
fail_json
(
msg
=
'
%
s process not presently configured with monit'
%
name
,
name
=
name
,
state
=
state
)
if
state
==
'present'
:
if
not
present
:
if
module
.
check_mode
:
module
.
exit_json
(
changed
=
True
)
module
.
run_command
(
'
%
s reload'
%
MONIT
,
check_rc
=
True
)
rc
,
out
,
err
=
module
.
run_command
(
'
%
s summary | grep
%
s'
%
(
MONIT
,
name
))
if
name
in
out
:
module
.
exit_json
(
changed
=
True
,
name
=
name
,
state
=
state
)
else
:
module
.
fail_json
(
msg
=
out
,
name
=
name
,
state
=
state
)
module
.
exit_json
(
changed
=
False
,
name
=
name
,
state
=
state
)
rc
,
out
,
err
=
module
.
run_command
(
'
%
s summary | grep
%
s'
%
(
MONIT
,
name
))
running
=
'Running'
in
out
if
running
and
(
state
==
'started'
or
state
==
'monitored'
):
module
.
exit_json
(
changed
=
False
,
name
=
name
,
state
=
state
)
if
running
and
state
==
'monitored'
:
module
.
exit_json
(
changed
=
False
,
name
=
name
,
state
=
state
)
if
running
and
state
==
'stopped'
:
if
module
.
check_mode
:
module
.
exit_json
(
changed
=
True
)
module
.
run_command
(
'
%
s stop
%
s'
%
(
MONIT
,
name
))
rc
,
out
,
err
=
module
.
run_command
(
'
%
s summary | grep
%
s'
%
(
MONIT
,
name
))
if
'Not monitored'
in
out
or
'stop pending'
in
out
:
module
.
exit_json
(
changed
=
True
,
name
=
name
,
state
=
state
)
module
.
fail_json
(
msg
=
out
)
if
running
and
state
==
'unmonitored'
:
if
module
.
check_mode
:
module
.
exit_json
(
changed
=
True
)
module
.
run_command
(
'
%
s unmonitor
%
s'
%
(
MONIT
,
name
))
rc
,
out
,
err
=
module
.
run_command
(
'
%
s summary | grep
%
s'
%
(
MONIT
,
name
))
if
'Not monitored'
in
out
:
module
.
exit_json
(
changed
=
True
,
name
=
name
,
state
=
state
)
module
.
fail_json
(
msg
=
out
)
elif
state
==
'restarted'
:
if
module
.
check_mode
:
module
.
exit_json
(
changed
=
True
)
module
.
run_command
(
'
%
s stop
%
s'
%
(
MONIT
,
name
))
rc
,
out
,
err
=
module
.
run_command
(
'
%
s start
%
s'
%
(
MONIT
,
name
))
if
'Initializing'
in
out
:
module
.
exit_json
(
changed
=
True
,
name
=
name
,
state
=
state
)
module
.
fail_json
(
msg
=
out
)
elif
not
running
and
state
==
'started'
:
if
module
.
check_mode
:
module
.
exit_json
(
changed
=
True
)
module
.
run_command
(
'
%
s start
%
s'
%
(
MONIT
,
name
))
rc
,
out
,
err
=
module
.
run_command
(
'
%
s summary | grep
%
s'
%
(
MONIT
,
name
))
if
'Initializing'
in
out
or
'start pending'
in
out
:
module
.
exit_json
(
changed
=
True
,
name
=
name
,
state
=
state
)
module
.
fail_json
(
msg
=
out
)
elif
not
running
and
state
==
'monitored'
:
if
module
.
check_mode
:
module
.
exit_json
(
changed
=
True
)
module
.
run_command
(
'
%
s monitor
%
s'
%
(
MONIT
,
name
))
rc
,
out
,
err
=
module
.
run_command
(
'
%
s summary | grep
%
s'
%
(
MONIT
,
name
))
if
'Initializing'
in
out
or
'start pending'
in
out
:
module
.
exit_json
(
changed
=
True
,
name
=
name
,
state
=
state
)
module
.
fail_json
(
msg
=
out
)
module
.
exit_json
(
changed
=
False
,
name
=
name
,
state
=
state
)
# this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment