├── .github ├── release.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .goreleaser.public.yaml ├── CNAME ├── LICENSE ├── Makefile ├── README.md ├── docker-compose.yml ├── docs └── static │ └── kawa.png ├── go.mod ├── go.sum ├── processor.go ├── processor_test.go ├── test ├── bench.txt ├── stream_test.go └── suite_test.go ├── types.go └── x ├── batcher ├── batcher.go └── batcher_test.go ├── memory └── memory.go ├── mqtt └── mqtt.go ├── multi ├── multidest.go └── multisrc.go ├── poller └── poller.go ├── printer ├── printer.go └── printer_test.go ├── s3 └── s3.go └── scanner └── scanner.go /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .coverprofile 2 | dist 3 | -------------------------------------------------------------------------------- /.goreleaser.public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/.goreleaser.public.yaml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.gokawa.dev 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/static/kawa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/docs/static/kawa.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/go.sum -------------------------------------------------------------------------------- /processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/processor.go -------------------------------------------------------------------------------- /processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/processor_test.go -------------------------------------------------------------------------------- /test/bench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/test/bench.txt -------------------------------------------------------------------------------- /test/stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/test/stream_test.go -------------------------------------------------------------------------------- /test/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/test/suite_test.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/types.go -------------------------------------------------------------------------------- /x/batcher/batcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/x/batcher/batcher.go -------------------------------------------------------------------------------- /x/batcher/batcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/x/batcher/batcher_test.go -------------------------------------------------------------------------------- /x/memory/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/x/memory/memory.go -------------------------------------------------------------------------------- /x/mqtt/mqtt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/x/mqtt/mqtt.go -------------------------------------------------------------------------------- /x/multi/multidest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/x/multi/multidest.go -------------------------------------------------------------------------------- /x/multi/multisrc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/x/multi/multisrc.go -------------------------------------------------------------------------------- /x/poller/poller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/x/poller/poller.go -------------------------------------------------------------------------------- /x/printer/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/x/printer/printer.go -------------------------------------------------------------------------------- /x/printer/printer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/x/printer/printer_test.go -------------------------------------------------------------------------------- /x/s3/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/x/s3/s3.go -------------------------------------------------------------------------------- /x/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runreveal/kawa/HEAD/x/scanner/scanner.go --------------------------------------------------------------------------------