On Tue, 3 May 2022 18:19:50 +0000 "Compton, Rich A" <[email protected]> wrote:
> Hi, I’m trying to take the netflow records from nfacctd and process > them with a python script. Can someone suggest how I can do this > with python without having nfacctd put them into a database and then > have my python script read it? You could use the in-memory recording and poll and clear out the old data with python. I don't know how well that would work, depending on scale. I tend to favor relational databases and would lean toward using sqlite if you're looking for "simple". (And Postgres for everything else.) You are collecting tabular data, which RDBMSs excel at. Regards, Karl <[email protected]> Free Software: "You don't pay back, you pay forward." -- Robert A. Heinlein _______________________________________________ pmacct-discussion mailing list http://www.pmacct.net/#mailinglists
