Engage Engine API
1.244.9084
|
Engine Policy Timeline configuration. More...
#include <ConfigurationObjects.h>
Inherits AppConfigurationObjects::ConfigurationObjectBase.
Public Member Functions | |
void | clear () |
Public Member Functions inherited from AppConfigurationObjects::ConfigurationObjectBase | |
virtual void | initForDocumenting () |
virtual std::string | toString () |
virtual bool | isDocumenting () const |
Public Attributes | |
bool | enabled |
[Optional, Default: true] Specifies if Time Lines are enabled by default. | |
std::string | storageRoot |
Specifies where the timeline recordings will be stored physically. | |
int | maxStorageMb |
Specifies the maximum storage space to use. | |
long | maxEventAgeSecs |
Maximum age of an event after which it is to be erased. | |
int | maxEvents |
Maximum number of events to be retained. | |
long | groomingIntervalSecs |
Interval at which events are to be checked for age-based grooming. | |
SecurityCertificate | security |
The certificate to use for signing the recording. | |
long | autosaveIntervalSecs |
[Default 5] Interval at which events are to be saved from memory to disk (a slow operation) | |
bool | disableSigningAndVerification |
[Default false] If true, prevents signing of events - i.e. no anti-tanpering features will be available | |
bool | ephemeral |
[Default false] If true, recordings are automatically purged when the Engine is shut down and/or reinitialized. | |
Public Attributes inherited from AppConfigurationObjects::ConfigurationObjectBase | |
nlohmann::json | _attached |
Additional Inherited Members | |
Protected Attributes inherited from AppConfigurationObjects::ConfigurationObjectBase | |
bool | _documenting |
Engine Policy Timeline configuration.
Timelines are used to record audio for instant replay and archival purposes. The audio files contain "anti tampering" features.
Helper C++ class to serialize and de-serialize EnginePolicyTimelines JSON
Example:
Definition at line 6764 of file ConfigurationObjects.h.
|
inline |
Definition at line 6811 of file ConfigurationObjects.h.
|
inline |
Definition at line 6816 of file ConfigurationObjects.h.
long AppConfigurationObjects::EnginePolicyTimelines::autosaveIntervalSecs |
[Default 5] Interval at which events are to be saved from memory to disk (a slow operation)
Definition at line 6803 of file ConfigurationObjects.h.
bool AppConfigurationObjects::EnginePolicyTimelines::disableSigningAndVerification |
[Default false] If true, prevents signing of events - i.e. no anti-tanpering features will be available
Definition at line 6806 of file ConfigurationObjects.h.
bool AppConfigurationObjects::EnginePolicyTimelines::enabled |
[Optional, Default: true] Specifies if Time Lines are enabled by default.
Certain time line settings can be overridden at a per group level using the ConfigurationObjects::GroupTimeline configuration.
Definition at line 6776 of file ConfigurationObjects.h.
bool AppConfigurationObjects::EnginePolicyTimelines::ephemeral |
[Default false] If true, recordings are automatically purged when the Engine is shut down and/or reinitialized.
Definition at line 6809 of file ConfigurationObjects.h.
long AppConfigurationObjects::EnginePolicyTimelines::groomingIntervalSecs |
Interval at which events are to be checked for age-based grooming.
Definition at line 6791 of file ConfigurationObjects.h.
long AppConfigurationObjects::EnginePolicyTimelines::maxEventAgeSecs |
Maximum age of an event after which it is to be erased.
Definition at line 6785 of file ConfigurationObjects.h.
int AppConfigurationObjects::EnginePolicyTimelines::maxEvents |
Maximum number of events to be retained.
Definition at line 6788 of file ConfigurationObjects.h.
int AppConfigurationObjects::EnginePolicyTimelines::maxStorageMb |
Specifies the maximum storage space to use.
Definition at line 6782 of file ConfigurationObjects.h.
SecurityCertificate AppConfigurationObjects::EnginePolicyTimelines::security |
The certificate to use for signing the recording.
This is part of the anti tampering feature where the certificate and it's private key are used to digitally sign the event. The public portion of the certificate is added to the event file for later verification.
Definition at line 6800 of file ConfigurationObjects.h.
std::string AppConfigurationObjects::EnginePolicyTimelines::storageRoot |
Specifies where the timeline recordings will be stored physically.
Definition at line 6779 of file ConfigurationObjects.h.