@upsnap/strapi 1.0.9 → 1.0.11
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.
- package/README.md +13 -26
- package/dist/admin/{App-CZcDoGMB.mjs → App-BIxhBt5_.mjs} +1606 -504
- package/dist/admin/{App-CEvUaGYv.js → App-CH5fBeNI.js} +1605 -503
- package/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/dist/server/index.js +249 -81
- package/dist/server/index.mjs +249 -81
- package/dist/server/src/index.d.ts +11 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,17 +26,7 @@ Track monitoring incidents with detailed timelines, status history, recovery tra
|
|
|
26
26
|
|
|
27
27
|
## 🔔 Rich Notification Integrations
|
|
28
28
|
Get real-time alerts through multiple channels:
|
|
29
|
-
Email
|
|
30
|
-
Slack
|
|
31
|
-
Discord
|
|
32
|
-
SMS
|
|
33
|
-
Telegram
|
|
34
|
-
Google Chat
|
|
35
|
-
Microsoft Teams
|
|
36
|
-
Webhooks
|
|
37
|
-
PagerDuty
|
|
38
|
-
Zapier
|
|
39
|
-
…and more integrations coming soon.
|
|
29
|
+
Email, Slack, Discord, SMS, Telegram, Google Chat, Microsoft Teams, Webhooks, PagerDuty, Zapier, and more.
|
|
40
30
|
|
|
41
31
|
## 🌐 Website Monitoring
|
|
42
32
|
Comprehensive website health monitoring including availability, performance checks, SSL status, and content integrity monitoring in one place.
|
|
@@ -50,7 +40,6 @@ Comprehensive website health monitoring including availability, performance chec
|
|
|
50
40
|
- Nodejs ">=18.0.0 <=22.x.x"
|
|
51
41
|
- React 18 (provided by Strapi)
|
|
52
42
|
|
|
53
|
-
|
|
54
43
|
## 📦 Installation
|
|
55
44
|
|
|
56
45
|
Install via npm:
|
|
@@ -68,9 +57,12 @@ yarn add @upsnap/strapi
|
|
|
68
57
|
Enable it in confing/plugins:
|
|
69
58
|
|
|
70
59
|
```bash
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
60
|
+
module.exports = {
|
|
61
|
+
// ...
|
|
62
|
+
upsnap: {
|
|
63
|
+
enabled: true,
|
|
64
|
+
},
|
|
65
|
+
};
|
|
74
66
|
```
|
|
75
67
|
|
|
76
68
|
Restart Strapi:
|
|
@@ -87,23 +79,18 @@ Upsnap will appear in your admin sidebar.
|
|
|
87
79
|
|
|
88
80
|
After installing the plugin and restarting Strapi:
|
|
89
81
|
|
|
90
|
-
1. Go to
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
or select a primary monitor if one is already created
|
|
95
|
-
|
|
96
|
-
3. Configure monitoring options
|
|
97
|
-
|
|
98
|
-
4. Save and go to dashboard
|
|
82
|
+
1. Authenticate: Go to Upsnap → Settings and login with your UpSnap account or register for a new one directly within the plugin.
|
|
83
|
+
2. Add Monitor: Add a new monitor or select a primary monitor if one is already created.
|
|
84
|
+
3. Configure: Set up your monitoring options and notification channels.
|
|
85
|
+
4. Save: Save your settings and head to the dashboard to see your site's health in real-time.
|
|
99
86
|
|
|
100
87
|
|
|
101
88
|
## Documentation
|
|
102
|
-
[Full Documentation](https://github.com/Appfoster/upsnap/
|
|
89
|
+
[Full Documentation](https://github.com/Appfoster/upsnap-docs/blob/master/strapi/Home.md)
|
|
103
90
|
|
|
104
91
|
## Issue Tracking
|
|
105
92
|
[GitHub Issues](https://github.com/Appfoster/upsnap-strapi/issues)
|
|
106
|
-
[Changelog](https://github.com/Appfoster/upsnap/blob/
|
|
93
|
+
[Changelog](https://github.com/Appfoster/upsnap-docs/blob/master/strapi/changelog.md)
|
|
107
94
|
|
|
108
95
|
## Contact
|
|
109
96
|
**Email**: support@upsnap.ai
|