From 197dcf4d42f25c1a495c4d0aca6c47fab7c725bf Mon Sep 17 00:00:00 2001 From: Simon Pasquier Date: Thu, 9 Nov 2023 15:16:04 +0100 Subject: [PATCH] host: fix typo `s/attributeed/attributed` Signed-off-by: Simon Pasquier --- instrumentation/host/host.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/instrumentation/host/host.go b/instrumentation/host/host.go index f8cd3200642..c0e13852ceb 100644 --- a/instrumentation/host/host.go +++ b/instrumentation/host/host.go @@ -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 @@ -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 @@ -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 @@ -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