1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|

Golang implementation of the Performance Co-Pilot (PCP) instrumentation API
[](https://github.com/performancecopilot/speed/actions/workflows/ci.yaml)
[](https://coveralls.io/github/performancecopilot/speed?branch=main)
[](https://godoc.org/github.com/performancecopilot/speed)
[](https://goreportcard.com/report/github.com/performancecopilot/speed)
[](https://groups.io/g/pcp)
[](https://h7zo83mvt1.execute-api.us-west-2.amazonaws.com/Express/)
[](https://web.libera.chat/#pcp)
[](https://github.com/performancecopilot/speed/releases/latest)
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
- [Install](#install)
- [Prerequisites](#prerequisites)
- [PCP](#pcp)
- [Go](#go)
- [Grafana](#grafana)
- [Getting the library](#getting-the-library)
- [Getting the examples](#getting-the-examples)
- [Walkthrough](#walkthrough)
- [SingletonMetric](#singletonmetric)
- [InstanceMetric](#instancemetric)
- [Counter](#counter)
- [CounterVector](#countervector)
- [Gauge](#gauge)
- [GaugeVector](#gaugevector)
- [Timer](#timer)
- [Histogram](#histogram)
- [Go Kit](#go-kit)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
## Install
### Prerequisites
#### [PCP](https://pcp.io)
Install Performance Co-Pilot on your local machine, either using prebuilt archives or by getting and building the source code. For detailed instructions, read the [page from pcp.readthedocs.io](https://pcp.readthedocs.io/en/latest/HowTos/installation/index.html).
#### [Go](https://golang.org)
Set up a go environment on your computer. For more information about these steps, please read [how to write go code](https://golang.org/doc/code.html).
- download and install go 1.6 or above from [https://golang.org/dl](https://golang.org/dl)
- set up `$GOPATH` to the root folder where you want to keep your go code
- add `$GOPATH/bin` to your `$PATH` by adding `export PATH=$GOPATH/bin:$PATH` to your shell configuration file, such as to your `.bashrc`, if using a Bourne shell variant.
#### [Grafana](https://grafana-pcp.readthedocs.io/)
The grafana-pcp plugin provides PCP metrics in the popular Grafana visualization tool. It includes [PCP Vector](https://grafana-pcp.readthedocs.io/en/latest/screenshots.html#pcp-vector), a live datasource for metrics exposed using Performance Co-Pilot. Metrics you create with Speed are immediately visible in Grafana using this datasource.
### Getting the library
```sh
go get github.com/performancecopilot/speed
```
### Getting the examples
All examples are executable go programs. Simply doing
```sh
go get github.com/performancecopilot/speed/examples/<example name>
```
will get the example and add an executable to `$GOPATH/bin`. If it is on your path, simply doing
```sh
<example name>
```
will run the binary, running the example
## Walkthrough
There are 3 main components defined in the library, a [__Client__](https://godoc.org/github.com/performancecopilot/speed#Client), a [__Registry__](https://godoc.org/github.com/performancecopilot/speed#Registry) and a [__Metric__](https://godoc.org/github.com/performancecopilot/speed#Metric). A client is created using an application name, and the same name is used to create a memory mapped file in `PCP_TMP_DIR`. Each client contains a registry of metrics that it holds, and will publish on being activated. It also has a `SetFlag` method allowing you to set a mmv flag while a mapping is not active, to one of three values, [`NoPrefixFlag`, `ProcessFlag` and `SentinelFlag`](https://godoc.org/github.com/performancecopilot/speed#MMVFlag). The ProcessFlag is the default and reports metrics prefixed with the application name (i.e. like `mmv.app_name.metric.name`). Setting it to `NoPrefixFlag` will report metrics without being prefixed with the application name (i.e. like `mmv.metric.name`) which can lead to namespace collisions, so be sure of what you're doing.
A client can register metrics to report through 2 interfaces, the first is the `Register` method, that takes a raw metric object. The other is using `RegisterString`, that can take a string with metrics and instances to register similar to the interface in parfait, along with type, semantics and unit, in that order. A client can be activated by calling the `Start` method, deactivated by the `Stop` method. While a client is active, no new metrics can be registered but it is possible to stop existing client for metric registration.
Each client contains an instance of the `Registry` interface, which can give different information like the number of registered metrics and instance domains. It also exports methods to register metrics and instance domains.
Finally, metrics are defined as implementations of different metric interfaces, but they all implement the `Metric` interface, the different metric types defined are
### [SingletonMetric](https://godoc.org/github.com/performancecopilot/speed#SingletonMetric)
This type defines a metric with no instance domain and only one value. It __requires__ type, semantics and unit for construction, and optionally takes a couple of description strings. A simple construction
```go
metric, err := speed.NewPCPSingletonMetric(
42, // initial value
"simple.counter", // name
speed.Int32Type, // type
speed.CounterSemantics, // semantics
speed.OneUnit, // unit
"A Simple Metric", // short description
"This is a simple counter metric to demonstrate the speed API", // long description
)
```
A SingletonMetric supports a `Val` method that returns the metric value and a `Set(interface{})` method that sets the metric value.
### [InstanceMetric](https://godoc.org/github.com/performancecopilot/speed#InstanceMetric)
An `InstanceMetric` is a single metric object containing multiple values of the same type for multiple instances. It also __requires__ an instance domain along with type, semantics and unit for construction, and optionally takes a couple of description strings. A simple construction
```go
indom, err := speed.NewPCPInstanceDomain(
"Acme Products", // name
[]string{"Anvils", "Rockets", "Giant_Rubber_Bands"}, // instances
"Acme products", // short description
"Most popular products produced by the Acme Corporation", // long description
)
...
countmetric, err := speed.NewPCPInstanceMetric(
speed.Instances{
"Anvils": 0,
"Rockets": 0,
"Giant_Rubber_Bands": 0,
},
"products.count",
indom,
speed.Uint64Type,
speed.CounterSemantics,
speed.OneUnit,
"Acme factory product throughput",
`Monotonic increasing counter of products produced in the Acme Corporation
factory since starting the Acme production application. Quality guaranteed.`,
)
```
An instance metric supports a `ValInstance(string)` method that returns the value as well as a `SetInstance(interface{}, string)` that sets the value of a particular instance.
### [Counter](https://godoc.org/github.com/performancecopilot/speed#Counter)
A counter is simply a PCPSingletonMetric with `Int64Type`, `CounterSemantics` and `OneUnit`.
It can optionally take a short and a long description.
A simple example
```go
c, err := speed.NewPCPCounter(0, "a.simple.counter")
```
a counter supports `Set(int64)` to set a value, `Inc(int64)` to increment by a custom delta and `Up()` to increment by 1.
### [CounterVector](https://godoc.org/github.com/performancecopilot/speed#CounterVector)
A CounterVector is a PCPInstanceMetric , with `Int64Type`, `CounterSemantics` and `OneUnit` and an instance domain created and registered on initialization, with the name `metric_name.indom`.
A simple example
```go
c, err := speed.NewPCPCounterVector(
map[string]uint64{
"instance1": 0,
"instance2": 1,
}, "another.simple.counter"
)
```
It supports `Val(string)`, `Set(uint64, string)`, `Inc(uint64, string)` and `Up(string)` amongst other things.
### [Gauge](https://godoc.org/github.com/performancecopilot/speed#Gauge)
A Gauge is a simple SingletonMetric storing float64 values, i.e. a PCP Singleton Metric with `DoubleType`, `InstantSemantics` and `OneUnit`.
A simple example
```go
g, err := speed.NewPCPGauge(0, "a.sample.gauge")
```
supports `Val()`, `Set(float64)`, `Inc(float64)` and `Dec(float64)`
### [GaugeVector](https://godoc.org/github.com/performancecopilot/speed#GaugeVector)
A Gauge Vector is a PCP instance metric with `DoubleType`, `InstantSemantics` and `OneUnit` and an autogenerated instance domain. A simple example
```go
g, err := NewPCPGaugeVector(map[string]float64{
"instance1": 1.2,
"instance2": 2.4,
}, "met")
```
supports `Val(string)`, `Set(float64, string)`, `Inc(float64, string)` and `Dec(float64, string)`
### [Timer](https://godoc.org/github.com/performancecopilot/speed#Timer)
A timer stores the time elapsed for different operations. __It is not compatible with PCP's elapsed type metrics__. It takes a name and a `TimeUnit` for construction.
```go
timer, err := speed.NewPCPTimer("test", speed.NanosecondUnit)
```
calling `timer.Start()` signals the start of an operation
calling `timer.Stop()` signals end of an operation and will return the total elapsed time calculated by the metric so far.
### [Histogram](https://godoc.org/github.com/performancecopilot/speed#Histogram)
A histogram implements a PCP Instance Metric that reports the `mean`, `variance` and `standard_deviation` while using a histogram backed by [codahale's hdrhistogram implementation in golang](https://github.com/HdrHistogram/hdrhistogram-go). Other than these, it also returns a custom percentile and buckets for plotting graphs. It requires a low and a high value and the number of significant figures used at the time of construction.
```
m, err := speed.NewPCPHistogram("hist", 0, 1000, 5)
```
## [Go Kit](https://gokit.io)
Go kit provides [a wrapper package](https://godoc.org/github.com/go-kit/kit/metrics/pcp) over speed that can be used for building microservices that expose metrics using PCP.
For modified versions of the examples in go-kit that use pcp to report metrics, see [suyash/kit-pcp-examples](https://github.com/suyash/kit-pcp-examples)
|