Skip to content

Commit 6b710c2

Browse files
committed
fix: add metric for commands without subcommands in histogram
1 parent d880c41 commit 6b710c2

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

pkg/metrics/otel.go

+4-5
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,11 @@ func recordCommandUsage(ctx context.Context, provider *metric.MeterProvider, fla
5757
m.WithUnit("1"),
5858
m.WithDescription("Usage frequency of command flags"))
5959

60-
attributes := make([]attribute.KeyValue, 2)
61-
60+
attributes := make([]attribute.KeyValue, 0)
6261
if len(flags) > 0 {
63-
attributes[0] = attribute.String("command", flags[0])
64-
if len(flags) >= 2 {
65-
attributes[1] = attribute.String("subcommand", strings.Join(flags[1:], "_"))
62+
attributes = append(attributes, attribute.String("command", flags[0]))
63+
if len(flags) > 1 {
64+
attributes = append(attributes, attribute.String("subcommand", strings.Join(flags[1:], "_")))
6665
}
6766
}
6867
commandHistogram.Record(ctx, 1, m.WithAttributes(attributes...))

0 commit comments

Comments
 (0)