Skip to content

pombredanne/opencensus-go

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenCensus Libraries for Go

Build Status Windows Build Status GoDoc Gitter chat

OpenCensus Go is a Go implementation of OpenCensus, a toolkit for collecting application performance and behavior monitoring data. Currently it consists of three major APIs: tags, stats, and tracing.

This project is still at a very early stage of development and a lot of the API calls are in the process of being changed and might break your code in the future.

TODO: Add a link to the language independent OpenCensus doc when it is available.

Installation

To install this package, you need to install Go and setup your Go workspace on your computer. The simplest way to install the library is to run:

$ go get -u github.com/census-instrumentation/opencensus-go/...

Prerequisites

OpenCensus libraries require Go 1.8 or later as it uses the convenience function sort.Slice(...) introduced in Go 1.8.

Tags API

Tags represent propagated key values. They can propagated using context.Context in the same process or can be encoded to be transmitted on wire and decoded back to a TagSet at the destination.

Getting a key by a name

A key is defined by its name. To use a key a user needs to know its name and type. Currently, only keys of type string are supported. Other types will be supported in the future.

See the KeyStringByName example.

Creating a set of tags associated with keys

TagSet is a set of tags. Package tags provide a builder to create tag sets.

See the NewTagSetBuilder example.

Propagating a TagSet in a context

To propagate a tag set to downstream methods and downstream RPCs, add a tag set to the current context. NewContext will return a copy of the current context, and put the tag set into the returned one. If there is already a tag set in the current context, it will be replaced.

newTagSet  := ...
ctx = tags.NewContext(ctx, newTagSet)

In order to update an existing tag set, get the tag set from the current context, use TagSetBuilder to mutate and put it back to the context.

See the NewTagSetBuilder (Replace) example.

Stats API

Creating, retrieving and deleting a measure

Create and load measures with units:

// returns a *MeasureFloat64
mf, err := stats.NewMeasureFloat64("/my/float64/measureName", "some measure", "MBy")
if err != nil {
    // handle error
}
mi, err := stats.NewMeasureInt64("/my/otherName", "some other measure", "1")
if err != nil {
    // handle error
}

Retrieve measure by name:

mf, err := stats.GetMeasureByName("/my/float64/measureName")
if err != nil {
    // handle error
}
mi, err := stats.GetMeasureByName("/my/otherName")
if err != nil {
    // handle error
}

Delete measure (this can be useful when replacing a measure by another measure with the same name):

if err := stats.DeleteMeasure(mf); err != nil {
    // handle error
}
if err := stats.DeleteMeasure(mi); err != nil {
    // handle error
}

Creating an aggregation

Currently only 2 types of aggregations are supported. The AggregationCount is used to count the number of times a sample was recorded. The AggregationDistribution is used to provide a histogram of the values of the samples.

histogramBounds := []float64 { -10, 0, 10, 20}
agg1 := stats.NewAggregationDistribution(histogramBounds)
agg2 := stats.NewAggregationCount()

Create an aggregation window

Currently only 3 types of aggregation windows are supported. The WindowCumulative is used to continuously aggregate the data received. The WindowSlidingTime to aggregate the data received over the last specified time interval. The NewWindowSlidingCount to aggregate the data received over the last specified sample count. Currently all aggregation types are compatible with all aggregation windows. Later we might provide aggregation types that are incompatible with some windows.

duration := 10 * time.Second
precisionIntervals := 5
wnd1 := stats.NewWindowSlidingTime(duration, precisionIntervals)

lastNSamples := 100
precisionSubsets := 10
wnd2 := stats.NewWindowSlidingCount(lastNSamples, precisionSubsets)

wn3 := stats.NewWindowCumulative()

Creating, registering and unregistering a view

TODO: define "view" (link to the spec).

Create a view:

myView1 := stats.NewView("/my/int64/viewName", "some description", []tags.Key{key1, key2}, mf, agg1, wnd1)
myView2 := stats.NewView("/my/float64/viewName", "some other description", []tags.Key{key1}, mi, agg2, wnd3)

Register view:

if err := stats.RegisterView(myView1); err != nil {
  // handle error
}
if err := stats.RegisterView(myView2); err != nil {
  // handle error
}

TODO: distinguish "create" and "register". Why do they need to be separate?

Retrieve view by name:

myView1, err := stats.GetViewByName("/my/int64/viewName")
if err != nil {
    // handle error
}
myView2, err := stats.GetViewByName("/my/float64/viewName")
if err != nil {
    // handle error
}

Unregister view:

if err := stats.UnregisterView(myView1); err != nil {
    // handle error
}
if err := stats.UnregisterView(myView2); err != nil {
    // handle error
}

Subscribing to a view's collected data and unsubscribing

Once a subscriber subscribes to a view, its collected date is reported at a regular interval. This interval is configured system wide.

Subscribe to a view:

c1 := make(c chan *stats.ViewData)
if err := stats.SubscribeToView(myView1, c1); err != nil {
    // handle error
}
c2 := make(c chan *stats.ViewData)
if err := stats.SubscribeToView(myView2, c2); err != nil {
    // handle error
}

Unsubscribe from a view:

if err := stats.UnsubscribeFromView(myView1, c1); err != nil {
    // handle error
}
if err := stats.UnsubscribeFromView(myView2, c2); err != nil {
    // handle error
}

Configure/modify the default interval between reports of collected data. This is a system wide interval and impacts all views. The default interval duration is 10 seconds. Trying to set an interval with a duration less than a certain minimum (maybe 1s) should have no effect.

d := 20 * time.Second
stats.SetReportingPeriod(d)

Force collecting data on-demand

Even if a view is registered, if it has no subscriber no data for it is collected. In order to retrieve data on-demand for view, either the view needs to have at least 1 subscriber or the libray needs to be instructed explicitly to collect collect data for the desired view.

// To explicitly instruct the library to collect the view data for an on-demand
// retrieval, StopForcedCollection should be used.
if err := stats.ForceCollection(myView1); err != nil {
    // handle error
}

// To explicitly instruct the library to stop collecting the view data for the
// on-demand retrieval StopForcedCollection should be used. This call has no
// impact on subscriptions, and if the view still has subscribers, the data for
//  the view will still keep being collected.
if err := stats.StopForcedCollection(myView1); err != nil {
    // handle error
}

Recording measurements

Recording usage can only be performed against already registered measure and and their registered views. Measurements are implicitly tagged with the tags in the context:

// mi is a *MeasureInt64 and v is an int64 .
stats.RecordInt64(ctx, mi, v)
// mf is a *RecordFloat64 and v is an float64 .
stats.RecordFloat64(ctx, mf, v)
// multiple measurements can be performed at once.
stats.Record(ctx, mi.Is(4), mf.Is(10.5))

Retrieving collected data for a View

// assuming c1 is the channel that was used to subscribe to myView1
go func(c chan *stats.ViewData) {
    for vd := range c {
        // process collected stats received.
    }
}(c1)

// Use RetrieveData to pull collected data synchronously from the library. This
// assumes that at least 1 subscriber to myView1 exists or that
// stats.ForceCollection(myView1) was called before.
rows, err := stats.RetrieveData(myView1)
if err != nil {
    // handle error
}
for _, r := range rows {
    // process a single row of type *stats.Row
}

Tracing API

TODO: update the doc once tracing API is ready.

About

A stats collection and distributed tracing framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%