Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
languagejson
{
    "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"
}

...