![]() ![]() |
LoriotPro
scripting documentation |
![]() ![]() ![]() |
![]() |
LoriotPro has extended the LUA sripting language by providing its own LUA libraries. The new functions provided are dedicated to the creation of monitoring and SNMP automation application.
Syntax
value = lp.AckEvent(event_number)
Description
The LUA AckEvent function performs an acknowledge of a Loriotpro event. The list of events received can be displayed in the event log.
Parameters
event_number - the event number
Warning ! All the events with that reference number will be acknowledged.
Return Values
value : 1 if operation successful
Return nil if an error occurs
Example
Le logiciel reçoit des événements 600 que nous allons acquitter avec le script suivant :
lp.AckEvent(600);
![]() |
|