Skip to content

Commit

Permalink
Update statsd_parser.go
Browse files Browse the repository at this point in the history
Fixing formating error
  • Loading branch information
dirceumaranhaopn committed Jul 6, 2022
1 parent 44090fc commit b68d5df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion receiver/statsdreceiver/protocol/statsd_parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ func parseMessageToMetric(line string, enableMetricType bool) (statsDMetric, err
return result, fmt.Errorf("invalid tag format: %s", tagParts)
}
k := tagParts[0]
v := tagParts[1]
v := tagParts[1]
kvs = append(kvs, attribute.String(k, v))
}

Expand Down

0 comments on commit b68d5df

Please sign in to comment.