Notice 조건과 원격 로그 필터 보강

This commit is contained in:
seo
2026-07-26 01:36:07 +09:00
parent 58a81420d1
commit a42b6d7df7
5 changed files with 191 additions and 10 deletions
+6
View File
@@ -172,6 +172,12 @@ function setting_definitions(): array
'notice.log_during_alert' => ['group' => 'notice', 'label' => 'Alert 유지 중 반복 기록', 'type' => 'boolean', 'default' => 0],
'notice.log_interval_seconds' => ['group' => 'notice', 'label' => 'Alert 반복 기록 간격', 'type' => 'number', 'default' => 300, 'min' => 30, 'max' => 3600, 'step' => 30, 'unit' => '초'],
'notice.downward_only_process_hide' => ['group' => 'notice', 'label' => '하강 변화 원인 후보 숨김', 'type' => 'boolean', 'default' => 1],
'notice.low_voltage_repeated' => ['group' => 'notice', 'label' => '저전압 반복 알림', 'type' => 'boolean', 'default' => 1],
'notice.throttling_repeated' => ['group' => 'notice', 'label' => '스로틀링 반복 알림', 'type' => 'boolean', 'default' => 1],
'notice.disk_percent_threshold' => ['group' => 'notice', 'label' => '디스크 사용률 알림 기준', 'type' => 'number', 'default' => 90, 'min' => 50, 'max' => 100, 'step' => 1, 'unit' => '%'],
'notice.network_quality_window_seconds' => ['group' => 'notice', 'label' => '네트워크 품질 알림 판정창', 'type' => 'number', 'default' => 600, 'min' => 60, 'max' => 7200, 'step' => 30, 'unit' => '초'],
'notice.network_error_threshold' => ['group' => 'notice', 'label' => '네트워크 오류 알림 기준', 'type' => 'number', 'default' => 1, 'min' => 0, 'max' => 1000, 'step' => 1, 'unit' => '개'],
'notice.network_drop_threshold' => ['group' => 'notice', 'label' => '네트워크 드롭 알림 기준', 'type' => 'number', 'default' => 5000, 'min' => 0, 'max' => 100000, 'step' => 10, 'unit' => '개'],
'display.process_limit' => ['group' => 'display', 'label' => '프로세스 후보 표시 수', 'type' => 'number', 'default' => 6, 'min' => 1, 'max' => 30, 'step' => 1, 'unit' => '개'],
'display.custom_service_log_lines' => ['group' => 'display', 'label' => '사용자 서비스 로그 줄 수', 'type' => 'number', 'default' => 500, 'min' => 1, 'max' => 500, 'step' => 10, 'unit' => '줄'],
'display.custom_service_cache_seconds' => ['group' => 'display', 'label' => '사용자 서비스 캐시 시간', 'type' => 'number', 'default' => 5, 'min' => 1, 'max' => 60, 'step' => 1, 'unit' => '초'],