File tree Expand file tree Collapse file tree 2 files changed +59
-4
lines changed
resources/sysdig-admission-controller Expand file tree Collapse file tree 2 files changed +59
-4
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,16 @@ The Admission Controller is not receiving Kubernetes Audit events.
66Kubernetes Audit events is being throttled.
77
88## [ Sysdig Admission Controller] Scanning Events Throttling
9- Scanning events is being throttled.
9+ Scanning events is being throttled.
10+
11+ ## [ Sysdig Admission Controller] Inline Scanning Throttling
12+ Scanning events is being throttled.
13+
14+ ## [ Sysdig Admission Controller] High Error Rate In Scan Status From Backend
15+ High Error Rate In Scan Status From Backend.
16+
17+ ## [ Sysdig Admission Controller] High Error Rate In Scan Report From Backend
18+ High Error Rate In Scan Report From Backend.
19+
20+ ## [ Sysdig Admission Controller] High Error Rate In Image Scan
21+ High Error Rate In Image Scan.
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ configurations:
2626 ) > 32
2727 for: 15m
2828 labels:
29- severity: Medium
29+ severity: medium
3030 annotations:
3131 summary: Kubernetes Audit events is being throttled.
3232 - alert: "[Sysdig Admission Controller] Scanning Events Throttling"
@@ -36,7 +36,50 @@ configurations:
3636 ) > 32
3737 for: 15m
3838 labels:
39- severity: Medium
39+ severity: medium
4040 annotations:
4141 summary: Scanning events is being throttled.
42-
42+ - alert: "[Sysdig Admission Controller] Inline Scanning Throttling"
43+ expr: |
44+ sum(queue_length) > 0
45+ for: 15m
46+ labels:
47+ severity: medium
48+ annotations:
49+ summary: The inline scanning queue is not empty for a long time.
50+ - alert: "[Sysdig Admission Controller] High Error Rate In Scan Status From Backend"
51+ expr: |
52+ sum
53+ ( rate(scanner_scan_status_error_from_backend_count[5m])
54+ / (rate(scanner_scan_status_retrieved_from_backend_count[5m])
55+ + rate(scanner_scan_status_error_from_backend_count[5m]))
56+ ) > 0.15
57+ for: 15m
58+ labels:
59+ severity: high
60+ annotations:
61+ summary: High Error Rate In Scan Status From Backend.
62+ - alert: "[Sysdig Admission Controller] High Error Rate In Scan Report From Backend"
63+ expr: |
64+ sum
65+ ( rate(scanner_scan_report_error_from_backend_count[5m])
66+ / (rate(scanner_scan_report_retrieved_from_backend_count[5m])
67+ + rate(scanner_scan_report_error_from_backend_count[5m]))
68+ ) > 0.15
69+ for: 15m
70+ labels:
71+ severity: high
72+ annotations:
73+ summary: High Error Rate In Scan Report From Backend.
74+ - alert: "[Sysdig Admission Controller] High Error Rate In Image Scan"
75+ expr: |
76+ sum
77+ ( rate(scanner_scan_errors[5m])
78+ / (rate(scanner_scan_success[5m])
79+ + rate(scanner_scan_errors[5m]))
80+ ) > 0.15
81+ for: 15m
82+ labels:
83+ severity: high
84+ annotations:
85+ summary: High Error Rate In Image Scan.
You can’t perform that action at this time.
0 commit comments