HackerTrans
TopNewTrendsCommentsPastAskShowJobs

itssimon

no profile record

Submissions

[untitled]

1 points·by itssimon·5 miesięcy temu·0 comments

[untitled]

1 points·by itssimon·6 miesięcy temu·0 comments

[untitled]

1 points·by itssimon·8 miesięcy temu·0 comments

[untitled]

1 points·by itssimon·10 miesięcy temu·0 comments

Show HN: Apitally – A simple API monitoring and analytics tool for Go

github.com
2 points·by itssimon·12 miesięcy temu·0 comments

[untitled]

1 points·by itssimon·w zeszłym roku·0 comments

Show HN: Apitally – A simple, privacy-focused API monitoring and analytics tool

apitally.io
46 points·by itssimon·w zeszłym roku·21 comments

[untitled]

1 points·by itssimon·2 lata temu·0 comments

Growing an API monitoring and analytics tool

fakemayo.com
1 points·by itssimon·2 lata temu·0 comments

[untitled]

1 points·by itssimon·2 lata temu·0 comments

What makes a good REST API?

apitally.io
3 points·by itssimon·2 lata temu·0 comments

FastAPI application monitoring made easy

apitally.io
2 points·by itssimon·2 lata temu·1 comments

4 facets of API monitoring you should implement

apitally.io
1 points·by itssimon·2 lata temu·0 comments

Show HN: Apitally – REST API monitoring made easy

apitally.io
3 points·by itssimon·2 lata temu·4 comments

comments

itssimon
·6 miesięcy temu·discuss
I'm the founder of Apitally, and today I'm announcing support for Hono and FastAPI apps running on Cloudflare Workers. This new integration uses Cloudflare Logpush. Linked is the official release announcement.
itssimon
·10 miesięcy temu·discuss
Hey all, I'm the solo founder of Apitally, an indie product for API monitoring & analytics.

Apitally is a lightweight alternative to the large, complex monitoring platforms, built to provide focused insights for REST APIs. It supports most popular frameworks across Python, JavaScript, Go, .NET, and Java.

In addition to logging API requests, Apitally can now capture application logs and correlate them with requests, giving users more context when troubleshooting API issues.
itssimon
·w zeszłym roku·discuss
Introducing our new integration for AdonisJS, offering comprehensive API insights and request logging with minimal effort.
itssimon
·w zeszłym roku·discuss
Great point, noted! Thanks!
itssimon
·w zeszłym roku·discuss
Thanks so much for the shout-out and feedback! Definitely true that tracing (likely with OpenTelemetry) would be a very valuable future feature addition - especially for database queries. I actually had that use case come up at work today.
itssimon
·w zeszłym roku·discuss
Valid concern that I tried to specifically address in how the SDKs are implemented! The middleware part is actually super lightweight. It only captures relevant metrics from the request and response and stores them in memory. Further processing and sending to Apitally happens asynchronously in the background, in regular intervals. That way the performance impact on request handling is very minimal.

Anecdotally, I noticed zero increase in CPU usage when I added the Apitally SDK to a FastAPI app that handles ~100 req/s. In comparison, adding OpenTelemetry was very noticeable, at least doubling the CPU usage.
itssimon
·w zeszłym roku·discuss
Sì, naturalmente! They approve of my spaghetti code
itssimon
·w zeszłym roku·discuss
Thank you! The SDKs are open-source, which I believe is the most important part. Users can verify how the integrations work and exactly what data is collected.

To me, privacy-focused also means to avoid collecting sensitive data in the first place. I'm hoping that mostly negates the need for self-hosting, in the spirit of keeping things simple for users.

That said, I'm definitely considering to support self-hosting in the future as well, and possibly open-sourcing the rest of the codebase.
itssimon
·w zeszłym roku·discuss
A bit off-topic, but I'm curious. What are the benefits of Bugsink over Sentry? Sentry can also be self-hosted.
itssimon
·w zeszłym roku·discuss
Yes, support for Go has been requested a few times and is on the roadmap!
itssimon
·w zeszłym roku·discuss
I ended up playing with the background animtation on your website for 10 minutes, was fun
itssimon
·w zeszłym roku·discuss
Thanks, I appreciate the feedback! Datadog is obviously super powerful, maybe partially warranting the price tag, but most of the time the gazillion features just confuse me to the point that I don't want to use it.
itssimon
·w zeszłym roku·discuss
By the way, I’m planning to add support for more frameworks and languages, hopefully with help from the community.

At the top of my list are Laravel (PHP) and Spring (Java), but I’m keen to hear what other frameworks would be popular here.
itssimon
·2 lata temu·discuss
Understand how your API is being used and how it's performing without deploying, configuring and maintaining complex monitoring tools.
itssimon
·2 lata temu·discuss
Thanks! Let me know if I can be of any help.
itssimon
·2 lata temu·discuss
Thanks for your feedback!

Being able to instrument background tasks is a great idea that I would find useful for my own projects as well. I'll consider adding that to the roadmap!

The threading.Lock usage is a bit of a precaution that might not always be necessary. However, in cases where it's not necessary, the lock will always be uncontended and then be trivial to acquire. I'll think about whether that's worth optimizing.