
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
fluent-plugin-mysql-appender
Advanced tools
Fluentd input plugin to track insert event only from MySQL database server. Simple incremental id's insert.
install with gem or fluent-gem command as:
# for system installed fluentd
$ gem install fluent-plugin-mysql-appender
# for td-agent2
$ td-agent-gem install fluent-plugin-mysql-appender
It is a example when detecting insert events.
$ mysql -e "create database myweb"
$ mysql myweb -e "create table search_test(id int auto_increment, text text, PRIMARY KEY (id))"
$ sleep 10
$ mysql myweb -e "insert into search_test(text) values('aaa')"
$ tail -f /var/log/td-agent/td-agent.log
2013-11-25 18:22:25 +0900 appender.myweb.search_test: {"id":"1","text":"aaa"}
mysql query log is below
$ tail -f /var/log/mysql/general-query.log
161108 19:25:52 4 Connect root@localhost on myweb
4 Query SELECT id, text FROM search_test where id > -1 order by id asc
4 Quit
161108 19:26:02 5 Connect root@localhost on myweb
4 Query SELECT id, text FROM search_test where id > 1 order by id asc
4 Quit
see example/mysql_single_table_to_tresure_data.md.
Features
see example/mysql_multi_table_to_tresure_data.md.
Features
Pull requests are very welcome like below!!
FAQs
Unknown package
We found that fluent-plugin-mysql-appender demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.