ANALYTICS_EVENT_CLEANUP_START
interface AnalyticsEventCleanupStartEvent { category: "analytics"; data: { defaultRetentionPeriodDays: number; tenantRetentionPolicy: { [key: string]: { enabled: boolean; retentionPeriod: { unit: string; value: number }; }; }; }; id: string; requestId: string; requestIp: string | undefined; tenantId: string; timestamp: number; type: "ANALYTICS_EVENT_CLEANUP_START"; userAgent: string | undefined; version: "1";} interface AnalyticsEventCleanupStartEventSanitised { category: "analytics"; data: { defaultRetentionPeriodDays: number; tenantRetentionPolicy: { [key: string]: { enabled: boolean; retentionPeriod: { unit: string; value: number }; }; }; }; id: string; requestId: string; requestIp: string | undefined; tenantId: string; timestamp: number; type: "ANALYTICS_EVENT_CLEANUP_START"; userAgent: string | undefined; version: "1";}
Properties
category
category: "analytics"
Sanitisation Level DATAdata
data: {
defaultRetentionPeriodDays: number;
tenantRetentionPolicy: {
[key: string]: {
enabled: boolean;
retentionPeriod: { unit: string; value: number };
};
};
}
requestId
requestId: string
requestIp
requestIp: string | undefined
tenantId
tenantId: string
timestamp
timestamp: number
type
type: "ANALYTICS_EVENT_CLEANUP_START"
userAgent
userAgent: string | undefined