Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new metrics to CPU metricset #4969

Merged
merged 2 commits into from
Aug 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ https://github.com/elastic/beats/compare/v6.0.0-beta1...master[Check the HEAD di
- Support `npipe` protocol (Windows) in Docker module. {pull}4751[4751]
- Added missing mongodb configuration file to the `modules.d` folder. {pull}4870[4870]
- Fix wrong MySQL CRUD queries timelion visualization {pull}4857[4857]
- Add new metrics to CPU metricsset {pull}4969[4969]

*Packetbeat*

Expand Down
20 changes: 20 additions & 0 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -8543,6 +8543,16 @@ format: percent
The percentage of CPU time spent in involuntary wait by the virtual CPU while the hypervisor was servicing another processor. Available only on Unix.


[float]
=== `system.cpu.total.pct`

type: scaled_float

format: percent

The percentage of CPU time spent in non-idle state.


[float]
=== `system.cpu.user.norm.pct`

Expand Down Expand Up @@ -8623,6 +8633,16 @@ format: percent
The percentage of CPU time spent in involuntary wait by the virtual CPU while the hypervisor was servicing another processor. Available only on Unix.


[float]
=== `system.cpu.total.norm.pct`

type: scaled_float

format: percent

The percentage of CPU time spent in non-idle state.


[float]
=== `system.cpu.user.ticks`

Expand Down
13 changes: 13 additions & 0 deletions metricbeat/module/system/cpu/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@
was servicing another processor.
Available only on Unix.

- name: total.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent in non-idle state.

# Normalized Percentages
- name: user.norm.pct
type: scaled_float
Expand Down Expand Up @@ -115,6 +121,13 @@
was servicing another processor.
Available only on Unix.

- name: total.norm.pct
type: scaled_float
format: percent
description: >
The percentage of CPU time spent in non-idle state.


# Ticks
- name: user.ticks
type: long
Expand Down
2 changes: 2 additions & 0 deletions metricbeat/module/system/cpu/cpu.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ func (m *MetricSet) Fetch() (common.MapStr, error) {
event.Put("nice.pct", pct.Nice)
event.Put("softirq.pct", pct.SoftIRQ)
event.Put("steal.pct", pct.Steal)
event.Put("total.pct", pct.Total)
case normalizedPercentages:
normalizedPct := sample.NormalizedPercentages()
event.Put("user.norm.pct", normalizedPct.User)
Expand All @@ -75,6 +76,7 @@ func (m *MetricSet) Fetch() (common.MapStr, error) {
event.Put("nice.norm.pct", normalizedPct.Nice)
event.Put("softirq.norm.pct", normalizedPct.SoftIRQ)
event.Put("steal.norm.pct", normalizedPct.Steal)
event.Put("total.norm.pct", normalizedPct.Total)
case ticks:
ticks := sample.Ticks()
event.Put("user.ticks", ticks.User)
Expand Down
6 changes: 6 additions & 0 deletions metricbeat/module/system/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ type CPUPercentages struct {
Nice float64
SoftIRQ float64
Steal float64
Total float64
}

type CPUTicks struct {
Expand Down Expand Up @@ -98,6 +99,10 @@ func cpuPercentages(s0, s1 *sigar.Cpu, numCPU int) CPUPercentages {
return Round(pct * float64(numCPU))
}

calculateTotalPct := func() float64 {
return Round(float64(numCPU) - calculatePct(s0.Idle, s1.Idle))
}

return CPUPercentages{
User: calculatePct(s0.User, s1.User),
System: calculatePct(s0.Sys, s1.Sys),
Expand All @@ -107,6 +112,7 @@ func cpuPercentages(s0, s1 *sigar.Cpu, numCPU int) CPUPercentages {
Nice: calculatePct(s0.Nice, s1.Nice),
SoftIRQ: calculatePct(s0.SoftIrq, s1.SoftIrq),
Steal: calculatePct(s0.Stolen, s1.Stolen),
Total: calculateTotalPct(),
}
}

Expand Down
6 changes: 6 additions & 0 deletions metricbeat/module/system/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ func TestCPUCoresMonitorSample(t *testing.T) {
assert.True(t, normPct.System <= 100)
assert.True(t, normPct.Idle > 0)
assert.True(t, normPct.Idle <= 100)
assert.True(t, normPct.Total > 0)
assert.True(t, normPct.Total <= 100)

ticks := s.Ticks()
assert.True(t, ticks.User > 0)
Expand Down Expand Up @@ -110,10 +112,14 @@ func TestCPUMetricsPercentages(t *testing.T) {
pct := sample.NormalizedPercentages()
assert.EqualValues(t, .3, pct.User)
assert.EqualValues(t, .7, pct.System)
assert.EqualValues(t, .0, pct.Idle)
assert.EqualValues(t, 1., pct.Total)

pct = sample.Percentages()
assert.EqualValues(t, .3*float64(NumCPU), pct.User)
assert.EqualValues(t, .7*float64(NumCPU), pct.System)
assert.EqualValues(t, .0*float64(NumCPU), pct.Idle)
assert.EqualValues(t, 1.*float64(NumCPU), pct.Total)
}

func TestRound(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/tests/system/test_processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_drop_fields(self):
print(cpu.keys())
self.assertItemsEqual(self.de_dot([
"system", "cores", "user", "softirq", "iowait",
"idle", "irq", "steal", "nice"
"idle", "irq", "steal", "nice", "total"
]), cpu.keys())

def test_dropfields_with_condition(self):
Expand Down
4 changes: 2 additions & 2 deletions metricbeat/tests/system/test_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
import os

SYSTEM_CPU_FIELDS = ["cores", "idle.pct", "iowait.pct", "irq.pct", "nice.pct",
"softirq.pct", "steal.pct", "system.pct", "user.pct"]
"softirq.pct", "steal.pct", "system.pct", "user.pct", "total.pct"]

SYSTEM_CPU_FIELDS_ALL = ["cores", "idle.pct", "idle.ticks", "iowait.pct", "iowait.ticks", "irq.pct", "irq.ticks", "nice.pct", "nice.ticks",
"softirq.pct", "softirq.ticks", "steal.pct", "steal.ticks", "system.pct", "system.ticks", "user.pct", "user.ticks",
"idle.norm.pct", "iowait.norm.pct", "irq.norm.pct", "nice.norm.pct", "softirq.norm.pct",
"steal.norm.pct", "system.norm.pct", "user.norm.pct"]
"steal.norm.pct", "system.norm.pct", "user.norm.pct", "total.norm.pct"]

SYSTEM_LOAD_FIELDS = ["cores", "1", "5", "15", "norm.1", "norm.5", "norm.15"]

Expand Down