How would you determine the number of cluster instances to start when using the cluster module?
const numInstances = cluster.instances().length;
const numInstances = cluster.instances();
const numInstances = process.cpus().length;
const numInstances = require('os').cpus().length;