├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── main.go ├── main_test.go └── ngtop ├── db.go ├── fields.go ├── parser.go └── parser_test.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/main_test.go -------------------------------------------------------------------------------- /ngtop/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/ngtop/db.go -------------------------------------------------------------------------------- /ngtop/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/ngtop/fields.go -------------------------------------------------------------------------------- /ngtop/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/ngtop/parser.go -------------------------------------------------------------------------------- /ngtop/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundoolano/ngtop/HEAD/ngtop/parser_test.go --------------------------------------------------------------------------------