wti.remote.cpm_metering lookup – Get Power and Current data from WTI OOB/Combo and PDU devices
Note
This lookup plugin is part of the wti.remote collection (version 1.0.5).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install wti.remote
.
To use it in a playbook, specify: wti.remote.cpm_metering
.
New in wti.remote 2.7.0
Synopsis
Get Power and Current data from WTI OOB/Combo and PDU devices
Terms
Parameter |
Comments |
---|---|
This is the Action to send the module. Choices:
|
Keyword parameters
This describes keyword parameters of the lookup. These are the values key1=value1
, key2=value2
and so on in the following
examples: lookup('wti.remote.cpm_metering', key1=value1, key2=value2, ...)
and query('wti.remote.cpm_metering', key1=value1, key2=value2, ...)
Parameter |
Comments |
---|---|
This is the Password of the WTI device to send the module. |
|
This is the URL of the WTI device to send the module. |
|
This is the Username of the WTI device to send the module. |
|
End date of the range to look for power data |
|
Start date of the range to look for power data |
|
Designates to use an https connection or http connection. Choices:
|
|
Flag to control if the lookup will observe HTTP proxy environment variables when present. Choices:
|
|
If false, SSL certificates will not be validated. This should only be used on personally controlled sites using self-signed certificates. Choices:
|
Notes
Note
When keyword and positional parameters are used together, positional parameters must be listed before keyword parameters:
lookup('wti.remote.cpm_metering', term1, term2, key1=value1, key2=value2)
andquery('wti.remote.cpm_metering', term1, term2, key1=value1, key2=value2)
Examples
# Get Power data
- name: Get Power data for a given WTI device
- debug:
var: lookup('cpm_metering',
'getpower',
validate_certs=true,
use_https=true,
cpm_url='rest.wti.com',
cpm_username='restpower',
cpm_password='restfulpowerpass12')
# Get Current data
- name: Get Current data for a given WTI device
- debug:
var: lookup('cpm_metering',
'getcurrent',
validate_certs=true,
use_https=true,
cpm_url='rest.wti.com',
cpm_username='restpower',
cpm_password='restfulpowerpass12')
# Get Power data for a date range
- name: Get Power data for a given WTI device given a certain date range
- debug:
var: lookup('cpm_metering',
'getpower',
validate_certs=true,
use_https=true,
cpm_url='rest.wti.com',
cpm_username='restpower',
cpm_password='restfulpowerpass12',
startdate='08-12-2018'
enddate='08-14-2018')
Return Value
Key |
Description |
---|---|
The output JSON returned from the commands sent Returned: always |