I have an application that stores data in a MongoDB collection "x".
I need that when some new data is inserted into this collection, MongoDB sends a post to another application saying "Hey, new data {"something":"ok"} has been inserted into collection x".
Is there a default function in MongoDB to allow a webhook configuration or do I need to run a Node.js server and listen for this "x" collection?