...
Configurazione di un task che gira 1 volta a settimana il lunedì alle 23:30 ed esporta e cancella tutte le registrazioni con ts più vecchio di 3 mesi
Code Block | ||
---|---|---|
| ||
{ "enable" : true, "user" : "admin", "action" : "exportAndDelete", "blockSize" : 1000, "fileNamePattern" : "{macroactivity}_{tags.AGENT}", "format" : "archive", "destination" : { "type" : "fs", "path" : "temp/ExportDestination", "server" : "", "port" : "", "username" : "", "password" : "" }, "query" : "{}", "greaterThanInDays" : null, "lessThanInDays" : 90, "schedule" : "0 30 22 * * 1", "maxNumber" : null, "exportWithTags" : true, "name" : "Esportazione settimanale" } |
...