Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Chubatiuk committed Oct 20, 2023
1 parent 61c1be3 commit 106f51c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
# Query is the SQL query that is run unalterted on the each of the connections
# for this job
query: |
SELECT created_at, datname::text, usename::text, COUNT(*)::float AS count
SELECT now() as created_at, datname::text, usename::text, COUNT(*)::float AS count
FROM pg_stat_activity GROUP BY created_at, datname, usename;
# Consider the query failed if it returns zero rows
allow_zero_rows: false
Expand Down

0 comments on commit 106f51c

Please sign in to comment.