-
Notifications
You must be signed in to change notification settings - Fork 435
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
structured output to tcp socket #166
Comments
Follow up question: what would it take to add a different output format to strace? I looked into the code, and a lot of code boils down to |
Hmm. Well, I guessd you could use Or for this particular application, I guess you would just stick your python script in there and it could convert the structured format (once it exists) to the form your server is expecting. |
Yup, this would work. A machine parseble structured output in any shape would be great, together with |
Outputting RDF triples would be great, because strace logs could be fed into a graph database, for example to investigate with SPARQL. |
Hi!
This tracing tool is cool! Is there an option to route the events as timestamp/message pairs in either json / cbor format into a tcp/ip pipe? I would like this to be able to visualize them in a trace visualizer.
For example, my own visualization toolie (https://github.com/windelbouwman/lognplot) can ingest (timestamp,message) pairs over a tcp link. For this to work, I would write a python script that takes the strace output, and forwards it in the proper format.
The text was updated successfully, but these errors were encountered: