tracing: Fix typo in "package" tag name

The tracing tags for api.go contain `"packages"` as a tag name,
whereas all other tags contain `"package"`.

Fixes: #2847

Signed-off-by: Christophe de Dinechin <dinechin@redhat.com>
This commit is contained in:
Christophe de Dinechin 2021-10-15 14:48:00 +02:00
parent baf4784a29
commit bcffa26305

View File

@ -21,7 +21,7 @@ import (
// apiTracingTags defines tags for the trace span
var apiTracingTags = map[string]string{
"source": "runtime",
"packages": "virtcontainers",
"package": "virtcontainers",
"subsystem": "api",
}