50 components available

Logs Explorer

October 2024
A real-time animated stream of log messages with timestamped entries and status-based color coding.
17 Mar 01:36:35
[LOG]
Generated JWT token for user
17 Mar 01:19:55
[INFO]
CORS enabled - accepting requests from all origins
17 Mar 01:03:15
[INFO]
CORS enabled - accepting requests from all origins
17 Mar 00:46:35
[INFO]
Application listening on port 5000
17 Mar 00:29:55
[LOG]
WebSocket connection established
17 Mar 00:13:15
[LOG]
Session was invalidated after timeout
16 Mar 23:56:35
[LOG]
Session was invalidated after timeout
16 Mar 23:39:55
[LOG]
Generated JWT token for user
16 Mar 23:23:15
[LOG]
Generated JWT token for user
16 Mar 23:06:35
[ERROR]
Failed to connect to database
Playground
() => {
  const LOG_LEVELS = {
    LOG: [
      'WebSocket connection established',
      'Generated JWT token for user',
      'Session was invalidated after timeout',
      'Sendgrid welcome email sent',
    ],
    INFO: [
      'Application listening on port 5000',
      'CORS enabled - accepting requests from all origins',
      'Bluetooth services started successfully',
      'Module dependencies initialized (+32ms)',
    ],
    ERROR: [
      'Failed to connect to database',
      'Failed to fetch data from /api/v1/items',
    ],
  };

  return <LogsExplorer logs={LOG_LEVELS} />
};
Source Code
Whoops, hang on for a sec
You don't have access to view this resource