Float64Metric represents an float64 metric.
| 37 | |
| 38 | // Float64Metric represents an float64 metric. |
| 39 | type Float64Metric struct { |
| 40 | name string |
| 41 | measure *stats.Float64Measure |
| 42 | } |
| 43 | |
| 44 | // NewFloat64Metric create a Float64Metric metrics, returns nil when viewName is empty. |
| 45 | func NewFloat64Metric(metricID MetricID, viewName string, description string, unit string, aggregation Aggregation, tagNames []string) (*Float64Metric, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected