pg_net VS Logflare

Compare pg_net vs Logflare and see what are their differences.

pg_net

A PostgreSQL extension that enables asynchronous (non-blocking) HTTP/HTTPS requests with SQL (by supabase)

Logflare

Never get surprised by a logging bill again. Centralized structured logging for Cloudflare, Vercel, Elixir and Javascript. (by Logflare)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
pg_net Logflare
4 11
170 777
5.9% 1.3%
7.2 9.8
about 2 months ago 7 days ago
PLpgSQL Elixir
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

pg_net

Posts with mentions or reviews of pg_net. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-06.
  • PostgreSQL Is Enough
    12 projects | news.ycombinator.com | 6 Feb 2024
  • Supabase Wrappers: A Framework for Building Postgres Foreign Data Wrappers
    14 projects | news.ycombinator.com | 15 Dec 2022
    > speaks a particular API over the network

    it's a interesting idea, and one of the things that we were toying with in our pg_net extension (https://github.com/supabase/pg_net). This is a "generic" async network extension, so you can fetch/put/post. It works well for APIs.

    I think the generic approach works for some things where the data is less "fixed" - for example, an OpenAI API endpoint.

    But for "fixed" data (data warehouses), the wrapper usually needs some custom work for security, protocols, and "push down". I'll be interested to get HN's take on this - they might have some suggestions for us for this framework

  • Show HN: Multiplayer Demo Built with Elixir
    11 projects | news.ycombinator.com | 11 Apr 2022
    > finding the building blocks of modern applications (database, auth, functions, presence, realtime subscriptions), making them easy to use, and then sharing the source code.

    Great observation!

    > I’ve learned a ton just from cruising around supabase GitHub.

    Glad to hear it!

    > Can you say which of these new components will be open sourced?

    All of these components are open source and licensed under Apache License v2.0.

    > There are some other features (e.g. function hooks) that are also closed-source at the moment.

    I actually worked on the initial implementation of function hooks. We've actually already open sourced both the client (see: https://github.com/supabase/supabase/tree/88bcef911669595428...) and the pg_net extension it requires (see: https://github.com/supabase/pg_net).

    > Is Supabase heading for an “open core” model?

    I don't think so. We want to continue to open source our projects under either MIT (client libs) and Apache License v2.0 (server libs).

  • Supabase Edge Functions
    4 projects | news.ycombinator.com | 31 Mar 2022
    > The dream would be to have a great DX experience around using insert/update triggers to call Supabase functions to run background tasks

    We have something for this: Function Hooks (soon to be renamed "Async Triggers")[0]. They are still in alpha, but the extension [1] is getting close. It was important to build something which works with PG background workers so that it's non-blocking. We'll make quick progress on this now that we've released Edge Functions.

    > sending notifications or updating related rows

    Tune in for tomorrow's announcement - it's related.

    [0] Function Hooks / Async Triggers: https://supabase.com/blog/2021/07/30/supabase-functions-upda...

    [1] https://github.com/supabase/pg_net

Logflare

