version: 1.10
package expvar
import "expvar"
Overview
Package expvar provides a standardized interface to public variables, such as
operation counters in servers. It exposes these variables via HTTP at
/debug/vars in JSON format.
Operations to set or modify these public variables are atomic.
In addition to adding the HTTP handler, this package registers the following
variables:
cmdline os.Args
memstats runtime.Memstats
The package is sometimes only imported for the side effect of registering its
HTTP handler and the above variables. To use it this way, link this package into
your program:
import _ "expvar"
Index
- func Do(f func(KeyValue))
- func Handler() http.Handler
- func Publish(name string, v Var)
- type Float
- type Func
- type Int
- type KeyValue
- type Map
- type String
- type Var
Package files
func Do
¶
- func Do(f func(KeyValue))
Do calls f for each exported variable. The global variable map is locked during
the iteration, but existing entries may be concurrently updated.
func Handler
¶
Handler returns the expvar HTTP Handler.
This is only needed to install the handler in a non-standard location.
func Publish
¶
Publish declares a named exported variable. This should be called from a
package’s init function when it creates its Vars. If the name is already
registered then this will log.Panic.
type Float
¶
- type Float struct {
- // contains filtered or unexported fields
- }
Float is a 64-bit float variable that satisfies the Var interface.
func NewFloat
¶
func (*Float) Add
¶
Add adds delta to v.
func (*Float) Set
¶
Set sets v to value.
func (*Float) String
¶
func (*Float) Value
¶
type Func
¶
- type Func func() interface{}
Func implements Var by calling the function and formatting the returned value
using JSON.
func (Func) String
¶
func (Func) Value
¶
- func (f Func) Value() interface{}
type Int
¶
- type Int struct {
- // contains filtered or unexported fields
- }
Int is a 64-bit integer variable that satisfies the Var interface.
func NewInt
¶
func (*Int) Add
¶
func (*Int) Set
¶
func (*Int) String
¶
func (*Int) Value
¶
type KeyValue
¶
KeyValue represents a single entry in a Map.
type Map
¶
- type Map struct {
- // contains filtered or unexported fields
- }
Map is a string-to-Var map variable that satisfies the Var interface.
func NewMap
¶
func (*Map) Add
¶
Add adds delta to the *Int value stored under the given map key.
func (*Map) AddFloat
¶
AddFloat adds delta to the *Float value stored under the given map key.
func (*Map) Do
¶
Do calls f for each entry in the map. The map is locked during the iteration,
but existing entries may be concurrently updated.
func (*Map) Get
¶
func (*Map) Init
¶
Init removes all keys from the map.
func (*Map) Set
¶
func (*Map) String
¶
type String
¶
- type String struct {
- // contains filtered or unexported fields
- }
String is a string variable, and satisfies the Var interface.
func NewString
¶
func (*String) Set
¶
func (*String) String
¶
String implements the Val interface. To get the unquoted string use Value.
func (*String) Value
¶
type Var
¶
- type Var interface {
- // String returns a valid JSON value for the variable.
- // Types with String methods that do not return valid JSON
- // (such as time.Time) must not be used as a Var.
- String() string
- }
Var is an abstract type for all exported variables.
func Get
¶
Get retrieves a named exported variable. It returns nil if the name has not been
registered.