feat: implement automatic log truncation to maintain last 250 entries
This commit is contained in:
20
lib/audit.ts
20
lib/audit.ts
@@ -1,10 +1,13 @@
|
|||||||
/**
|
/**
|
||||||
* Append-only NDJSON audit logging.
|
* Append-only NDJSON audit logging.
|
||||||
* Every tool call automatically logs — no manual action needed from agents.
|
* Every tool call automatically logs — no manual action needed from agents.
|
||||||
|
* Automatically truncates log to keep only last 250 lines.
|
||||||
*/
|
*/
|
||||||
import { appendFile, mkdir } from "node:fs/promises";
|
import { appendFile, mkdir, readFile, writeFile } from "node:fs/promises";
|
||||||
import { join, dirname } from "node:path";
|
import { join, dirname } from "node:path";
|
||||||
|
|
||||||
|
const MAX_LOG_LINES = 250;
|
||||||
|
|
||||||
export async function log(
|
export async function log(
|
||||||
workspaceDir: string,
|
workspaceDir: string,
|
||||||
event: string,
|
event: string,
|
||||||
@@ -18,6 +21,7 @@ export async function log(
|
|||||||
});
|
});
|
||||||
try {
|
try {
|
||||||
await appendFile(filePath, entry + "\n");
|
await appendFile(filePath, entry + "\n");
|
||||||
|
await truncateIfNeeded(filePath);
|
||||||
} catch (err: unknown) {
|
} catch (err: unknown) {
|
||||||
// If directory doesn't exist, create it and retry
|
// If directory doesn't exist, create it and retry
|
||||||
if ((err as NodeJS.ErrnoException).code === "ENOENT") {
|
if ((err as NodeJS.ErrnoException).code === "ENOENT") {
|
||||||
@@ -27,3 +31,17 @@ export async function log(
|
|||||||
// Audit logging should never break the tool — silently ignore other errors
|
// Audit logging should never break the tool — silently ignore other errors
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function truncateIfNeeded(filePath: string): Promise<void> {
|
||||||
|
try {
|
||||||
|
const content = await readFile(filePath, "utf-8");
|
||||||
|
const lines = content.split("\n").filter(line => line.length > 0);
|
||||||
|
|
||||||
|
if (lines.length > MAX_LOG_LINES) {
|
||||||
|
const keptLines = lines.slice(-MAX_LOG_LINES);
|
||||||
|
await writeFile(filePath, keptLines.join("\n") + "\n", "utf-8");
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
// Silently ignore truncation errors — log remains intact
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user