type go.opencensus.io/metric/metricdata.Point
22 uses
go.opencensus.io/metric/metricdata (current package)
metric.go#L44: Points []Point // points sequence
point.go#L22: type Point struct {
point.go#L33: func NewFloat64Point(t time.Time, val float64) Point {
point.go#L34: return Point{
point.go#L41: func NewInt64Point(t time.Time, val int64) Point {
point.go#L42: return Point{
point.go#L49: func NewDistributionPoint(t time.Time, val *Distribution) Point {
point.go#L50: return Point{
point.go#L57: func NewSummaryPoint(t time.Time, val *Summary) Point {
point.go#L58: return Point{
point.go#L76: func (p Point) ReadValue(vv ValueVisitor) {
go.opencensus.io/stats/view
aggregation_data.go#L33: toPoint(t metricdata.Type, time time.Time) metricdata.Point
aggregation_data.go#L65: func (a *CountData) toPoint(metricType metricdata.Type, t time.Time) metricdata.Point {
aggregation_data.go#L100: func (a *SumData) toPoint(metricType metricdata.Type, t time.Time) metricdata.Point {
aggregation_data.go#L232: func (a *DistributionData) toPoint(metricType metricdata.Type, t time.Time) metricdata.Point {
aggregation_data.go#L284: func (l *LastValueData) toPoint(metricType metricdata.Type, t time.Time) metricdata.Point {
view_to_metric.go#L124: Points: []metricdata.Point{row.Data.toPoint(v.metricDescriptor.Type, now)},
contrib.go.opencensus.io/exporter/prometheus
prometheus.go#L212: point metricdata.Point,
prometheus.go#L263: func typeMismatchError(point metricdata.Point) error {
prometheus.go#L268: func toPromValue(point metricdata.Point) (float64, error) {
contrib.go.opencensus.io/exporter/stackdriver
metrics.go#L386: func metricPointToMpbPoint(startTime *timestamp.Timestamp, pt *metricdata.Point, projectID string) (*monitoringpb.Point, error) {
metrics.go#L406: func metricPointToMpbValue(pt *metricdata.Point, projectID string) (*monitoringpb.TypedValue, error) {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |