Няма нужда да създавате екземпляр new hostModel() тук... използвайте директно hostModel и също така няма нужда от save() както и защото вмъкването на много само по себе си създава колекциите... и се уверете, че payload.data има масив от обекти
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');
})();
});