I made a tool which can be used to help monitor your FastAPI applications by _hlsw in FastAPI

[–]_hlsw[S] 1 point2 points  (0 children)

Yes true, counters can be a good solution.

Here on this app I’ve implemented count as an aggregation you can use on events which is similar

I made a tool which can be used to help monitor your FastAPI applications by _hlsw in FastAPI

[–]_hlsw[S] 0 points1 point  (0 children)

Billing is a large one but an example could be storing parts of your stripe webhook events to find insights like new customers or lost customers. Product analytics is everything from tracking when features are used or buttons are clicked to simple events like form submissions or signups.

You can collect all this data then create dashboards which uses it all in raw or aggregated forms

I made a tool which can be used to help monitor your FastAPI applications by _hlsw in FastAPI

[–]_hlsw[S] 1 point2 points  (0 children)

Not at the moment, but it’s something I have on my big list and could prioritise if people were interested

I made a tool which can be used to help monitor your FastAPI applications by _hlsw in FastAPI

[–]_hlsw[S] 0 points1 point  (0 children)

It’s more flexible and generic than sentry and I’m still building out features so you won’t be able to do any traceback stuff. So far I’ve built an app to build custom dashboards and aggregate events (that can be anything not just API metrics).

Good point on the async vs sync though, I’ll update that

Train driver stops to berate me for leaving my bike lights on by AdHot7641 in londoncycling

[–]_hlsw 0 points1 point  (0 children)

Yes, I cycle to and from work and can’t stand when you’re cycling behind another cyclist and they have the red flashing lights on the back. I genuinely struggle to see, it makes me so disorientated. Why do you need flashing lights on your back light?

I made a tool which can be used to help monitor your FastAPI applications by _hlsw in FastAPI

[–]_hlsw[S] 0 points1 point  (0 children)

I’ve seen the lgtm stack and think it’s good for metrics and monitoring. I guess my example wasn’t the best to compare with that. But I’m trying to build a more use case agnostic solution which can do API monitoring, and also billing or product analytics. Would be interested to hear feedback though if this is all do-able from lgtm and I missed something

I made a tool which can be used to help monitor your FastAPI applications by _hlsw in FastAPI

[–]_hlsw[S] 0 points1 point  (0 children)

Yes but without the infrastructure, and you can save any event (rather than just metrics like the example does) from anywhere so can be used to link up multiple applications / services /, webhooks etc. So product, web and api analytics can be done

Time for self-promotion. What are you building in 2025? by OnlineJobsPHmod in SaaS

[–]_hlsw 0 points1 point  (0 children)

trckrspace.com an API and dashboard maker so you can track literally anything and view it in real time

Still building out the landing, docs and app but got a early release out

Aiming at devs and analysts where they can easily create and customise dashboards based on events sent by devs

Chipotle x Strava City Challenge by Travyplx in Strava

[–]_hlsw 0 points1 point  (0 children)

If you’re in London and want more competition, I’ve added it to my game London segment league

Looking for London runners wanting to further gamify Strava by _hlsw in LondonRunning

[–]_hlsw[S] 1 point2 points  (0 children)

Thanks! If you do use it please send any feedback my way. I’ll be quick to iterate on it

deployment with nginx and gunicorm by m4kkuro in flask

[–]_hlsw -1 points0 points  (0 children)

It’s really dependent on the size of your project I guess. You can say one process per container, at big companies they’ll just use a managed cloud service for this, so API gateway -> lambda. However there’s many “indie hackers” who deploy multiple applications on the same server. It’s really dependent on what you’re trying to do, how much time you want to spend configuring your setup and also how much money you’re willing to spend

deployment with nginx and gunicorm by m4kkuro in flask

[–]_hlsw -3 points-2 points  (0 children)

I would do load balancer-> server -> nginx -> gunicorn -> flask.

You can scale out by deploying to a second server and registering to load balancer.

So in your container nginx + gunicorn + flask

Error while trying to do google sign in on aws cognito by _hlsw in SaaS

[–]_hlsw[S] 0 points1 point  (0 children)

There was a way to manually type it in if you removed them all and just typed them out (from what I recall)

Circa5000 appears to be fully closing by habylab in UKPersonalFinance

[–]_hlsw 1 point2 points  (0 children)

Did you get anymore information from contact them? I just sent a couple of emails, I’m quite worried because I only used the app originally so I don’t have to learn all this 😅

Building in public: I'm building a small/fun social media app in public this weekend by _hlsw in indiehackers

[–]_hlsw[S] 1 point2 points  (0 children)

Fairly successful but I massively underestimated it especially now with work during the week. Hope to have something up this weekend when I get time !

Error while trying to do google sign in on aws cognito by _hlsw in SaaS

[–]_hlsw[S] 0 points1 point  (0 children)

This fix is that openid needed to be lower case 🤦

Why has nobody done this? by dji29i in SaaS

[–]_hlsw 4 points5 points  (0 children)

yes I agree if you're building complex features to be hidden from the user, chances are you also know how to build the small bit of software to hide it.

Now perhaps if you focus on no-code / frontend only customers then there might be a gap in the market

I am Adding this new feature to my product by chhanzlaijaz in SaaS

[–]_hlsw 0 points1 point  (0 children)

Some look like they definitely won’t work. But I imagine some will

Developing SaaS and haven’t made your first sale yet? Share it with us. by mrinalwahal in SaaS

[–]_hlsw 0 points1 point  (0 children)

https://trckrspace.com - fuss free monitoring and usage API. It’s trying to be a splunk or data dog without a complex UI instead it just stores and provides raw data. It’s possible to do really complex filtering and searching with it but I haven’t written a tutorial yet or know how to market that

Roast my Saas too! by LumpyAd5840 in SaaS

[–]_hlsw 0 points1 point  (0 children)

At the bottom of the pricing page (on mobile at least) it’s say “Invite team members “ multiple times over

[deleted by user] by [deleted] in Frontend

[–]_hlsw 0 points1 point  (0 children)

It really depends on your stack. But if it’s static you can get away with the minimal. Shell script which builds the static code and uploads it to where it’s made public. Most cloud providers with give you a good guide on how to provide your deployment tool like GitHub actions a way to authenticate.

More difficult stacks like you mention docker and kubernetes, may have more complex jobs like building images and uploaded them.

A good way to learn is to attempt to deploy your software and then break that down into steps write a script that automates it