-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelex-integration.json
72 lines (72 loc) · 2.03 KB
/
telex-integration.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"data": {
"date": {
"created_at": "2023-10-01",
"updated_at": "2023-10-01"
},
"descriptions": {
"app_description": "Comprehensive APM and crash reporting integration for Flutter, React Native, and .NET MAUI platforms.",
"app_logo": "https://example.com/logo.png",
"app_name": "APM Crash Reporter",
"app_url": "https://example.com",
"background_color": "#4A90E2"
},
"integration_category": "Monitoring & Logging",
"integration_type": "interval",
"is_active": false,
"output": [
{
"label": "crash_reports",
"value": true
},
{
"label": "performance_metrics",
"value": true
}
],
"key_features": [
"Real-time crash reporting.",
"Performance metrics for Flutter, React Native, and .NET MAUI.",
"User experience data aggregation.",
"Periodic reporting via Telex channels."
],
"permissions": {
"monitoring_user": {
"always_online": true,
"display_name": "APM Monitor"
}
},
"settings": [
{
"label": "interval",
"type": "text",
"required": true,
"default": "* * * * *", // Every minute
"description": "Interval for crash report aggregation (crontab syntax)."
},
{
"label": "API Key",
"type": "text",
"required": true,
"default": "",
"description": "API key for accessing the APM service."
},
{
"label": "Crash Threshold",
"type": "number",
"required": false,
"default": 10,
"description": "Minimum number of crashes to trigger a report."
},
{
"label": "Notify on Critical Crashes",
"type": "checkbox",
"required": true,
"default": true,
"description": "Enable notifications for critical crashes."
}
],
"tick_url": "https://example.com/tick", // URL for interval processing
"target_url": "https://example.com/target" // Optional URL for data collection
}
}