func newBoundCounterByMsgType(counterName string, appName string, meter metric.Meter) (boundCounter map[string]metric.BoundInt64Counter, err error) {
    boundCounter = make(map[string]metric.BoundInt64Counter)

    c, err := meter.NewInt64Counter(counterName)
    if err != nil {