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 block gets data from the metrics db, the health data from each of the services respective dbs and the communcations logs in the communications db
69
+
//The respective states are commsData, healthData and savedMetrics
70
70
if(intervalID)clearInterval(intervalID);
71
+
// gets all the communication logs from the communications database and sets the communications data state
71
72
fetchCommsData(app,live);
73
+
// gets all health data stored in each of the services databases
72
74
fetchHealthData(healthServiceArray);
75
+
//kafka and kubernetes are currently not hooked up so these blocks will never fire
// This event allows the user to change which metrics are saved by the database, so that their database doesn't get bloated with unnecessary data that they don't actually want.
209
+
// This event grabs the metric data from the metric database.
210
+
// Storing the metrics is done to allow the user to select which metrics
211
+
// they want to see in the metrics container component
0 commit comments