feat: Implementazione completa sistema schedulazione con intervalli personalizzati
- Aggiunto supporto schedulazione con intervalli flessibili (secondi/minuti/ore/giorni/settimane/mesi) - Esteso modello ProfileSchedule con campi IntervalValue e IntervalUnit - Ottimizzato ScheduledJobService per controlli ogni 30s con esecuzione parallela - Implementata interfaccia UI completa con anteprima real-time in italiano - Aggiunta migrazione database AddIntervalSchedulingFields - Implementati metodi calcolo NextExecutionTime per intervalli - Aggiunta gestione tracking anti-duplicati e cleanup automatico - Creata documentazione completa (6 file, 2500+ righe) Modifiche tecniche: - ProfileSchedule.cs: Nuovi campi e metodi CalculateNextInterval/GetScheduleDescription - ScheduledJobService.cs: Ridotto check interval a 30s, aggiunto parallel processing - ProfileScheduleService.cs: Supporto calcolo intervalli in UpdateNextExecutionTimeAsync - Scheduling.razor: Aggiunta sezione UI per configurazione intervalli - Scheduling.razor.cs: Implementato GetIntervalPreview() e gestione stato campi
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information",
|
||||
"Data_Coupler.BackgroundServices": "Information",
|
||||
"System.Net.Http.HttpClient": "Warning"
|
||||
},
|
||||
"EventLog": {
|
||||
"LogLevel": {
|
||||
"Default": "Warning",
|
||||
"Data_Coupler": "Information"
|
||||
}
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
"Urls": "http://*:7550",
|
||||
"WindowsService": {
|
||||
"ServiceName": "DataCouplerService",
|
||||
"DisplayName": "Data Coupler Service",
|
||||
"Description": "Servizio per l'integrazione e trasferimento dati multi-platform"
|
||||
},
|
||||
"Kestrel": {
|
||||
"Limits": {
|
||||
"KeepAliveTimeout": "00:10:00",
|
||||
"RequestHeadersTimeout": "00:05:00",
|
||||
"MaxConcurrentConnections": 100,
|
||||
"MaxConcurrentUpgradedConnections": 100
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user