from Hacker News

Ask HN: How do you deal with application logging in a web service?

by acolytic on 6/1/18, 5:31 PM with 4 comments

I work for a large company that has an internal logging environment and I'm trying to figure out what the external equivalent is. Basically, I want to add logging statements throughout my app, I want those statements to get pushed to some external store and I want to query that store later (ideally using a UI but SQL might work as well). I would like access to that store within minutes and I doubt the amount of data will be significant at least for now. I'm building a python (flask) app if that changes anything.

The solutions I've considered are DataDog and AppDynamics but they seem to focus on the server health instead of the application logs which is what I want.

I would prefer not to build my own solution here. Is this a solved problem?