Flint 3 (GL-BE9300) Repository Package Request

Just wondering if there was a method to request packages to be added to the GL iNet repo for the flint 3 or a method to build them ourselves with a build env. I am specificly looking to add the following 3 packages so I can have stats from my Flint 3 sent to mqtt to later flow into Home Assistant. Thank you for any help anyone or GLiNet can provide!

collectd-mod-mqtt
collectd-mod-uptime
collectd-mod-ping

2 Likes

Hi,

Will try to compile these plugins if it is compatible with Flint3 arch.
Please wait.

2 Likes

Same request , looking for the collectd-mod-mqtt plugin

Added. Please update again.

2 Likes

bruce you are my hero! thank you very much!

1 Like

if anyone does drop in here and the LUCI config doesnt work for you, you can go custom with it via cli.

uci set collectd.globals.alt_config_file='/etc/collectd-custom.conf'
uci commit collectd

and put your manual config in /etc/collectd-custom.conf and restart collectd, example of my config:

BaseDir "/var/run/collectd"
PIDFile "/var/run/collectd.pid"
PluginDir "/usr/lib/collectd"
TypesDB "/usr/share/collectd/types.db"
Interval 15
ReadThreads 2
WriteThreads 2
CollectInternalStats false
Hostname "Hostname"
#Include "/etc/collectd/conf.d"

LoadPlugin cpu
<Plugin cpu>
	ValuesPercentage true
	ReportByCpu true
	ReportByState true
</Plugin>

LoadPlugin memory
<Plugin memory>
	ValuesPercentage false
	ValuesAbsolute true
</Plugin>

LoadPlugin mqtt
<Plugin mqtt>
	<Publish "hostname">
		Host "192.168.0.0"
		Port 0000
		User "USER"
		Password "PASSWORD"
		Qos 1
		Retain true
	</Publish>
</Plugin>

LoadPlugin ping
<Plugin ping>
	TTL 127
	Interval 240
	AddressFamily "ipv4"
	Host "192.168.0.0"
	Host "8.8.8.8"
</Plugin>


LoadPlugin rrdtool
<Plugin rrdtool>
	DataDir "/tmp/rrd"
	RRARows 288
	RRASingle true
	RRATimespan 7200
	RRATimespan 86400
	RRATimespan 604800
	RRATimespan 2678400
	RRATimespan 31622400
</Plugin>

LoadPlugin interface
<Plugin interface>
	Interface "br-lan"
	Interface "eth0"
	Interface "eth1"
	Interface "br-iot"
</Plugin>


LoadPlugin uptime
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.