github.com/TeaOSLab/EdgeNode@v1.3.8/internal/metrics/metric_interface.go (about)

     1  // Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
     2  
     3  package metrics
     4  
     5  type MetricInterface interface {
     6  	// MetricKey 指标对象
     7  	MetricKey(key string) string
     8  
     9  	// MetricValue 指标值
    10  	MetricValue(value string) (result int64, ok bool)
    11  
    12  	// MetricServerId 服务ID
    13  	MetricServerId() int64
    14  
    15  	// MetricCategory 指标分类
    16  	MetricCategory() string
    17  }