Total Logs
32,459
+156 today
Error Rate
0.8%
-0.3% from yesterday
Active Sources
6
No change
Last Update
2 minutes ago
Auto-refreshing
Structured Logging & Activity Monitor
32,459
+156 today
0.8%
-0.3% from yesterday
6
No change
2 minutes ago
Auto-refreshing
The GWAS.tools logging system provides a comprehensive and structured approach to capturing activities across the entire GWAS project ecosystem. Our append-only log structure ensures a complete history of all actions and events, providing valuable insights for troubleshooting, auditing, and analysis.
All logs follow a consistent JSON schema, making them easily parsable and queryable.
Collect and centralize logs from all GWAS domains and applications.
View log entries as they happen with minimal delay.
Quickly find the information you need with powerful search and filter capabilities.
Our logging system integrates with various components of the GWAS ecosystem, capturing events from multiple sources:
Mouse clicks, keyboard inputs, form submissions, and other UI events.
Application startups, shutdowns, configuration changes, and system alerts.
Requests, responses, and processing times for API calls.
CPU usage, memory consumption, network bandwidth, and response times.
Exceptions, warnings, and error conditions across applications.
Authentication attempts, permissions changes, and security alerts.
Integrate your applications with our logging system using our simple API. Send log events from any application with a simple HTTP request.
curl -X POST https://api.gwas.tools/log \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"source": "my-application",
"type": "info",
"message": "User profile updated",
"details": {
"userId": "user-123",
"fields": ["name", "email"],
"success": true
}
}'