You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
please update the function handleOnePacket to display scalar array datatype as well.
also decimal64 datatype is being added (20.4 onwards), so please pick the latest telemetry.proto and add support for displaying it as well something like below:
case *na_pb.KeyValue_DecimalValue:
s += fmt.Sprintf(" decimal64_value: digits=%d precision=%d\n", value.DecimalValue.Digits, value.DecimalValue.Precision)
The text was updated successfully, but these errors were encountered:
please update the function handleOnePacket to display scalar array datatype as well.
also decimal64 datatype is being added (20.4 onwards), so please pick the latest telemetry.proto and add support for displaying it as well something like below:
case *na_pb.KeyValue_DecimalValue:
s += fmt.Sprintf(" decimal64_value: digits=%d precision=%d\n", value.DecimalValue.Digits, value.DecimalValue.Precision)
The text was updated successfully, but these errors were encountered: