forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add simple plugin that times ansible-playbook runs.
- Loading branch information
1 parent
9ae0fb5
commit d2c83bf
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import os | ||
import datetime | ||
from datetime import datetime, timedelta | ||
|
||
|
||
class CallbackModule(object): | ||
""" | ||
This callback module tells you how long your plays ran for. | ||
""" | ||
|
||
start_time = datetime.now() | ||
|
||
def __init__(self): | ||
start_time = datetime.now() | ||
print "Timer plugin is active." | ||
|
||
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): | ||
end_time = datetime.now() | ||
timedelta = end_time - self.start_time | ||
print "Playbook run took %s days, %s hours, %s minutes, %s seconds" % (self.days_hours_minutes_seconds(timedelta)) | ||
|
||
|