Skip to content

Commit

Permalink
host: fix typo (#4540)
Browse files Browse the repository at this point in the history
`s/attributeed/attributed`

Signed-off-by: Simon Pasquier <spasquie@redhat.com>
  • Loading branch information
simonpasquier committed Nov 9, 2023
1 parent 016b46f commit fe68fe9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions instrumentation/host/host.go
Expand Up @@ -144,7 +144,7 @@ func (h *host) register() error {
"process.cpu.time",
metric.WithUnit("s"),
metric.WithDescription(
"Accumulated CPU time spent by this process attributeed by state (User, System, ...)",
"Accumulated CPU time spent by this process attributed by state (User, System, ...)",
),
); err != nil {
return err
Expand All @@ -154,7 +154,7 @@ func (h *host) register() error {
"system.cpu.time",
metric.WithUnit("s"),
metric.WithDescription(
"Accumulated CPU time spent by this host attributeed by state (User, System, Other, Idle)",
"Accumulated CPU time spent by this host attributed by state (User, System, Other, Idle)",
),
); err != nil {
return err
Expand All @@ -174,7 +174,7 @@ func (h *host) register() error {
"system.memory.utilization",
metric.WithUnit("1"),
metric.WithDescription(
"Memory utilization of this process attributeed by memory state (Used, Available)",
"Memory utilization of this process attributed by memory state (Used, Available)",
),
); err != nil {
return err
Expand All @@ -184,7 +184,7 @@ func (h *host) register() error {
"system.network.io",
metric.WithUnit("By"),
metric.WithDescription(
"Bytes transferred attributeed by direction (Transmit, Receive)",
"Bytes transferred attributed by direction (Transmit, Receive)",
),
); err != nil {
return err
Expand Down

0 comments on commit fe68fe9

Please sign in to comment.