blob: bda0ae5ef303edcf9b59fe53e6ac5f5afb12f568 [file] [log] [blame]
// Copyright 2017, OpenCensus Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package readme generates the README.
package readme
import (
"context"
"log"
"go.opencensus.io/stats"
"go.opencensus.io/stats/view"
)
// README.md is generated with the examples here by using embedmd.
// For more details, see https://github.com/rakyll/embedmd.
func statsExamples() {
ctx := context.Background()
videoSize, err := stats.Int64("my.org/video_size", "processed video size", "MB")
if err != nil {
log.Fatal(err)
}
m := stats.FindMeasure("my.org/video_size")
if m == nil {
log.Fatalln("measure not found")
}
// START aggs
distAgg := view.DistributionAggregation{0, 1 << 32, 2 << 32, 3 << 32}
countAgg := view.CountAggregation{}
sumAgg := view.SumAggregation{}
meanAgg := view.MeanAggregation{}
// END aggs
_, _, _, _ = distAgg, countAgg, sumAgg, meanAgg
// START view
if err = view.Subscribe(&view.View{
Name: "my.org/video_size_distribution",
Description: "distribution of processed video size over time",
Measure: videoSize,
Aggregation: view.DistributionAggregation([]float64{0, 1 << 32, 2 << 32, 3 << 32}),
}); err != nil {
log.Fatalf("Failed to subscribe to view: %v", err)
}
// END view
// START record
stats.Record(ctx, videoSize.M(102478))
// END record
}