metric.Export 인터페이스 변경

This commit is contained in:
2023-11-30 14:47:31 +09:00
parent 2260de6adb
commit 188d310b42
2 changed files with 21 additions and 2 deletions

View File

@ -29,6 +29,7 @@ type MetricDescription struct {
type Exporter interface {
RegisterMetric(*MetricDescription)
UpdateMetric(string, float64)
Shutdown()
}
type MetricWriter interface {