├── .gitignore ├── Dockerfile ├── README.md ├── adapter └── MqttConfig.go ├── app.go ├── controllers └── HealthController.go ├── db └── InfluxConfig.go ├── doc ├── architecture.excalidraw └── images │ └── architecture.png ├── go.mod ├── go.sum └── models ├── ChipEvent.go └── Health.go /.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | mqtt-golang-subscriber 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/README.md -------------------------------------------------------------------------------- /adapter/MqttConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/adapter/MqttConfig.go -------------------------------------------------------------------------------- /app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/app.go -------------------------------------------------------------------------------- /controllers/HealthController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/controllers/HealthController.go -------------------------------------------------------------------------------- /db/InfluxConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/db/InfluxConfig.go -------------------------------------------------------------------------------- /doc/architecture.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/doc/architecture.excalidraw -------------------------------------------------------------------------------- /doc/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/doc/images/architecture.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/go.sum -------------------------------------------------------------------------------- /models/ChipEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/models/ChipEvent.go -------------------------------------------------------------------------------- /models/Health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbgjerez/mqtt-golang-influxdb/HEAD/models/Health.go --------------------------------------------------------------------------------