зеркало из https://github.com/Azure/ARO-RP.git
11 строки
331 B
Go
11 строки
331 B
Go
package metrics
|
|
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the Apache License 2.0.
|
|
|
|
// Emitter emits different types of metrics
|
|
type Emitter interface {
|
|
EmitFloat(metricName string, metricValue float64, dimensions map[string]string)
|
|
EmitGauge(metricName string, metricValue int64, dimensions map[string]string)
|
|
}
|