Skip to content

Commit

Permalink
Replace i with X
Browse files Browse the repository at this point in the history
  • Loading branch information
monicasarbu committed Dec 14, 2015
1 parent a14ecfd commit 3fa6617
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 40 deletions.
40 changes: 20 additions & 20 deletions topbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -174,71 +174,71 @@ The amount of CPU time spent in involuntary wait by the virtual CPU while the hy
This group contains cpu usage per core statistics.


=== cpui Fields
=== cpuX Fields

This group contains cpu usage statistics of the core i, where i is the core number
This group contains cpu usage statistics of the core X, where 0<X<N and N is the number of cores.


==== cpus.cpui.user
==== cpus.cpuX.user

type: int

The amount of CPU time spent in user space on core i.
The amount of CPU time spent in user space on core X.


==== cpus.cpui.user_p
==== cpus.cpuX.user_p

type: float

The percentage of CPU time spent in user space on core i.
The percentage of CPU time spent in user space on core X.


==== cpus.cpui.nice
==== cpus.cpuX.nice

type: int

The amount of CPU time spent on low-priority processes on core i.
The amount of CPU time spent on low-priority processes on core X.


==== cpus.cpui.system
==== cpus.cpuX.system

type: int

The amount of CPU time spent in kernel space on core i.
The amount of CPU time spent in kernel space on core X.


==== cpus.cpui.system_p
==== cpus.cpuX.system_p

type: float

The percentage of CPU time spent in kernel space on core i.
The percentage of CPU time spent in kernel space on core X.


==== cpus.cpui.idle
==== cpus.cpuX.idle

type: int

The amount of CPU time spent idle on core i.
The amount of CPU time spent idle on core X.


==== cpus.cpui.iowait
==== cpus.cpuX.iowait

type: int

The amount of CPU time spent in wait (on disk) on core i.
The amount of CPU time spent in wait (on disk) on core X.


==== cpus.cpui.softirq
==== cpus.cpuX.softirq

type: int

The amount of CPU time spent servicing and handling software interrupts on core i.
The amount of CPU time spent servicing and handling software interrupts on core X.

==== cpus.cpui.steal
==== cpus.cpuX.steal

type: int

The amount of CPU time spent in involuntary wait by the virtual CPU while the hypervisor was servicing another processor on core i. Available only on Unix.
The amount of CPU time spent in involuntary wait by the virtual CPU while the hypervisor was servicing another processor on core X. Available only on Unix.


=== mem Fields
Expand Down
40 changes: 20 additions & 20 deletions topbeat/etc/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,67 +147,67 @@ system:
type: group
description: This group contains cpu usage per core statistics.
fields:
- name: cpui
- name: cpuX
type: group
description: This group contains cpu usage statistics of the core i, where 0<i<n and n is the number of cores.
description: This group contains cpu usage statistics of the core X, where 0<X<N and N is the number of cores.
fields:

- name: user
path: cpus.cpui.user
path: cpus.cpuX.user
type: int
description: >
The amount of CPU time spent in user space on core i.
The amount of CPU time spent in user space on core X.
- name: user_p
path: cpus.cpui.user_p
path: cpus.cpuX.user_p
type: float
description: >
The percentage of CPU time spent in user space on core i.
The percentage of CPU time spent in user space on core X.
- name: nice
path: cpus.cpui.nice
path: cpus.cpuX.nice
type: int
description: >
The amount of CPU time spent on low-priority processes on core i.
The amount of CPU time spent on low-priority processes on core X.
- name: system
path: cpus.cpui.system
path: cpus.cpuX.system
type: int
description: >
The amount of CPU time spent in kernel space on core i.
The amount of CPU time spent in kernel space on core X.
- name: system_p
path: cpus.cpui.system_p
path: cpus.cpuX.system_p
type: float
description: >
The percentage of CPU time spent in kernel space on core i.
The percentage of CPU time spent in kernel space on core X.
- name: idle
path: cpus.cpui.idle
path: cpus.cpuX.idle
type: int
description: >
The amount of CPU time spent idle on core i.
The amount of CPU time spent idle on core X.
- name: iowait
path: cpus.cpui.iowait
path: cpus.cpuX.iowait
type: int
description: >
The amount of CPU time spent in wait (on disk) on core i.
The amount of CPU time spent in wait (on disk) on core X.
- name: softirq
path: cpus.cpui.softirq
path: cpus.cpuX.softirq
type: int
description:
The amount of CPU time spent servicing and handling software interrupts on core i.
The amount of CPU time spent servicing and handling software interrupts on core X.


- name: steal
path: cpus.cpui.steal
path: cpus.cpuX.steal
type: int
description: >
The amount of CPU time spent in involuntary wait by the virtual CPU while the hypervisor
was servicing another processor on core i.
was servicing another processor on core X.
Available only on Unix.
Expand Down

0 comments on commit 3fa6617

Please sign in to comment.