'application insights vs elastic (ELK)

Or I am really bad at searching or there is no detailed comparison between App Insights and ELK stack ?

All monitoring is going to be used for simple Web API, there going to be tons of end points but user traffic should not be too high.

So my question.. Is there any general points/differences when choosing between ELK and App Insights, personally never had a chance to set up any of those, but before setting up test environment would be nice to know in advance, what to expect/look for.



Solution 1:[1]

Final decision was to use ELK as servers already have all the configuration, because other team uses it and mainly because logging will need a lot customization.

Solution 2:[2]

So, I ended up fixing this by rewriting the cog so it ends in:

@commands.Cog.listener()
async def on_ready(self):
    print('music.py online.')

def setup(bot):
    bot.add_cog(Music(bot))

and at the bottom, of the main file:

@commands.Cog.listener()
async def on_ready(self):
    print('testcog.py online.')

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 DevyDev
Solution 2 RiveN