on_agent_re_enable

Syntax

on_agent_re_enable(<agent>, <event>)

Description

Performs the specified actions when the NAE agent is re-enabled.

Parameters

<agent>

Specifies the agent that has the changed parameters.

Typically, this parameter is defined as the variable: self

<event>

Specifies a Python dictionary that contains the event information.

Typically, this parameter is defined as the variable: event

Usage

When an agent is disabled, it does not perform monitoring tasks. When an agent is re-enabled, it might not be in the correct state to perform its monitoring tasks. The Aruba Network Analytics Engine provides the on_agent_re_enable function to enable you to specify actions to perform to update an agent after it is re-enabled.

Example

def on_agent_re_enable(self, event):
    self.remove_alert_level()
    ActionCustomReport("Agent re-enabled")