Skip to content

Commit 8e2e203

Browse files
[system] fix CPU Usage on [Metrics System] Overview "hosts" tab (elastic#14482)
1 parent 60d399f commit 8e2e203

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

packages/system/changelog.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# newer versions go on top
2+
- version: "2.3.3"
3+
changes:
4+
- description: Fix CPU Usage on [Metrics System] Overview "hosts" tab.
5+
type: bugfix
6+
link: https://github.com/elastic/integrations/pull/14482
27
- version: "2.3.2"
38
changes:
49
- description: Update documentation to mention the requirements for reading Journald logs.

packages/system/kibana/dashboard/system-Metrics-system-overview.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@
490490
"dataType": "number",
491491
"filter": {
492492
"language": "kuery",
493-
"query": "\"system.process.cpu.total.norm.pct\": *"
493+
"query": "\"system.cpu.total.norm.pct\": *"
494494
},
495495
"isBucketed": false,
496496
"label": "CPU usage",
@@ -503,7 +503,7 @@
503503
},
504504
"reducedTimeRange": "15m",
505505
"scale": "ratio",
506-
"sourceField": "system.process.cpu.total.norm.pct"
506+
"sourceField": "system.cpu.total.norm.pct"
507507
}
508508
},
509509
"ignoreGlobalFilters": false,
@@ -533,16 +533,16 @@
533533
"meta": {
534534
"alias": null,
535535
"disabled": false,
536-
"field": "system.process.cpu.total.norm.pct",
536+
"field": "system.cpu.total.norm.pct",
537537
"index": "metrics-*",
538-
"key": "system.process.cpu.total.norm.pct",
538+
"key": "system.cpu.total.norm.pct",
539539
"negate": false,
540540
"type": "exists",
541541
"value": "exists"
542542
},
543543
"query": {
544544
"exists": {
545-
"field": "system.process.cpu.total.norm.pct"
545+
"field": "system.cpu.total.norm.pct"
546546
}
547547
}
548548
},

packages/system/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
format_version: 3.0.2
22
name: system
33
title: System
4-
version: "2.3.2"
4+
version: "2.3.3"
55
description: Collect system logs and metrics from your servers with Elastic Agent.
66
type: integration
77
categories:

0 commit comments

Comments
 (0)