-
Notifications
You must be signed in to change notification settings - Fork 17
/
doc.go
83 lines (66 loc) · 2.28 KB
/
doc.go
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
// Copyright (C) 2014 Space Monkey, Inc.
//
// 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 monitor is a flexible code instrumenting and data collection library.
With this package, it's easy to monitor and watch all sorts of data.
A motivating example:
package main
import (
"net/http"
"gopkg.in/spacemonkeygo/monitor.v1"
)
var (
mon = monitor.GetMonitors()
)
func FixSerenity() (err error) {
defer mon.Task()(&err)
if SerenityBroken() {
err := CallKaylee()
mon.Event("kaylee called")
if err != nil {
return err
}
}
stowaway_count := StowawaysNeedingHiding()
mon.Val("stowaway count", stowaway_count)
err = HideStowaways(stowaway_count)
if err != nil {
return err
}
return nil
}
func Monitor() {
go http.ListenAndServe(":8080", monitor.DefaultStore)
}
In this example, calling FixSerenity will cause the endpoint at
http://localhost:8080/ to return all sorts of data, such as:
* How many times we've needed to fix the Serenity
(the Task monitor infers the statistic name from the callstack)
* How many times we've succeeded
* How many times we've failed
* How long it's taken each time (min/max/avg/recent)
* How many times we needed to call Kaylee
* How many errors we've received (per error type!)
* Statistics on how many stowaways we usually have (min/max/avg/recent/etc)
To collect these statistics without the http server, you can call
monitor.Stats like so
monitor.Stats(func(name string, val float64) {
// do something with name, val
})
This package lets you easily instrument your code with all of these goodies and
more!
Make sure to check out the trace subpackage for the Zipkin client extension.
http://godoc.org/gopkg.in/spacemonkeygo/monitor.v1/trace
*/
package monitor // import "gopkg.in/spacemonkeygo/monitor.v1"