fix(tracing): wrong attribute type
changed attribute types in to Int
This commit is contained in:
parent
6583ae7d29
commit
0a8f84bb15
@ -60,8 +60,8 @@ func CreateTagGroupInBatch(ctx context.Context, tagsGroups []models.TagGroup, ba
|
|||||||
})
|
})
|
||||||
|
|
||||||
span.SetAttributes(
|
span.SetAttributes(
|
||||||
attribute.Int64("batch_size", int64(batchSize)),
|
attribute.Int("batch_size", batchSize),
|
||||||
attribute.Int64("tag_group_count", int64(len(tagsGroups))),
|
attribute.Int("tag_group_count", len(tagsGroups)),
|
||||||
)
|
)
|
||||||
|
|
||||||
utils.HandleEvent(span, localLogger, "Starting batch tag group creation")
|
utils.HandleEvent(span, localLogger, "Starting batch tag group creation")
|
||||||
|
Loading…
Reference in New Issue
Block a user