feat: add command name to metrics

This commit is contained in:
Kyle Kincer 2024-07-13 19:29:15 -04:00
parent 67824ebf86
commit 7b8b3a603d
1 changed files with 1 additions and 0 deletions

View File

@ -216,6 +216,7 @@ func (mh *metricsHook) ProcessHook(hook redis.ProcessHook) redis.ProcessHook {
attrs = append(attrs, mh.attrs...)
attrs = append(attrs, attribute.String("type", "command"))
attrs = append(attrs, statusAttr(err))
attrs = append(attrs, attribute.String("cmd", cmd.FullName()))
mh.useTime.Record(ctx, milliseconds(dur), metric.WithAttributes(attrs...))