Live data from Hacker News

Show HN: HyperDX – open-source dev-friendly Datadog alternative

github.com

61–70 of 186 posts

Re: Show HN: HyperDX – open-source dev-friendly Datadog alternative

#61
post #60

Hey, cool product. I know that marketing success is not predicated on good grammar, nevertheless I felt moved to suggest a minor edit to your blurb: "HyperDX helps engineers figure out why production is broken, faster. HyperDX centralises and correlates logs, metrics, traces, exceptions and session replays in one place." Good luck!

Everyone says that. How about: "9 out of 10 devs are now pushing to prod on fridays. Thanks to HyperDX. Hehe."

This helps coordinate Spotify releases on Fridays to get on the release radar?

Re: Show HN: HyperDX – open-source dev-friendly Datadog alternative

#62
post #23

Looks very similar to what we're doing at https://highlight.io . Would love to trade notes at some point. One thing to consider with your messaging is that when you start speaking to large companies, they won't see you as a datadog alternative. They'll see you as a mix of sentry + fullstory + honeycomb. Datadog originally found its success with its metrics products, and the larger the buyer of datadog gets, the more…

You're charging for your product, this is MIT licensed. As the meme goes, "we are not the same."

Highlight is Apache-2, which is for all intents and purposes equivalent to MIT if the work is not subject to patent. (this is my understanding, IANAL)

Re: Show HN: HyperDX – open-source dev-friendly Datadog alternative

#64

Earlier quoted context omitted.

Just clarifying, your alternative to open core is open nothing? Just proprietary it up?

Alternatives depend on what the goals of the person or organization who wrote the code are. There are various FOSS and source available options that can grant some freedoms while protecting others for the creator, such as if they want to let users still contribute and view the source. My main point was you should get these ducks in order first and be genuine with your intentions. Don't use FOSS as a growth hack, it n…

I'd genuinely would love to learn the OSS options we'd have available here, as we'd genuinely want to build a sustainable open source project and community, while preserving as many user freedoms as possible.

I think that HyperDX is a bit different from tools like Mongo, Redis or Hashicorp in that we're a vertically integrated product from SDKs/UIs to ingestion pipeline and DBs, which is opposite kind of offering from done by the above companies (which has made them more vulnerable to the kind of rug pull you mentioned)

We're trying to be permissive with freedoms granted to the user of our code, while still maintaining governance over the project to make it sustainable.

We don't want to be source-available, as that's pretty much the opposite of what we want to accomplish (and is why we consciously did not pick a license such as BSL/SSPL/etc.)

Re: Show HN: HyperDX – open-source dev-friendly Datadog alternative

#65

Hey, cool product. I know that marketing success is not predicated on good grammar, nevertheless I felt moved to suggest a minor edit to your blurb: "HyperDX helps engineers figure out why production is broken, faster. HyperDX centralises and correlates logs, metrics, traces, exceptions and session replays in one place." Good luck!

[deleted]

Re: Show HN: HyperDX – open-source dev-friendly Datadog alternative

#66

I'm interested. Datadog is cool but the price is ridiculously high for small orgs.

Is prometheus/grafana still the recommended FOSS solution?

Prometheus isn't quite enough on its own. You need Prometheus, Grafana, Tempo, Loki, Faro, and Pyroscope to get close to Datadog's feature set.

Re: Show HN: HyperDX – open-source dev-friendly Datadog alternative

#67
post #10

The session playback looks useful - I find this is missing from many DD alternatives I have seen.

Absolutely! It's pretty magical to go from a user report -> session replay -> exact API call being made and the backend error logs.

We dogfood a ton internally and (while obviously biased) we're always surprised how much faster we can pin point issues and connect alarms with bug reports.

Hope you give us a spin and feel free to hop on our discord or open an issue if you run into anything!

Re: Show HN: HyperDX – open-source dev-friendly Datadog alternative

#68

I'm interested. Datadog is cool but the price is ridiculously high for small orgs.

Is prometheus/grafana still the recommended FOSS solution?

I believe so, but have recently stumbled upon Netdata which scratches the "I don't want to maintain an entire monitoring stack for these few boxes" kind of itch. Need to work with it some more to nail down the trade-offs.

Re: Show HN: HyperDX – open-source dev-friendly Datadog alternative

#69

Wow, there is a lot here and what here is to a pretty impressive level of polish for how far along this is. The background of someone with a DX background comes through! I will be looking into this a lot more. Here are a few comments, notes, and questions: * I like the focus on DX (especially compared to other OSS solutions) in your messaging here, and I think your hero messaging tells that story, but it isn't reinfo…

For clickhouse, just batch insert. They probably have something batching every few s before inserting directly to their hosted version

Generally, any sort of async/batch inserts will get you decently far, but still will have limitations well before you get to million rows a second, mostly because it is really difficult to get your batch size large enough from individual producers without some sort of aggregation, which that aggregation is a challenge if you care about durability.

So often that means you need something like a Kafka to get the bulk ingest to really perform to get batch sizes large enough.

That kind of gets into one of the challenges of OSS observabilility systems, you don't want to make the dependencies insane for someone who only has a few thousand logs a second, but generally at some point of scale you do need more.

Re: Show HN: HyperDX – open-source dev-friendly Datadog alternative

#70
This looks really cool, congrats on the launch!

I haven’t had time to dig in proper, but this seems like something that would fit perfectly for “local dev” logging as well. I struggled to find a good solution for this, ending up Winston -> JSON, with a simpler “dump to terminal” script running.

(The app I’m building does a ton of “in the background” work, and I wanted to present both “user interactions” and “background worker” logs in context)

I don’t see Winston being supported as a transport, but presumably easy to add/contribute.

Good luck!

Post reply on HN