chore: complete update
This commit is contained in:
33
.archive/Config/analytics.php
Normal file
33
.archive/Config/analytics.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
// Aktiviert oder deaktiviert das Analytics-Modul
|
||||
'enabled' => true,
|
||||
|
||||
// Automatisches Speichern nach Erreichen der Batch-Größe
|
||||
'auto_flush' => true,
|
||||
|
||||
// Anzahl der Events, die gesammelt werden, bevor sie gespeichert werden
|
||||
'batch_size' => 50,
|
||||
|
||||
// Storage-Backend ('file')
|
||||
'storage' => 'file',
|
||||
|
||||
// Speicherpfad für Analytics-Daten (relativ zum Datenverzeichnis)
|
||||
'storage_path' => __DIR__ . '/../data/analytics',
|
||||
|
||||
// Anonymisierung von persönlichen Daten
|
||||
'anonymize_ip' => true,
|
||||
|
||||
// Benutzerdefinierte Events, die getrackt werden sollen
|
||||
'track_events' => [
|
||||
'page_view',
|
||||
'error',
|
||||
'performance',
|
||||
'database',
|
||||
'http_request',
|
||||
'http_response',
|
||||
'user_login',
|
||||
'user_logout',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user