API Request Logs
View detailed history of every API request proxied through KnoxCall with powerful filtering and export capabilities.Overview
API Logs provide complete visibility into your API traffic:- 📋 Every request logged with full details
- 🔍 Filter by status, method, route, client, latency
- 📊 Search request paths and errors
- 💾 Export to CSV (Pro/Enterprise plans)
- 🔗 Deep links from alerts and analytics
- ⏰ Timezone-aware timestamps
Log Entry Details
Each log entry captures:Request Information
- Timestamp: When request received (your timezone)
- Method: HTTP method (GET, POST, PUT, DELETE, etc.)
- Path: Request path including query parameters
- Route: Which KnoxCall route handled it
- Environment: Environment used (if specified)
Client Information
- Client: Client name/IP that made request
- Source IP: Originating IP address
- User Agent: Client’s user agent string
- Geographic Location: City, country (if available)
Response Information
- Status Code: HTTP response code (200, 404, 500, etc.)
- Latency: Response time in milliseconds
- Backend Response: Status from target API
- Error: Error message if request failed
Security Information
- API Key: Which key authenticated request (key ID only, not full key)
- Authorization: Whether authorized (client IP whitelisted)
- Secrets Used: Which secrets injected (names only, not values)
Viewing Logs
Step 1: Navigate to Logs
- Click Monitoring in sidebar
- Select API Logs
- See recent requests (most recent first)
Step 2: Use Filters
Filter by Status Code:Step 3: View Log Details
Click any log entry to see full details: Request tab:Common Use Cases
Use Case 1: Debugging Failed Requests
Scenario: User reports payment failed Steps:- Filter by Status: 5xx Server Error
- Filter by Route: stripe-payments
- Filter by Time: Last hour
- Find user’s request
- View error details
- Identify issue (e.g., Stripe API down)
Use Case 2: Investigating Slow Requests
Scenario: Users complaining about slow checkout Steps:- Filter by Route: checkout-route
- Filter by Latency: Min 2000ms (>2 seconds)
- Sort by latency (highest first)
- View slowest requests
- Check common patterns (specific endpoint? time of day?)
- Optimize accordingly
Use Case 3: Security Audit
Scenario: Suspicious activity detected Steps:- Filter by Status: 401 Unauthorized OR 403 Forbidden
- Review source IPs
- Identify unauthorized access attempts
- Block malicious IPs
- Export logs for security review
Use Case 4: Client Verification
Scenario: Client reports requests not reaching backend Steps:- Filter by Client: client-name
- Filter by Time: Expected time window
- Check if requests appear
- If yes: Check status codes, errors
- If no: Client not sending to correct URL/route
Use Case 5: Secret Usage Audit
Scenario: Which routes use a specific secret? Steps:- Navigate to Secret detail page
- Click “View Logs” or “Usage”
- See all requests that injected this secret
- Verify expected routes only
Advanced Filtering
Combining Filters
Example: High-latency errorsSearch Operators
Search by path:Exporting Logs
CSV Export (Pro/Enterprise Only)
What’s exported:- Timestamp
- Method
- Path
- Status Code
- Client name
- Source IP
- Latency (ms)
- Error message (if any)
- Apply filters to select logs
- Click Export button
- CSV downloads automatically
Use Cases for Export
Compliance audits:- Export last 90 days
- Provide to auditors
- Demonstrate API usage
- Import to Excel/Google Sheets
- Create pivot tables
- Generate custom reports
- Export monthly logs
- Store in secure location
- Maintain historical record beyond retention period
Pagination
Logs per page: 10 (configurable) Navigation:- Next/Previous buttons
- Jump to page dropdown
- Total count displayed
- Indexed queries (fast even with millions of logs)
- Lazy loading (only fetch current page)
Retention Policies
By subscription plan:| Plan | Retention Period |
|---|---|
| Starter | 7 days |
| Pro | 30 days |
| Enterprise | 90 days (customizable) |
- Logs automatically deleted
- Export before expiration if needed
- Upgrade plan for longer retention
Deep Links
Jump to logs from: Alerts:- Alert triggers → View triggering requests
- Click chart → Drill down to specific time period
- View logs for specific route
- View logs from specific client
- View requests using secret
Timezone Handling
Timestamps displayed in:- Your configured timezone (Settings → Profile)
- Default: UTC
- Date
- Time (24-hour format)
- Timezone abbreviation
Troubleshooting
Issue: “No logs displayed”
Causes:- No requests in time range
- Filters too restrictive
- Logs expired (past retention period)
- Clear all filters
- Expand time range
- Check if route is active
Issue: “Can’t export logs”
Cause: Starter plan (export requires Pro/Enterprise) Fix: Upgrade subscription planIssue: “Missing request details”
Cause: Log entry truncated (very large request/response) Details stored:- Headers: All
- Body: First 10KB
- Response: First 10KB
Issue: “Logs show wrong timezone”
Fix:- Navigate to Settings → Profile
- Update timezone
- Logs update automatically
Best Practices
1. Regular Log Reviews
Weekly:- Review error logs (4xx, 5xx)
- Identify patterns
- Fix recurring issues
2. Export for Long-Term Storage
Monthly:- Export last 30 days
- Archive to secure storage
- Maintain audit trail
3. Use Filters to Reduce Noise
Focus on what matters:- Filter out successful requests (when debugging)
- Filter specific routes (when investigating)
- Use latency filters (performance analysis)
4. Combine with Alerts
Workflow:- Alert fires (e.g., high error rate)
- Click “View Logs” from alert
- See filtered logs that triggered alert
- Investigate root cause
5. Monitor Unauthorized Attempts
Security practice:- Weekly review of 401/403 errors
- Identify patterns (IP ranges, times)
- Block malicious actors
- Alert on unusual activity
Related Features
- Alerts: Set up alerts based on log patterns
- Analytics: Aggregate log data into metrics
- Audit Logs: Track configuration changes (separate from API logs)
Next Steps
Alerts
Configure alerts from log patterns
Analytics
View aggregate metrics
Audit Logs
Track configuration changes
Routes
Configure routes to monitor
Statistics: Level: beginner | Time: 10 minutes | Tags:
logs, monitoring, debugging, audit, export