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
"map": "function (doc) {\n var date = new Date(doc.timestamp);\n var year = date.getUTCFullYear();\n var month = date.getUTCMonth() + 1; // because January is 0!\n var day = date.getUTCDate();\n \n // Emit the composite key and the value\n doc.cluster.inventory.cluster.nodes.forEach(function(node){\n emit([node.name, year, month, day], parseInt(node.resources.memory.quantity.allocated.string, 10))}); \n}"