Access Solaris kstats from Go. Provides a Go API for the Solaris kstat library for retrieving kernel statistics.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Joshua M. Clulow 173c9b0a99 trim old maintenance note from README 2 years ago
cmd Add support for kstat_chain_update() 8 years ago
gen Add support for IO kstats 8 years ago
.gitignore Initial commit of apparently working code. 8 years ago
LICENSE Update README to the current state of things and add LICENSE 3 years ago
Makefile Added a Makefile to somewhat automate kstat-godoc.txt creation 7 years ago
README trim old maintenance note from README 2 years ago
doc.go doc.go: be clearer about the kstat source code stuff 8 years ago
kstat-godoc.txt doc.go: be clearer about the kstat source code stuff 8 years ago
kstat_solaris.go Add support for kstat_chain_update() 8 years ago
kstat_solaris_test.go Add support for kstat_chain_update() 8 years ago
raw_solaris.go Add support for raw kstat statistics 8 years ago
raw_solaris_test.go Add support for raw kstat statistics 8 years ago
types_solaris_amd64.go Mntinfo: rename Proto and Curserver fields, provide access methods 8 years ago
types_solaris_amd64_test.go Mntinfo: rename Proto and Curserver fields, provide access methods 8 years ago

README

Go-kstat provides a Go API for the kstat kernel statistics system
on Solaris, Illumos, OmniOS, and other Solaris derived systems. For
general information on kstats, see the kstat(1) and kstat(3kstat)
manpages. For more documentation on the details of the package, see
doc.go, kstat_solaris.go, types_solaris_amd64.go, and raw_solaris.go.

The API supports access to 'named' kstat statistics, IO statistics,
and the most common and useful sorts of 'raw' kstat statistics
(unix:0:sysinfo, unix:0:vminfo, unix:0:var, and mnt:*:mntinfo).
Other raw kstat statistics are not explicitly supported, but the
API provides some escape hatches for access to custom raw
statistics.

This is a cgo-based package so it can't be cross compiled like a regular
Go package. It may also have bugs with memory management, since it
interacts with the Solaris kstat library and holds references to memory
that's been dynamically allocated in C.

See kstat-godoc.txt for a text dump of the full godoc for the package.
Unfortunately Go tool limitations appear to make it impossible to
see full package documentation on anything except a Solaris machine
(including https://godoc.org/, sadly).

Bug reports and other contributions are highly welcome.

Original Author:

Chris Siebenmann
https://github.com/siebenmann/go-kstat
https://utcc.utoronto.ca/~cks/space/blog/

(and elsewhere)

Copyright: BSD-3-Clause, see LICENSE
(This is the copyright used by Go and projects copying its license.)