adonisjs-server-stats 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,21 +10,21 @@ Zero frontend dependencies. Zero build step. Just `@serverStats()` and go.
10
10
 
11
11
  **Stats bar** -- always-on metrics strip at the bottom of every page:
12
12
 
13
- ![Stats bar with live server metrics](screenshots/debug-queries.png)
13
+ ![Stats bar with live server metrics](https://raw.githubusercontent.com/simulieren/adonisjs-server-stats/main/screenshots/debug-queries.png)
14
14
 
15
15
  **Debug toolbar** -- expandable panels for deep inspection:
16
16
 
17
17
  | Queries | Events |
18
18
  |---------|--------|
19
- | ![Queries panel showing SQL queries with duration and model info](screenshots/debug-queries.png) | ![Events panel showing application events with payload data](screenshots/debug-events.png) |
19
+ | ![Queries panel showing SQL queries with duration and model info](https://raw.githubusercontent.com/simulieren/adonisjs-server-stats/main/screenshots/debug-queries.png) | ![Events panel showing application events with payload data](https://raw.githubusercontent.com/simulieren/adonisjs-server-stats/main/screenshots/debug-events.png) |
20
20
 
21
21
  | Routes | Logs |
22
22
  |--------|------|
23
- | ![Routes panel showing all registered routes with handlers](screenshots/debug-routes.png) | ![Logs panel with level filtering and request ID correlation](screenshots/debug-logs.png) |
23
+ | ![Routes panel showing all registered routes with handlers](https://raw.githubusercontent.com/simulieren/adonisjs-server-stats/main/screenshots/debug-routes.png) | ![Logs panel with level filtering and request ID correlation](https://raw.githubusercontent.com/simulieren/adonisjs-server-stats/main/screenshots/debug-logs.png) |
24
24
 
25
25
  | Emails (custom pane) |
26
26
  |----------------------|
27
- | ![Emails panel showing sent emails with delivery status](screenshots/debug-emails.png) |
27
+ | ![Emails panel showing sent emails with delivery status](https://raw.githubusercontent.com/simulieren/adonisjs-server-stats/main/screenshots/debug-emails.png) |
28
28
 
29
29
  ## Features
30
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adonisjs-server-stats",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Real-time server monitoring for AdonisJS v6 applications",
5
5
  "type": "module",
6
6
  "main": "./dist/src/index.js",