Replies: 2 comments 4 replies
|
This looks especially useful during incidents. One design detail that could make it safer to use under pressure is to separate the diagnostic evidence from the query text itself.
The same boundary matters for an AI summary: users should be able to tell what data is sent to it and what has been redacted. I have not used the preview yet, so this is a design question rather than a report of current behaviour, but these guardrails would make the feature much easier to trust in production. |
1 reply
This comment was marked as off-topic.
This comment was marked as off-topic.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
We're excited to introduce Database Connections as a feature preview 🎉
When your app is slow or hanging, the cause is usually happening at the database level — a query that's stuck, one session blocking a dozen others, or a connection pool running dry. Postgres actually surfaces all of this through
pg_stat_activity, but figuring out which query, which session, or what's holding the lock usually means knowing which system view to query and how to read it — not something you want to learn mid-incident.Database Connections gives you a live view of what's happening on your database right now, without writing SQL:
What we'd like to know from you
All reactions