profile_tasks.py 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # The MIT License (MIT)
  2. # Copyright (c) 2014 Jharrod LaFon
  3. # Permission is hereby granted, free of charge, to any person obtaining a copy of
  4. # this software and associated documentation files (the "Software"), to deal in
  5. # the Software without restriction, including without limitation the rights to
  6. # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  7. # the Software, and to permit persons to whom the Software is furnished to do so,
  8. # subject to the following conditions:
  9. # The above copyright notice and this permission notice shall be included in all
  10. # copies or substantial portions of the Software.
  11. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  13. # FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  14. # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  15. # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. '''
  18. A plugin for timing tasks
  19. This plugin records the time spent in each task.
  20. At the end of the playbook, it displays the time spent in the 10 slowest tasks.
  21. '''
  22. import time
  23. class CallbackModule(object):
  24. """
  25. A plugin for timing tasks
  26. """
  27. def __init__(self):
  28. self.stats = {}
  29. self.current = None
  30. # Reason: The is_conditional parameter is part of the Ansible plugin API
  31. # Status: permanently disabled
  32. # pylint: disable=unused-argument
  33. def playbook_on_task_start(self, name, is_conditional):
  34. """
  35. Logs the start of each task
  36. """
  37. if self.current is not None:
  38. # Record the running time of the last executed task
  39. self.stats[self.current] = time.time() - self.stats[self.current]
  40. # Record the start time of the current task
  41. self.current = name
  42. self.stats[self.current] = time.time()
  43. # Reason: The stats parameter is part of the Ansible plugin API
  44. # Status: permanently disabled
  45. # pylint: disable=unused-argument
  46. def playbook_on_stats(self, stats):
  47. """
  48. Prints the timings
  49. """
  50. # Record the timing of the very last task
  51. if self.current is not None:
  52. self.stats[self.current] = time.time() - self.stats[self.current]
  53. # Sort the tasks by their running time
  54. results = sorted(
  55. self.stats.items(),
  56. key=lambda value: value[1],
  57. reverse=True,
  58. )
  59. # Just keep the top 10
  60. results = results[:10]
  61. # Print the timings
  62. for name, elapsed in results:
  63. print(
  64. "{0:-<70}{1:->9}".format(
  65. '{0} '.format(name),
  66. ' {0:.02f}s'.format(elapsed),
  67. )
  68. )