Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: EthernetInterface FluentLogger mbed-rtos mbed
Homepage
Example for simple message logging.
main.cpp
#include "mbed.h"
#include "rtos.h"
#include "EthernetInterface.h"
#include "FluentLogger.h"
EthernetInterface eth;
FluentLogger logger("192.168.0.1"); // please set your Fluentd server
int main()
{
eth.init(); //Use DHCP
eth.connect();
while(1) {
logger.log("debug.mbed", "Hello mbed"); //message body is simple string
wait_ms(10000);
}
logger.close();
eth.disconnect();
}
Server Configuration¶
Fluentd daemon must be lauched with the following configuration:
<source> type tcp port 24224 </source> <match debug.**> type stdout </match>
