50 components available

Logs Explorer

October 2024
A real-time animated stream of log messages with timestamped entries and status-based color coding.
28 Feb 19:10:41
[LOG]
WebSocket connection established
28 Feb 19:10:40
[INFO]
Application listening on port 5000
28 Feb 18:54:00
[INFO]
Application listening on port 5000
28 Feb 18:37:20
[INFO]
Application listening on port 5000
28 Feb 18:20:40
[INFO]
Application listening on port 5000
28 Feb 18:04:00
[LOG]
Sendgrid welcome email sent
28 Feb 17:47:20
[INFO]
Bluetooth services started successfully
28 Feb 17:30:40
[INFO]
CORS enabled - accepting requests from all origins
28 Feb 17:14:00
[INFO]
Application listening on port 5000
28 Feb 16:57:20
[LOG]
WebSocket connection established
28 Feb 16:40:40
[LOG]
Sendgrid welcome email sent
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