Nie ma potrzeby tworzenia instancji new hostModel()
tutaj... użyj bezpośrednio hostModel
a także nie ma potrzeby save()
również dlatego, że insert wiele sam tworzy kolekcje... i upewnij się, że payload.data
ma tablicę obiektów
router.post('/host', function (req, res, next) {
const array = [{hostname: 'hostname', timestamp: 'timestamp'},
{hostname: 'hostname', timestamp: 'timestamp'}]
var payload = req.body;
(async function(){
const insertMany = await hostModel.insertMany(array);
console.log(JSON.stringify(insertMany,'','\t'));
res.status(200).send('Ok');
})();
});