Within the genparker backend platform application (backend), there are three kafka topics that needs to be used to send messages from genparker kafka to anywhere else. Explore the code and notice the comments placed to support kafka. For each topics a message must be properly structured:
We got the following topics:
Logs
The error message sent by the module.
key:
"{mac}~{key}"
value:
{
"message": "string",
"log": number // the type of log
}
Module
The module that has been created with all it's details.
Within the genparker backend platform application (backend), there are three kafka topics that needs to be used to send messages from genparker kafka to anywhere else. Explore the code and notice the comments placed to support kafka. For each topics a message must be properly structured:
We got the following topics: Logs The error message sent by the module.
Module The module that has been created with all it's details.
Data The sensor data being sent over time.