uber-go / tally

A Go metrics interface with fast buffered metrics and third party reporters
MIT License
850 stars 116 forks source link

Handle bad names gracefully #204

Open brawndou opened 1 year ago

brawndou commented 1 year ago

It seems that bad names will cause panics, see: https://github.com/uber-go/tally/issues/198 This is less than ideal since metrics names can be generated at runtime, and more graceful failure handling is preferable to a panic.

Investigate approaches for more graceful handling and notification to the customer.