refactor: Rename emitter to agent, update related files and logging paths

This commit is contained in:
serversdwn
2026-03-03 17:10:47 -05:00
parent 0d5fa7677f
commit d404bf6542
6 changed files with 32 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
# Series3-Emitter v1.2
# Series3 Ingest Agent v1.2
A lightweight Python script that monitors Instantel **Series 3 (Minimate)** call-in activity on a Blastware server.
@@ -28,9 +28,9 @@ Install dependencies with:
## Usage
Run the emitter from the folder containing the script:
Run the agent from the folder containing the script:
`python series3_emitter.py`
`python series3_agent.py`
The script will:
@@ -38,7 +38,7 @@ The script will:
2. Sniff each file header for the unit ID.
3. Print a status line for each detected unit (OK / Pending / Missing).
4. Optionally POST a heartbeat payload on an interval when `API_ENABLED=true`.
5. Write logs into the `emitter_logs/` folder and auto-clean old logs.
5. Write logs into the `agent_logs/` folder and auto-clean old logs.
---
@@ -65,7 +65,7 @@ Key fields:
## Logs
Logs are stored under `emitter_logs/`.
Logs are stored under `agent_logs/`.
Git ignores all log files but keeps the folder itself.
---
@@ -74,7 +74,7 @@ Git ignores all log files but keeps the folder itself.
This repo follows **Semantic Versioning (SemVer)**.
Current release: **v1.2.0** — rosterless scanning with API heartbeat option.
Current release: **v1.2.1** — renamed to series3 ingest agent.
See `CHANGELOG.md` for details.
---