TL DR: should you use graylog instead mariadb as database for a moderate amount of data? Would this be a good idea?
Longversion: There is a python script which puts some nmap monitoring data (maybe 1000 to 10000 rows) into a maria database each day. It is using sql alchemy, a flask website is using the same datatypes to display the results and everything is working fine. The model is not too complicated, 3 Tables with a one to many relation.
ip range -> hosts -> ports (with results)
Now my boss wants to put everything into graylog with a python binding and to abadon sql alchemy and the mariadb completly.
My question is: would you recommend to keep the existing structure and just export each night everything from the mariadb into the graylog server (the data is collected just once a night).
Replace the database / mysql alchemy and use Graylog directly? I have never worked with Graylog and I am not sure if you can use it as a database replacement.