Skip to content

Latest commit

 

History

History
263 lines (234 loc) · 9.56 KB

community.missing_collection.appd_event_module.rst

File metadata and controls

263 lines (234 loc) · 9.56 KB

community.missing_collection.appd_event

create application deployment events for appdynamics.

Version added: 0.4.0

The below requirements are needed on the host that executes this module.

  • requests
Parameter Choices/Defaults Comments
comment
string
Default:
""
provide a comment describing the event.
eventtype
string
Default:
"APPLICATION_DEPLOYMENT"
type of appdynamics event.
Only supported option APPLICATION_DEPLOYMENT.
host
string / required
hostname/ip of appdynamics controller.
example demo.appdynamics.com
id
string / required
provide either application name or application id.

aliases: application_id, application_name
output
string
Default:
"JSON"
provide a output in JSON format if any.
password
string / required
password of appdynamics controller.
port
string
Default:
"443"
port number of appdynamics controller.
scheme
string
    Choices:
  • http
  • https ←
scheme for appdynamics controller.
severity
string
    Choices:
  • INFO ←
  • WARN
  • ERROR
provide a severity level for the event.
summary
string / required
provide a summary describing the event.
user
string / required
username of appdynamics controller.

- name: create application deployment event to AppDynamics
  community.missing_collection.appd_event:
    scheme: 'https'
    host: 'demo.appdynamics.com'
    port: '443'
    user: 'testUser'
    password: 'testPassword'
    id: 'test_application'
    summary: 'new release of application 0.0.1'
    eventtype: 'APPLICATION_DEPLOYMENT'
    severity: 'INFO'
    comment: 'deployed by ansible automation'

Authors