2012-05-24 22:02:44 +04:00
|
|
|
/*
|
|
|
|
Copyright (c) 2012, Matt T. Proud
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Use of this source code is governed by a BSD-style
|
|
|
|
license that can be found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package metrics
|
|
|
|
|
|
|
|
/*
|
|
|
|
A Metric is something that can be exposed via the registry framework.
|
|
|
|
*/
|
|
|
|
type Metric interface {
|
|
|
|
/*
|
|
|
|
Produce a human-consumable representation of the metric.
|
|
|
|
*/
|
2012-12-19 14:10:09 +04:00
|
|
|
String() string
|
2012-05-24 22:02:44 +04:00
|
|
|
/*
|
|
|
|
Produce a JSON-consumable representation of the metric.
|
|
|
|
*/
|
|
|
|
Marshallable() map[string]interface{}
|
|
|
|
}
|