In a 8.1 module, we use this to create a custom audit profile type:
this.context = gatewayContext;
type = new AuditLogSplitterType();
this.context.getAuditManager().addAuditProfileType(type);
I don’t find any equivalent in 8.3 sdk ?
In a 8.1 module, we use this to create a custom audit profile type:
this.context = gatewayContext;
type = new AuditLogSplitterType();
this.context.getAuditManager().addAuditProfileType(type);
I don’t find any equivalent in 8.3 sdk ?
com.inductiveautomation.ignition.gateway.audit.AuditProfileType::createProfile
seems to be the solution for the create logic,
but I don’t find how to register the new AuditProfileType ???
Implement GatewayModuleHook::getExtensionPoints
, and return your implementation of AuditProfileType
with any others, if applicable.