Posts with mentions or reviews of Logflare. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-06.
  • PostgreSQL Is Enough
    12 projects | news.ycombinator.com | 6 Feb 2024
    btw recently cleaned up my wal cache busting code quite a bit if you're interested.

    https://github.com/Logflare/logflare/blob/main/lib/logflare/...

    Need to make a lib out of this!!

  • Migrating from Supabase
    7 projects | news.ycombinator.com | 19 May 2023
    hey hn, supabase ceo here

    the Val Town team were kind enough to share this article with me before they released it. Perhaps you know from previous HN threads that we take customer feedback very seriously. Hearing feedback like this is hard. Clearly the team at Val Town wanted Supabase to be great and we didn’t meet their expectations. For me personally, that hurts. A few quick comments

    1. Modifying the database in production: I’ve published a doc on Maturity Models[0]. Hopefully this makes it clear that developers should be using Migrations once their project is live (not using the Dashboard to modify their database live). It also highlights the options for managing dev/local environments. This is just a start. We’re building Preview Databases into the native workflow so that developers don’t need to think about this.

    2. Designing for Supabase: Our goal is to make all of Postgres easy, not obligatory. I’ve added a paragraph[1] in the first page in our Docs highlighting that it’s not always a good idea to go all-in on Postgres. We’ll add examples to our docs with “traditional” approaches like Node + Supabase, Rails + Supabase, etc. There are a lot of companies using this approach already, but our docs are overly focused on “the Supabase way” of doing things. There shouldn’t be a reason to switch from Supabase to any other Postgres provider if you want “plain Postgres”.

    3. That said, we also want to continue making “all of Postgres” easy to use. We’re committed to building an amazing CLI experience. Like any tech, we’re going to need a few iterations. W’re building tooling for debugging and observability. We have index advisors coming[2]. We recently added Open Telemetry to Logflare[3] and added logging for local development[4]. We’re making platform usage incredibly clear[5]. We aim to make your database indestructible - we care about resilience as much as experience and we’ll make sure we highlight that in future product announcements.

    I’ll finish with something that I think we did well: migrating away from Supabase was easy for Val Town, because it’s just Postgres. This is one of our core principles, “everything is portable” (https://supabase.com/docs/guides/getting-started/architectur...). Portability forces us compete on experience. We aim to be the best Postgres hosting service in the world, and we’ll continue to focus on that goal even if we’re not there yet.

    [0] Maturity models: https://supabase.com/docs/guides/platform/maturity-model

    [1] Choose your comfort level: https://supabase.com/docs/guides/getting-started/architectur...

    [2] Index advisor: https://database.dev/olirice/index_advisor

    [3] Open Telemetry: https://github.com/Logflare/logflare/pull/1466

    [4] Local logging: https://supabase.com/blog/supabase-logs-self-hosted

    [5] Usage: https://twitter.com/kiwicopple/status/1658683758718124032?s=...

  • How to get access logs from Cloudflare?
    1 project | /r/TechSEO | 17 May 2023
    https://logflare.app/ is awesome, pipes into BiqQuery and is really easy to use and WAY cheaper than logpush. Depending on the amount of traffic, it's only a few dollars a month.
  • Supabase Logs: open-source logging server
    8 projects | news.ycombinator.com | 10 Apr 2023
    1 project | news.ycombinator.com | 10 Apr 2023
    hey hn, supabase ceo here

    this one is a long-time coming and it's a continuation of our acquisition of Logflare[0]. Since the acquisition we've be open-source-ing the server, which you can find here: https://github.com/Logflare/logflare

    Logflare handles about 1.5 billion log-events everyday on supabase. It's built with Elixir and has no problems with that workload.

    This is really just the start of the Logflare updates. All logs are currently ingested into BigQuery, and we are adding support for Clickhouse and other OLAP backends. Over time this will function very much like an open source Sentry alternative, where you can ingest data from various sources.

    The team will be around if you have any questions about the technical implementation

    [0] acquision: https://supabase.com/blog/supabase-acquires-logflare

  • Supabase Logs: open source logging server
    3 projects | dev.to | 10 Apr 2023
    Logflare was available under a BSL license prior to joining Supabase. We’ve since changed the license to Apache 2.0, aligning it with our open source philosophy.
  • Logging requests with cloudflare
    1 project | /r/CloudFlare | 24 Mar 2022
    https://www.cloudflare.com/apps/logflare https://logflare.app/
  • Tools for Querying Logs with SQL
    4 projects | dev.to | 11 Feb 2022
    Logflare, now a part of Supabase, aims to streamline the logging experience for Cloudflare-, Elixir-, and Vercel-based applications. However, it can be adapted to support any type of log. Logflare provides structured logging ability without limits or added latency. It aims to provide the best performance with minimal overhead when processing logs for supported application platforms.

What are some alternatives?

When comparing pg_net and Logflare you can also consider the following projects:

pgsentinel - postgresql extension providing Active session history

Hydra - Open source API gateway with integrated cache and data transformations.

pg_hexedit - Open PostgreSQL relation files in a hex editor with tags and annotations

n2o - ⭕ N2O: Distributed WebSocket Application Server ISO 20922

Multicorn - Data Access Library

Phoenix Toggl - Toggl tribute done with Elixir, Phoenix Framework, React and Redux.

pgsql-http - HTTP client for PostgreSQL, retrieve a web page from inside the database.

ExChat - (Not maintaining) A Slack-like app by Elixir, Phoenix & React(redux)

supabase - The open source Firebase alternative.

Phoenix Battleship - The Good Old game, built with Elixir, Phoenix, React and Redux

wal2json - JSON output plugin for changeset extraction

majremind