Inputs

  • alert_message: The alert message to print to the console

Outputs

This provider has no outputs

Authentication Parameters

This provider has no authentication

Connecting with the Provider

This provider doesn’t require any connection

Notes

No information yet, feel free to contribute it using the “Edit this page” link the buttom of the page

No information yet, feel free to contribute it using the “Edit this page” link the buttom of the page

Example

config = {
        "description": "Console Output Provider",
        "authentication": {},
}
provider = ProvidersFactory.get_provider(
    provider_id='mock', provider_type="console", provider_config=config
)
provider.notify(
    alert_message="Simple alert showing context with name: {name}".format(
        name="John Doe"
    )
)