├── .travis.yml ├── LICENSE ├── README.md ├── aspects ├── aspect.go ├── aspect_test.go ├── memory.go ├── runtime.go └── time.go ├── doc.go ├── example └── custom_aspect.go ├── monitor.go └── monitor_test.go /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-monitor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-monitor/HEAD/README.md -------------------------------------------------------------------------------- /aspects/aspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-monitor/HEAD/aspects/aspect.go -------------------------------------------------------------------------------- /aspects/aspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-monitor/HEAD/aspects/aspect_test.go -------------------------------------------------------------------------------- /aspects/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-monitor/HEAD/aspects/memory.go -------------------------------------------------------------------------------- /aspects/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-monitor/HEAD/aspects/runtime.go -------------------------------------------------------------------------------- /aspects/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-monitor/HEAD/aspects/time.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-monitor/HEAD/doc.go -------------------------------------------------------------------------------- /example/custom_aspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-monitor/HEAD/example/custom_aspect.go -------------------------------------------------------------------------------- /monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-monitor/HEAD/monitor.go -------------------------------------------------------------------------------- /monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-monitor/HEAD/monitor_test.go --------------------------------------------------------------------------------