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