TL;DR
AI security for enterprise starts with knowing what your agents actually do. reskpoints is an AI agent logger that captures every action with probability, parameters, and result, then exports to Datadog, Prometheus, OpenTelemetry, webhooks, JSON files, or your console. One line of code gives you a full audit trail.
The risk: unaudited agent actions
Your AI agents call tools, execute code, send messages, and search databases. Without a logging mechanism, you have no idea what they did, how confident they were, or what parameters they used. That is not just an operational blind spot. It is a compliance gap and a silent failure waiting to happen.
In enterprise environments, this gap becomes a liability. Auditors ask for evidence. Security teams ask for traceability. Incident responders ask for the exact sequence of events. If your agents are black boxes, you cannot answer any of those questions.
The chart below shows the top risks enterprises face without agent observability. Unaudited agent actions lead at 88%, followed by compliance gaps at 78% and silent failures at 70%.
How the mechanism works: agent observability inside your app
Agent observability with reskpoints sits directly in your agent code. It does not require a proxy or a separate service. You import AgentLogger, call log() or alog(), and the logger handles the rest.
Here is the step-by-step flow inside your application:
-
Capture — Your agent calls
logger.log(agent_id, action, probability, params, result). The logger auto-enriches the event with a timestamp, host, environment, and UUID. -
Sample — A
Samplerapplies per-action probabilistic rates. You can logtool_callat 100% andheartbeatat 1% to control volume without losing critical events. -
Mask — A
FieldMaskerautomatically redacts sensitive fields likeapi_key,token,password, and any custom regex patterns before the event leaves your app. -
Export — A
MultiPlatformdispatcher sends the event to one or more platforms: Console, File (JSONL), Webhook (HMAC-signed), Datadog, Prometheus, OpenTelemetry, or Mock. - Reliability — Each platform is wrapped with retry (exponential backoff), circuit breaker (5 fails trigger a 30s recovery), and buffering (1000 entries) so a single platform outage does not kill your logs.
You can also use the @log_action decorator to wrap any function. It logs every call automatically with params, result, and duration.
Before — without it
No logging. No audit trail.
def execute_python(code: str) -> str:
# Agent runs arbitrary code
return run_code(code)
You have no idea what was executed, when, or by which agent.
After — with reskpoints
from reskpoints import AgentLogger, log_action
logger = AgentLogger()
@log_action(agent_id="coder")
def execute_python(code: str) -> str:
return run_code(code)
Or log manually with full context
logger.log(
agent_id="agent-1",
action="tool_call",
probability=0.95,
params={"tool": "search", "query": "RAG papers 2025"},
result=["paper1", "paper2"],
success=True,
duration_ms=1240.5,
session_id="sess_abc123",
correlation_id="req_xyz789",
)
What changed
- Every action is captured with confidence, parameters, and result. No more guessing what the agent did.
-
Sensitive data is masked automatically before it leaves your app.
api_key,token,password, and custom fields are redacted. - Sampling controls volume so you log what matters without drowning in noise.
- Multiple export targets mean your existing observability stack (Datadog, Prometheus, OTel) gets the data it needs.
- Reliability features (retry, circuit breaker, buffering) keep your audit trail intact even when a platform goes down.
Best practices checklist
-
Log at the right granularity. Use
tool_call: 100%for critical actions andheartbeat: 1%for routine checks. -
Always mask secrets. Enable
maskingin yourreskpoints.yamland add custom sensitive fields. -
Use correlation IDs. Pass
session_idandcorrelation_idto trace actions across services. -
Monitor platform health. Call
logger.health()regularly to catch degraded exports before they become gaps. -
Replay logs for audits. Use
reskpoints replay logs.jsonlto reconstruct exactly what happened during an incident.
Honest limitations
reskpoints is a logging library, not a full security platform. It does not block actions or enforce policies. It captures and exports what your agents do. If you need real-time prevention, you will need additional controls. Also, while masking is automatic for common fields, you should review your custom parameters to ensure no sensitive data slips through. Finally, the library supports Python; other languages are not covered.
Conclusion
AI security for enterprise requires visibility. reskpoints gives you that visibility with one line of code. Capture every agent action, mask sensitive data, and export to your existing stack. Start by installing it and adding a single log call.
pip install reskpoints
pip install reskpoints[datadog,prometheus,opentelemetry]
Explore more AI security tools for enterprise at resk.fr and contribute on GitHub.
Tags: #ai #security #observability #python

Top comments (0)