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

host: fix typo #4540

Merged
merged 1 commit into from Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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