This tutorial teaches how to setup Fluentd on the Olimex board with the sensor.
Before doing this tutorial make sure you read and completed the following tutorials
There are two ways how you can setup Fluentd. The first way uses the SlapOS web panel / dashboard. The second way makes use of the SlapOS Client. For the second way you will need to configure the SlapOS client. For that read SlapOS HowTo Use SlapOS Client tutorial from Get SlapOS Master Token chapter.
Login to the panel and click on Servers (c).
Select the machine on which you want to supply Fluentd.
Click on the Supply button.
Select Fluentd.
Choose the newest version.
Click on Proceed.
Wait until the compilation process has been finished.
First find the reference of your Streaming Device.
It is located in your Slapos Dashboard in Servers tab.
Then using supply command of Slapos Client install Fluentd software release on that computer.
supply("https://lab.nexedi.com/nexedi/slapos/raw/master/software/fluentd/software.cfg", "YOUR_COMPUTER_ID")
You can monitor the process by running
tail -f /opt/slapos/log/slapos-node-software.log
on the respective machine.
<source> @type exec tag YOUR_TAG_NAME command python3 /usr/local/bin/custom_read_bme280.py run_interval 1m <parse> keys pressure, humidity, temperature </parse> </source> <match YOUR_TAG_NAME> @type forward <server> name myserver1 host IPV6_ADDRESS_OF_YOUR_IOT_GATEWAY </server> </match>
About Fluentd configuration file you can learn from here.
For input plugin we use Fluentd's standard exec plugin.
The plugin will execute the python script we wrote in HowTo Setup Sensor and IOT Gateway to read sensor data every minute.
For output plugin we use Fluentd's standard forward plugin.
YOUR_TAG_NAME - it must consist of two part separated by .(dot). For example sensor_1.sample-environment-raw-data. First part (sensor_1) is the name of the sensor and must be the same as the reference of the Data Supply we created in HowTo Create Data Supply tutorial. The second part (sample-environment-raw-data) is the type of data (Data Product - HowTo Create Data Product).
host - IPV6 address of your server where data will be sent. In our case it will be the address of IOT Gateway.
Go to the SlapOS dashboard and click on the Services (l) button.
Click on the Add button.
Select Fluentd.
Pick the newest version.
Enter a title for your Fluentd instance.
Select the machine on which you previously supplied Fluentd by clicking on the Compute Node drop-down list. This is the machine on which the instance will be requested.
Fill in the Fluentd configuration parameters in the Configuration field.
<source> @type exec tag YOUR_TAG_NAME command python3 /usr/local/bin/custom_read_bme280.py run_interval 1m <parse> keys pressure, humidity, temperature </parse> </source> <match YOUR_TAG_NAME> @type forward <server> name myserver1 host IPV6_ADDRESS_OF_YOUR_IOT_GATEWAY </server> </match>
Don't forget to correctly fill in your computer reference, instance name, URL and so on.
Finally, click Proceed to request the instance.
config_params = """<source> @type exec tag YOUR_TAG_NAME command python3 /usr/local/bin/custom_read_bme280.py run_interval 1m <parse> keys pressure, humidity, temperature </parse> </source> <match YOUR_TAG_NAME> @type forward <server> name myserver1 host IPV6_ADDRESS_OF_YOUR_IOT_GATEWAY </server> </match>""" request("https://lab.nexedi.com/nexedi/slapos/raw/master/software/fluentd/software.cfg", "Sensor-Tutorial-Fluentd",filter_kw={"computer_guid": "YOUR_COMPUTER_ID"}, partition_parameter_kw={"conf_text":config_params})
As the Fluentd configuration has many parameters for convenience we will write a short python script which will request the instance, instead of calling request function from Slapos Client.
Create a python script and name it request_fluentd.py and copy/paste the presented code.
** Don't forget to correctly fill in your computer reference, Instance name, url etc.
As we are requesting instance of fluentd for the same computer the reference is the same as when we were supplying the software.
"YOUR_INSTANCE_NAME" - give your instance a distinguishing name so you can later easily find it. For example Sensor-Tutorial-Fluentd.
Once it's ready run it by calling following command :
slapos console request_fluentd.py
You can monitor the process by running
tail -f /opt/slapos/log/slapos-node-instance.log
on the respective machine.
This step can take some time.
In your SlapOS dashboard you can see you newly requested instance.
Instance is ready when the the Monitoring Status is green.
Note that the Fluentd configuration parameters we defined earlier can be found and edited in the Parameter Form section.
Login to your Sensor and run the following command :
sudo slapos node status
You see that a new service for Fluentd is added.
And the generated flunted configuration file is located here :
/srv/slapgrid/slappartX/etc/fluentd-agent.conf
Now your sensor is ready to retrieve data and to send it to, in our case, the IOT Gateway.
Fluentd raises errors when trying to run the python script "
custom_read_bme280.py
"
If in Fluentd log you see smbus package raising an
IOError
or OverflowError("Bus number is invalid."),
it could be that in newer versions of the Olimex image use a different devicetree than the version which has been used when developing this tutorial. In this case you have to adjust the integer inside the bme280_i2c.set_default_bus
call. Please see here for more information.For more information, please contact Jean-Paul, CEO of Nexedi (+33 629 02 44 25).