├── .editorconfig ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── ci ├── pipeline.yml └── tasks │ └── build.yml ├── commands ├── dmesg_exporter.go ├── run_once.go └── start.go ├── docker-compose.yml ├── exporter └── exporter.go ├── go.mod ├── go.sum ├── helm └── dmesg │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── daemonset.yaml │ ├── service.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml ├── kmsg ├── kmsg.go ├── kmsg_suite_test.go ├── kmsg_test.go └── testdata │ └── data.txt ├── main.go └── reader ├── reader.go ├── reader_suite_test.go └── reader_test.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dmesg_exporter 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1 2 | -------------------------------------------------------------------------------- /ci/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/ci/pipeline.yml -------------------------------------------------------------------------------- /ci/tasks/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/ci/tasks/build.yml -------------------------------------------------------------------------------- /commands/dmesg_exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/commands/dmesg_exporter.go -------------------------------------------------------------------------------- /commands/run_once.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/commands/run_once.go -------------------------------------------------------------------------------- /commands/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/commands/start.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /exporter/exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/exporter/exporter.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/go.sum -------------------------------------------------------------------------------- /helm/dmesg/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/helm/dmesg/.helmignore -------------------------------------------------------------------------------- /helm/dmesg/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/helm/dmesg/Chart.yaml -------------------------------------------------------------------------------- /helm/dmesg/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/helm/dmesg/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/dmesg/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/helm/dmesg/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/dmesg/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/helm/dmesg/templates/daemonset.yaml -------------------------------------------------------------------------------- /helm/dmesg/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/helm/dmesg/templates/service.yaml -------------------------------------------------------------------------------- /helm/dmesg/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/helm/dmesg/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /helm/dmesg/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/helm/dmesg/values.yaml -------------------------------------------------------------------------------- /kmsg/kmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/kmsg/kmsg.go -------------------------------------------------------------------------------- /kmsg/kmsg_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/kmsg/kmsg_suite_test.go -------------------------------------------------------------------------------- /kmsg/kmsg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/kmsg/kmsg_test.go -------------------------------------------------------------------------------- /kmsg/testdata/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/kmsg/testdata/data.txt -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/main.go -------------------------------------------------------------------------------- /reader/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/reader/reader.go -------------------------------------------------------------------------------- /reader/reader_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/reader/reader_suite_test.go -------------------------------------------------------------------------------- /reader/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirocosta/dmesg_exporter/HEAD/reader/reader_test.go --------------------------------------------------------------------------------