-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CrateDB] Add support for data acquisition and data export #148
base: main
Are you sure you want to change the base?
Changes from all commits
c13babb
4be8ea0
3853f09
20418da
fb5d55f
f17d194
a6d66d5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,39 +14,52 @@ contributed to Kotori in one way or another. | |
* Anne-Julia Scheuermann <[email protected]> | ||
* Carolin Johannsen <[email protected]> | ||
* Clemens Gruber <[email protected]> | ||
* Georg Traar <[email protected]> | ||
* Georges Gagliano <https://github.com/ggeorges39> | ||
* Géraldine Farcy-Merlo <https://mellisphera.com/> | ||
* Hernan Cianfagna <[email protected]> | ||
* Jan Hoffmann <[email protected]> | ||
* Jens Schmelkus <[email protected]> | ||
* Karsten Harazim <[email protected]> | ||
* Lorenzo Pons <https://mellisphera.com/> | ||
* Marija Selakovic <[email protected]> | ||
* Markus Euskirchen <[email protected]> | ||
* Matthias Büchner <[email protected]> | ||
* Matthias Mehldau <[email protected]> | ||
* Michael Haberler <[email protected]> | ||
* Niklas Schmidtmer <[email protected]> | ||
* Richard Pobering <[email protected]> | ||
* Roh <incognito> | ||
* Rui Alexandre Teixeira Sousa Pinto <https://github.com/RuiPinto96> | ||
* Sebastian Donner <[email protected]> | ||
* Sebastian Henneke <[email protected]> | ||
* Sebastian Utz <[email protected]> | ||
* Smilie <[email protected]> | ||
* Thorsten Kluß <[email protected]> | ||
* Walter Behmann <[email protected]> | ||
* Weef <incognito> | ||
|
||
Thanks a bunch! | ||
Thanks a stack. | ||
|
||
|
||
**************** | ||
Acknowledgements | ||
**************** | ||
|
||
Kotori would not have been possible without all the amazing people | ||
working on the infrastructure the software is leveraging. | ||
working on the infrastructure the software is leveraging and building | ||
upon. | ||
|
||
- Glyph Lefkowitz et al. for conceiving, building and maintaining the | ||
Twisted network programming framework. | ||
- Dr. Andy Stanford-Clark and Arlen Nipper for inventing the MQTT | ||
messaging protocol. | ||
- Roger Light et al. for conceiving, building and maintaining the | ||
Mosquitto MQTT broker. | ||
- Torkel Ödegaard and his team for creating and maintaining Grafana. | ||
- Bernd Dorn, Bernd Rössl, Jodok Batlogg, Bernhard Kuzel, Mathias | ||
Fußenegger, Sebastian Utz, et al., for conceiving and maintaining | ||
CrateDB. | ||
- Paul Dix and his team for creating and maintaining InfluxDB. | ||
- The PostgreSQL and MongoDB developers for creating and maintaining | ||
their database systems. | ||
|
@@ -59,4 +72,4 @@ working on the infrastructure the software is leveraging. | |
to put everything together. | ||
|
||
Thank you so much for providing such great infrastructure | ||
components and resources to the community! You know who you are. | ||
components and resources to the community. You know who you are. |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -26,14 +26,16 @@ Infrastructure components | |||||
|
||||||
- Kotori_, a data acquisition, graphing and telemetry toolkit | ||||||
- Grafana_, a graph and dashboard builder for visualizing time series metrics | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
- InfluxDB_, a time-series database | ||||||
- CrateDB_, a time-series database ¹ | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does anyone have a better suggestion, describing CrateDB within a single, short and concise sentence?
Suggested change
|
||||||
- InfluxDB_, a time-series database ¹ | ||||||
- Mosquitto_, an MQTT message broker | ||||||
- MongoDB_, a document store (optional) ¹² | ||||||
- MongoDB_, a document store (optional) ²³ | ||||||
|
||||||
| ¹ MongoDB is only required when doing CSV data acquisition, so it is completely | ||||||
| ¹ Kotori can either use CrateDB or InfluxDB as timeseries database. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| ² MongoDB is only required when doing CSV data acquisition, so it is completely | ||||||
| optional for regular operations of Kotori. | ||||||
| ² As MongoDB - strictly speaking - stopped being free software recently (2018/2019), | ||||||
| it will probably be phased out gradually and replaced by PostgreSQL_. | ||||||
| ³ As MongoDB - strictly speaking - stopped being free software recently (2018/2019), | ||||||
| it will probably be phased out gradually and replaced by PostgreSQL_ or CrateDB_. | ||||||
|
||||||
|
||||||
Supported protocols | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.