Není třeba vytvářet instanci new hostModel()
zde... použijte přímo hostModel
a také není potřeba save()
také protože insert many sám vytváří kolekce... a ujistěte se, že payload.data
má pole objektů
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');
})();
});