Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1057874
[monitoring] Rewrite CPU usage rule to not use histogram (#116128)
miltonhultgren Jun 8, 2023
7b4768f
[CI] Auto-commit changed files from 'node scripts/lint_ts_projects --…
kibanamachine Jun 8, 2023
4ccea19
Merge branch 'main' of github.com:elastic/kibana into 116128-cpu-usag…
miltonhultgren Jun 12, 2023
70df469
Add archive with test data
miltonhultgren Jun 13, 2023
4a70273
Merge branch 'main' of github.com:elastic/kibana into 116128-cpu-usag…
miltonhultgren Jun 13, 2023
374fa6d
Merge branch '116128-cpu-usage-rule-rewrite' of github.com:miltonhult…
miltonhultgren Jun 13, 2023
cb09ed3
Remove reference to pipeline in archive
miltonhultgren Jun 15, 2023
eecb4c6
Update unit tests
miltonhultgren Jun 15, 2023
dcbdb66
Merge branch 'main' of github.com:elastic/kibana into 116128-cpu-usag…
miltonhultgren Jun 15, 2023
a5e8490
Merge branch 'main' into 116128-cpu-usage-rule-rewrite
miltonhultgren Jun 19, 2023
5645756
Merge branch 'main' of github.com:elastic/kibana into 116128-cpu-usag…
miltonhultgren Jun 26, 2023
ef2ac03
Detect when limits change during lookback period
miltonhultgren Jun 26, 2023
e4e1bc7
Merge branch 'main' of github.com:elastic/kibana into 116128-cpu-usag…
miltonhultgren Jun 27, 2023
98bc2a7
Improve error handling and messaging
miltonhultgren Jun 27, 2023
fd09d84
Alert if limits are found when not expected
miltonhultgren Jun 29, 2023
ddfcfdd
Merge branch 'main' of github.com:elastic/kibana into 116128-cpu-usag…
miltonhultgren Jun 29, 2023
296efb6
Fix tests
miltonhultgren Jun 29, 2023
ccb4998
Merge branch 'main' of github.com:elastic/kibana into 116128-cpu-usag…
miltonhultgren Jun 29, 2023
2895d90
Fix translations
miltonhultgren Jun 30, 2023
0e71fc9
Merge branch 'main' of github.com:elastic/kibana into 116128-cpu-usag…
miltonhultgren Jun 30, 2023
1b0e9e2
Merge branch 'main' of github.com:elastic/kibana into 116128-cpu-usag…
miltonhultgren Jul 5, 2023
ed87318
Fix some review comments
miltonhultgren Jul 5, 2023
06a9de9
Update tests
miltonhultgren Jul 6, 2023
e21ef38
Merge branch 'main' into 116128-cpu-usage-rule-rewrite
miltonhultgren Jul 6, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions x-pack/plugins/monitoring/common/types/alerts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ export interface AlertNodeStats {
}

export interface AlertCpuUsageNodeStats extends AlertNodeStats {
cpuUsage: number;
containerUsage: number;
containerPeriods: number;
containerQuota: number;
cpuUsage?: number;
limitsChanged?: boolean;
missingLimits?: boolean;
unexpectedLimits?: boolean;
}

export interface AlertThreadPoolRejectionsStats {
Expand Down
Loading