diff options
| author | Fuwn <[email protected]> | 2026-01-19 18:37:16 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-19 18:37:16 -0800 |
| commit | db17158de7bd7b0a9656893c0c36c6b198b0d713 (patch) | |
| tree | ebc51b6c4ac52edf73612d37468076afbafe0d1b /config.example.yaml | |
| parent | fix: Preserve config formatting when updating reset flag (diff) | |
| download | kaze-db17158de7bd7b0a9656893c0c36c6b198b0d713.tar.xz kaze-db17158de7bd7b0a9656893c0c36c6b198b0d713.zip | |
feat: Add disable_ping_tooltips option to hide ping hover details
Add monitor-level option to disable hover tooltips on individual ping bars.
Can be set at group defaults or per-monitor. When enabled, visual appearance
remains unchanged but tooltips no longer appear on hover.
Diffstat (limited to 'config.example.yaml')
| -rw-r--r-- | config.example.yaml | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/config.example.yaml b/config.example.yaml index 50c116b..18e9dbc 100644 --- a/config.example.yaml +++ b/config.example.yaml @@ -56,12 +56,13 @@ groups: - name: "Web Services" # default_collapsed: false # Start collapsed (false = expanded by default) # show_group_uptime: true # Show aggregate uptime percentage (true by default) - # Group-level defaults (optional - apply to all monitors in this group unless overridden) - # defaults: - # interval: 30s - # timeout: 10s - # retries: 2 - # verify_ssl: true + # Group-level defaults (optional - apply to all monitors in this group unless overridden) + # defaults: + # interval: 30s + # timeout: 10s + # retries: 2 + # verify_ssl: true + # disable_ping_tooltips: false monitors: - name: "Website" type: https @@ -73,9 +74,10 @@ groups: expected_status: 200 # expected_content: "Welcome" # Check if response body contains this text verify_ssl: true - # hide_ssl_days: false # Hide SSL certificate days left from display - # round_response_time: false # Round response time to nearest second - # round_uptime: false # Round uptime percentage (e.g., 99.99% → 100%) + # hide_ssl_days: false # Hide SSL certificate days left from display + # round_response_time: false # Round response time to nearest second + # round_uptime: false # Round uptime percentage (e.g., 99.99% → 100%) + # disable_ping_tooltips: false # Disable hover tooltips on ping history bars - name: "API" type: https @@ -150,6 +152,7 @@ incidents: # timeout: duration - Default timeout for all monitors in group # retries: int - Default retry attempts for all monitors in group # verify_ssl: bool - Default SSL verification for all monitors in group +# disable_ping_tooltips: bool - Default tooltip behavior for all monitors in group # Note: Individual monitors can override these defaults # # Common fields for all monitor types: @@ -165,6 +168,7 @@ incidents: # hide_ssl_days: bool - Hide SSL/TLS certificate days left from display (default: false) # round_response_time: bool - Round response time to nearest second (default: false) # round_uptime: bool - Round uptime percentage to whole number (e.g., 99.99% → 100%) (default: false) +# disable_ping_tooltips: bool - Disable hover tooltips on ping history bars (default: false, or group default) # # HTTP/HTTPS specific fields: # expected_status: int - Expected HTTP status code (default: 200) |