Anton Kaliaev
7 years ago
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with
3 additions and
3 deletions
-
tm-monitor/eventmeter/eventmeter.go
|
|
@ -48,9 +48,9 @@ type EventMetric struct { |
|
|
|
} |
|
|
|
|
|
|
|
func (metric *EventMetric) Copy() *EventMetric { |
|
|
|
metric2 := *metric |
|
|
|
metric2.meter = metric.meter.Snapshot() |
|
|
|
return &metric2 |
|
|
|
metricCopy := *metric |
|
|
|
metricCopy.meter = metric.meter.Snapshot() |
|
|
|
return &metricCopy |
|
|
|
} |
|
|
|
|
|
|
|
// called on GetMetric
|
|
|
|