Replies: 4 comments
-
I saw this possible on Sublime Text. it's paid software I found that projects. i'm not sure yet |
Beta Was this translation helpful? Give feedback.
-
Well, Sublime is available for free. The more advanced solution would be to use ELK, but it'd require a lot of technical expertise. |
Beta Was this translation helpful? Give feedback.
-
quick and ugly PoF ruby script to feed ES with querylog.json https://gist.github.com/lolorc/bcda84446f6ee0fc1815893769386a88 |
Beta Was this translation helpful? Give feedback.
-
Late to the party, but the pandas library in python does the trick. Ideally you'd use jupyter notebook or a related extension in your IDE of choice. There are plenty of tutorial on YT to get your install/set-up going fwiw. import pandas as pd
df= pd.read_json('querylog.json', lines=True)
df.head() |
Beta Was this translation helpful? Give feedback.
-
Prerequisites
Problem Description
i want to analyze every month query log to check unwanted domains and boost my own personal blocklist. hard to analyze the querylog.json because it has hundreds duplicate domain
Beta Was this translation helpful? Give feedback.
All reactions