this post was submitted on 08 Feb 2024
20 points (88.5% liked)

Programming

16222 readers
216 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
 

I have been creating a bot using Node and would love to have a cloud-based logging solution to store my logs (since Fly.io monitoring isn't the greatest and doesn't store logs more than ~100 at a time). So far, I've looked at:

  • Coralogix
  • Logz.io
  • Sumo Logic

Sadly, all of these require a business email.

Since I'm doing a small personal project, I don't quite have one and I would prefer not to have to get one. I would also prefer the logging service be as simple as possible - this is a very small project and isn't customer-facing, so it really only needs the logging features (stuff like metrics are not needed and I'm handling exception logging with Sentry).

Lastly, it would be cool if it was cheap / free!

Thank you!

you are viewing a single comment's thread
view the rest of the comments
[–] __init__@programming.dev 2 points 4 months ago (1 children)

Have you looked into grafana cloud? I haven’t used it myself but they have a free tier. Or if you’re open to self-hosting you can run loki and grafana yourself.

[–] BiggestBulb@kbin.run 1 points 4 months ago

I ended up signing up for Grafana and Loki, however Loki and Grafana Cloud Logs were both overkill for my use case. As a result, I ended up going with Loggly after consulting a Reddit thread and that has been working perfectly. Thank you, though!