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
Ever since I've activated the cluster package using CLUSTER_WORKERS_COUNT the kadira dashboard appears to be missing data. Could it be that only the main node is sending metrics over?
The text was updated successfully, but these errors were encountered:
Meteor.startup(function() {
const { id, secret } = Meteor.settings.kadira;
let hostname = 'your_hostname';
// Check if cluster is active
if (process.env['CLUSTER_WORKER_ID']) {
// append number of cluster to the hostname
hostname += `.${process.env['CLUSTER_WORKER_ID']}`;
}
Kadira.connect(id, secret, { hostname });
});
Every cluster worker counts as a session in Kadira. So with 4 cors you will see at least 5 sessions (cluster balancer + 4 workers).
Ever since I've activated the cluster package using CLUSTER_WORKERS_COUNT the kadira dashboard appears to be missing data. Could it be that only the main node is sending metrics over?
The text was updated successfully, but these errors were encountered: