Log Agent, rational and how it works

R. S. Doiel,

Caltech Library, Digital Library Development

2025-03-26

LogAgent and LogAnalyst, rational and usage

LogAgent
A simple way to use a sub string in a log to trigger an action
LogAnalyst
A simple way to aggregate counts by turning NginX log entries into structured data.

Why LogAgent?

Original Problem

Solution, use something simpler along side fail2ban.

How does it work

What does the configuration look like?

A single “tag” and “action”

Search for “BadBot” and ban it with iptables.

- tag: BadBot
  action: |
    sudo iptables -A INPUT -p tcp -m multiport
    --dports 80,443 -s {ipaddress} -j DROP

Running log agent

sudo logagent badbot.yaml /var/log/nginx/access.log

Explanation

For each IP address identified on a tagged log line the action will be executed. Given the example action that means the IP address associated with log lines containing “BadBot” are banned from connecting to ports 80 and 443.

Why LogAnalyst

Sometimes the bots aren’t the problem and the system runs well. Often I’ve found my self grepping the log for specific things to total up. LogAnalyst automates some of this activity. It reads in a stream of log entries, tokenizes them into a structured record then performs some analysis. The analyst is returned as a JSON object.

The tokenization part is the tricky bit, fortunately it’s implemented as a TypeScript module.

LogAnalyst in the future

I suspect I will add different types of analysis over time. As the logtok.ts module improves what I learn in LogAnalyst will be fed back into LogAgent.

Reminder

LogAgent is an experimental “proof of concept” simple log processor written in TypeScript and compiled with Deno into a stand alone executable. It is a naive tool so take care with the action you assign for a tag.

Reference