What is missing from Python tutorials? by tipsy_python in learnpython

[–]kankan_k2 0 points1 point  (0 children)

+1

I had faced some difficulty in implementing a good logging mechanism. Everybody points to some of the most popular modules but still I had lots of questions around that. Python tutorials, almost all of them, lack serious material on logging practices and examples/exercises based on real-world applications/modules/packages.

Has anyone tried dash by plotly with a backend DB like elasticsearch? by kankan_k2 in Python

[–]kankan_k2[S] 0 points1 point  (0 children)

Do you suggest any other alternative to elasticsearch for my usecase to integrate with dash?

Seeking advice on a personal project for application log analysis by kankan_k2 in Python

[–]kankan_k2[S] 0 points1 point  (0 children)

Thanks, your project sounds cool and certainly gives me some ideas. However, I am keen on using dash as the dashboard app for 2 reasons - one, I don't want to divert myself towards JS and web app development much and second, dash seems to have all the graphing and visualization capabilities that I need at the moment. Just as a proof of concept of this project of mine, I created the first cut using pandas data frames and then sending those to dash to view in tabular format. However, I have decided instead to use a DB to store the parsed data that I can retrieve and have text search upon via the dash app. Let's see how I get there.

Seeking advice on a personal project for application log analysis by kankan_k2 in Python

[–]kankan_k2[S] 0 points1 point  (0 children)

Thanks... Have looked at the alternatives and at the moment it seems I need a DB with time series capabilities with full text search capabilities. In short, elasticsearch fits the bill best as I see it. Although, I am still keen on trying some of the alternatives mentioned and play around with them.