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
d149ea52
Commit
d149ea52
authored
Jun 29, 2015
by
Brian Coca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ported timer.py callback to v2
parent
a41caf72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
lib/ansible/plugins/callback/timer.py
+35
-0
No files found.
lib/ansible/plugins/callback/timer.py
0 → 100644
View file @
d149ea52
import
os
import
datetime
from
datetime
import
datetime
,
timedelta
from
ansible.plugins.callback
import
CallbackBase
class
CallbackModule
(
CallbackBase
):
"""
This callback module tells you how long your plays ran for.
"""
CALLBACK_VERSION
=
2.0
CALLBACK_TYPE
=
'aggregate'
start_time
=
datetime
.
now
()
def
__init__
(
self
,
display
):
super
(
CallbackModule
,
self
)
.
__init__
(
display
)
start_time
=
datetime
.
now
()
self
.
_display
.
warning
(
"Timerv2 plugin is active from included callbacks."
)
def
days_hours_minutes_seconds
(
self
,
timedelta
):
minutes
=
(
timedelta
.
seconds
//
60
)
%
60
r_seconds
=
timedelta
.
seconds
-
(
minutes
*
60
)
return
timedelta
.
days
,
timedelta
.
seconds
//
3600
,
minutes
,
r_seconds
def
playbook_on_stats
(
self
,
stats
):
self
.
v2_playbook_on_stats
(
stats
)
def
v2_playbook_on_stats
(
self
,
stats
):
end_time
=
datetime
.
now
()
timedelta
=
end_time
-
self
.
start_time
self
.
_display
.
display
(
"Playbook run took
%
s days,
%
s hours,
%
s minutes,
%
s seconds"
%
(
self
.
days_hours_minutes_seconds
(
timedelta
)))
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