Other articles

  1. Analyzing daily traffic per port with Python Pandas

    About a week after I configured Event Scheduler in MariaDB as in the previous article, I have data like below in the database.

    SELECT port_id, `ifOutOctets`, `ifInOctets`,captured_at
    FROM ports_hist
    WHERE captured_at < '2024-08-10' AND captured_at > '2024-08-02'
        AND port_id IN (3,4)
    ORDER BY port_id, captured_at;
    +---------+--------------+--------------+---------------------+
    | port_id | ifOutOctets  | ifInOctets   | captured_at         |
    +---------+--------------+--------------+---------------------+
    | 3 …
    read more

    comments

  2. Recording daily traffic per port on LibreNMS

    Background

    About a half year ago, I started using LibreNMS, a handy SNMP network device monitoring software. Since then, I use it to manage about 30 Cisco L2/L3 switches (of course, managed), all exist at a single manufacturing site.

    Though I joined the site only one year ago, the …

    read more

    comments

Page 1 / 7 »

social