50 components available

Logs Explorer

October 2024
A real-time animated stream of log messages with timestamped entries and status-based color coding.
12 Mar 11:04:57
[LOG]
Generated JWT token for user
12 Mar 11:04:56
[LOG]
WebSocket connection established
12 Mar 11:04:56
[LOG]
WebSocket connection established
12 Mar 11:04:55
[LOG]
Generated JWT token for user
12 Mar 11:04:53
[LOG]
Session was invalidated after timeout
12 Mar 10:48:13
[ERROR]
Failed to connect to database
12 Mar 10:31:33
[LOG]
Session was invalidated after timeout
12 Mar 10:14:53
[INFO]
CORS enabled - accepting requests from all origins
12 Mar 09:58:13
[INFO]
Module dependencies initialized (+32ms)
12 Mar 09:41:33
[INFO]
Application listening on port 5000
12 Mar 09:24:53
[INFO]
CORS enabled - accepting requests from all origins
12 Mar 09:08:13
[LOG]
Generated JWT token for user
12 Mar 08:51:33
[INFO]
CORS enabled - accepting requests from all origins
12 Mar 08:34:53
[LOG]
Session was invalidated after timeout
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