You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'This is list of all the events happening in your client side app. List will update as you do actions on your app. These events include route changes, methods and subscriptions, data updates, DOM events, and many other key events.',
9
8
options: {
10
9
placement: 'bottom'
11
10
}
12
11
},
13
12
'kd-event-stream-filters': {
14
13
title: 'About Event Stream Filters',
15
14
message:
16
-
'There may be a lot of events in your app. So, you may need to filter events by following types. Click the link below, to learn more about event types.',
message: "This is the number of documents fetched from MongoDB via observers. Meteor fetches documents when: New observer is created, every 10s if observer does not use oplog, when oplog observer's buffer is empty.",
8
7
options: {
9
8
placement: 'top'
10
9
}
11
10
},
12
11
'observer-changes': {
13
12
title: 'About Observer Changes',
14
-
message: 'This is distribution of all the events fired from observers.',
message: 'This is the number of oplog notifications processed by your observers. It watches the MongoDB oplog to observe changes. When a change happens, it will receive it as a notification. The notification is attached to a collection. Then, it will forward this notification to most of the observers created for that collection.',
24
21
options: {
25
22
placement: 'top'
26
23
}
@@ -35,8 +32,7 @@ var helpData = {
35
32
'total-reused-observer-handlers': {
36
33
title: 'About Total/Reused Observer Handlers',
37
34
message:
38
-
'This is number observer handlers created in your app, compared with the reused handlers amoung them.',
'This is number observer handlers created in your app, compared with the reused handlers amoung them. If this value is closer to 100%, that means most of the observers are reused, which is the optimal case',
message: 'This chart shows throughput for method calls for the selected date range. The X-axis contains the date and the Y-axis contains the requests (method calls) per minute.',
26
22
options: {
27
23
placement: 'bottom'
28
24
}
29
25
},
30
26
'summary-dashboardMethods': {
31
27
title: 'About Methods Summary',
32
-
message: 'Methods Summary shows the summary of the method in the selected date range.',
message: 'Methods Summary shows the summary of the method in the selected date range. If you select a method in the Detailed View, the summary will show only data for that method.',
'This chart shows the average response time for sending the initial data set for subscriptions. We calculate this metric when we detect this.ready() for a publication. This chart shows you whether your subscriptions are slow to process initially. ',
9
8
options: {
10
9
placement: 'bottom'
11
10
}
12
11
},
13
12
'timeseries-memory': {
14
13
title: 'About Memory Usage / Host',
15
14
message:
16
-
'This charts shows the average memory usage across all the hosts in the given time range.',
message: 'This chart shows response time for method calls for the selected date range. The X-axis contains the date and the Y-axis contains the response time in milliseconds. ',
34
31
options: {
35
32
placement: 'bottom'
36
33
}
37
34
},
38
35
'timeseries-pcpu': {
39
36
title: 'About CPU Usage',
40
37
message:
41
-
'This charts shows the CPU usage in percentage of your app. CPU usage can take very low values under cloud hosting. ',
message: 'This chart shows total number of new Observers created in the given time range. Even though there are e.g. 1000 observers, actual number of observers will be less than 1000 because of observer reuse. If there are identical cursors then existing observers are reused. New observers reflects the actual number of observers initiated.',
51
47
options: {
52
48
placement: 'bottom'
53
49
}
54
50
},
55
51
'summary-dashboardOverview': {
56
52
title: 'About Dashboard Summary',
57
53
message: 'Dashboard Summary is a set of important performance metrics for your application.',
message: 'The Response Time is the time the server takes to execute your method or publication (it also includes the Wait Time). In publications, the Response Time is calculate until the server emits the ready message. Therefore, this is the time taken to fetch all the cursor data and push it to the client.',
25
22
options: {
26
23
placement: 'bottom'
27
24
}
28
25
},
29
26
'summary-dashboardPubSub': {
30
27
title: 'About PubSub Summery',
31
28
message:
32
-
'PubSub Summary shows the summary of the publications and subscriptions in the selected date range ',
0 commit comments