feat(agent): Add uint support in cli test output (#15433)

This commit is contained in:
Thomas Casteleyn 2024-06-03 10:38:48 +02:00 committed by GitHub
parent d42e407ab7
commit a92d443a5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -974,7 +974,7 @@ func (a *Agent) Test(ctx context.Context, wait time.Duration) error {
wg.Add(1)
go func() {
defer wg.Done()
s := &influx.Serializer{SortFields: true}
s := &influx.Serializer{SortFields: true, UintSupport: true}
for metric := range src {
octets, err := s.Serialize(metric)
if err == nil {