Congrats on launching! Its interesting to see that ChatGPT is able to build something I've been working on ( https://logdy.dev ) for last two months. I guess new era is around the corner then.
Please keep working on this! I started a similar tool because I desperately needed it, but haven’t found the time to maintain it. https://github.com/corytheboyd-smartsheet/json-log-explorer Having something like the log explorer in DataDog for local development is so insanely useful
Show HN: Piping logs, visualizing in a web app – just suffix "| npx logscreen"
61–70 of 81 posts
Re: Show HN: Piping logs, visualizing in a web app – just suffix "| npx logscreen"
#62Congrats on launching! Its interesting to see that ChatGPT is able to build something I've been working on ( https://logdy.dev ) for last two months. I guess new era is around the corner then.
Your landing page looks fantastic, just wanted to throw that out (before ChatGPT starts making that, too)
Re: Show HN: Piping logs, visualizing in a web app – just suffix "| npx logscreen"
#63Re: Show HN: Piping logs, visualizing in a web app – just suffix "| npx logscreen"
#64Earlier quoted context omitted.
I was going to ask about the strange combination of package.json and inlined cdn js dependencies (especially strange because it's a local server) Suppose that answers it.
Haha yeah, I wanted to frame this as a single file tool, and hence all the quick wins. But later moved the react app into a separate file because I was not getting the syntax highlights and all. Definitely this can be made better with proper packaging and tooling! As I mentioned, more than the idea, implementation was an experiment on the ability of collaborative iterations with GPTs- it was fun!
Re: Show HN: Piping logs, visualizing in a web app – just suffix "| npx logscreen"
#65This is a solution looking for a problem. The browser is a horrible place for viewing text logs. Companies like Splunk and Datadog put countless hours into trying to make it work and it's never not-painful to view logs in a browser.
Re: Show HN: Piping logs, visualizing in a web app – just suffix "| npx logscreen"
#66Congrats on launching! Its interesting to see that ChatGPT is able to build something I've been working on ( https://logdy.dev ) for last two months. I guess new era is around the corner then.
I was looking for something like this for a while, and it could be just the landing page, but I much prefer a tool that's been built slowly with thought and consideration (which is evident from your landing page). How does your tool handle semi-permanent usage or very long logs? For instance, I would run this to view logs from an ssh server that's been up for 6 months, when systemd has rotated the log file etc.
Re: Show HN: Piping logs, visualizing in a web app – just suffix "| npx logscreen"
#67I'm not super familiar with express but this seems to be listening on external interfaces as well: https://github.com/soorajshankar/logScreen/blob/f8b29aaef428... So this will be sharing your logs with the world if you run this outside of a trusted network. (And personally I avoid trusting any networks)
Or I can even make a flag to configure this :thinking
Re: Show HN: Piping logs, visualizing in a web app – just suffix "| npx logscreen"
#68I'm not super familiar with express but this seems to be listening on external interfaces as well: https://github.com/soorajshankar/logScreen/blob/f8b29aaef428... So this will be sharing your logs with the world if you run this outside of a trusted network. (And personally I avoid trusting any networks)
Are you talking about the difference between 0.0.0.0 and 127.0.0.1 /localhost (loopback address)? If so It should be a tiny thing to change to implement I can add that on the next update- I just went with the express JS defaults to keep things simple:) Or I can even make a flag to configure this :thinking
Typically, services allow you set the host address by configuration. This way you can set it to `127.0.0.1` so that it is only available locally.
[0]: https://nodejs.org/api/net.html#serverlistenport-host-backlo...
Re: Show HN: Piping logs, visualizing in a web app – just suffix "| npx logscreen"
#69I'm not super familiar with express but this seems to be listening on external interfaces as well: https://github.com/soorajshankar/logScreen/blob/f8b29aaef428... So this will be sharing your logs with the world if you run this outside of a trusted network. (And personally I avoid trusting any networks)
Are you talking about the difference between 0.0.0.0 and 127.0.0.1 /localhost (loopback address)? If so It should be a tiny thing to change to implement I can add that on the next update- I just went with the express JS defaults to keep things simple:) Or I can even make a flag to configure this :thinking
Re: Show HN: Piping logs, visualizing in a web app – just suffix "| npx logscreen"
#70This is a solution looking for a problem. The browser is a horrible place for viewing text logs. Companies like Splunk and Datadog put countless hours into trying to make it work and it's never not-painful to view logs in a browser.