2017-01-05 21:38:36 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016 Ansible RedHat, Inc
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
2017-01-05 21:38:36 +00:00
|
|
|
|
2017-08-16 03:16:38 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
2017-03-14 16:07:22 +00:00
|
|
|
'status': ['preview'],
|
|
|
|
'supported_by': 'community'}
|
|
|
|
|
2017-01-05 21:38:36 +00:00
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
author: "Brian Coca (@bcoca)"
|
|
|
|
module: set_stats
|
|
|
|
short_description: Set stats for the current ansible run
|
|
|
|
description:
|
|
|
|
- This module allows setting/accumulating stats on the current ansible run, either per host of for all hosts in the run.
|
2017-06-26 15:26:53 +00:00
|
|
|
- This module is also supported for Windows targets.
|
2017-01-05 21:38:36 +00:00
|
|
|
options:
|
|
|
|
data:
|
|
|
|
description:
|
|
|
|
- A dictionary of which each key represents a stat (or variable) you want to keep track of
|
|
|
|
required: true
|
|
|
|
per_host:
|
|
|
|
description:
|
|
|
|
- boolean that indicates if the stats is per host or for all hosts in the run.
|
|
|
|
required: no
|
|
|
|
default: no
|
|
|
|
aggregate:
|
|
|
|
description:
|
|
|
|
- boolean that indicates if the provided value is aggregated to the existing stat C(yes) or will replace it C(no)
|
|
|
|
required: no
|
|
|
|
default: yes
|
2017-06-26 15:26:53 +00:00
|
|
|
notes:
|
|
|
|
- This module is also supported for Windows targets.
|
2017-06-29 20:29:12 +00:00
|
|
|
- In order for custom stats to be displayed, you must set C(show_custom_stats) in C(ansible.cfg) or C(ANSIBLE_SHOW_CUSTOM_STATS) to C(true).
|
2017-01-05 21:38:36 +00:00
|
|
|
version_added: "2.3"
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
# Aggregating packages_installed stat per host
|
|
|
|
- set_stats:
|
|
|
|
data:
|
|
|
|
packages_installed: 31
|
|
|
|
|
|
|
|
# Aggregating random stats for all hosts using complex arguments
|
|
|
|
- set_stats:
|
|
|
|
data:
|
|
|
|
one_stat: 11
|
|
|
|
other_stat: "{{ local_var * 2 }}"
|
|
|
|
another_stat: "{{ some_registered_var.results | map(attribute='ansible_facts.some_fact') | list }}"
|
|
|
|
per_host: no
|
|
|
|
|
|
|
|
|
|
|
|
# setting stats (not aggregating)
|
|
|
|
- set_stats:
|
|
|
|
data:
|
|
|
|
the_answer: 42
|
|
|
|
aggregate: no
|
|
|
|
'''
|