PostgreSQL Triage — Example Client — 4-day log lookback

Host: db.example-client.internalDB: Example ClientAnalysis: 2026-05-12 09:07:08 UTCPG: 160009pg_stat_statements: available
Log source (4-day lookback): C:\Aurora\logs\example.log — 565.24 MB
Coverage: 2026-05-11 to 2026-05-12 (2 calendar day(s) of data) — [!] RDS only had 2 day(s) of logs available (requested 4). The instance may have been restarted or log retention is short.
System Health
CRITICAL2 critical  |  4 high  |  7 total findings
Overall Status
CRITICAL
7 finding(s)
Blocked Sessions
2
live right now
Connections
4%
202/5000
Long Queries
5
over 15s
DB Cache Hit
100.0%
shared buffers
Transactions
0
0 rollbacks
Deadlocks (DB)
0
since stats reset
Log: Slow Queries
112292
≥500ms in log
Log: Deadlocks
667
events in log
Log: OOM / FATAL
183
events in log
Temp Spill
0.0 MB
since stats reset
Ckpt Forced
0
0 timed
Immediate Actions — 6 item(s) requiring attention
#1
XID DANGER: audit.ddl_audit has 8,448,263 transactions left before wraparound - force VACUUM FREEZE immediately
Transaction ID (XID) wraparound is a catastrophic failure mode. PostgreSQL will shut down all writes when XIDs reach 2 billion to protect data integrity. Run VACUUM FREEZE on affected tables immediately and monitor XID age daily.
-- Emergency vacuum freeze (run immediately):
VACUUM FREEZE VERBOSE <schema>.<table>;

-- Increase autovacuum freeze threshold to act earlier:
ALTER TABLE <schema>.<table> SET (
  autovacuum_freeze_max_age = 500000000
);
#2
LOG DEADLOCKS: 667 deadlock event(s) found in merged log
Deadlocks occur when two transactions each hold locks the other needs. PostgreSQL auto-resolves by cancelling one transaction, but repeated deadlocks indicate a locking order bug. Review application transaction sequences and ensure all code acquires locks in a consistent order.
-- Check deadlock count trend:
SELECT deadlocks, stats_reset
FROM pg_stat_database
WHERE datname = current_database();

-- Lower deadlock_timeout to detect sooner (default 1s):
ALTER SYSTEM SET deadlock_timeout = '500ms';
SELECT pg_reload_conf();
#3
LONG QUERY: PID 83335 running 206.7h - wait: Client/WalSenderWaitForWAL
A query running over the threshold consumes CPU and shared buffer resources. Cancel or terminate the session to restore capacity. Set statement_timeout to cap query duration and prevent recurrence.
-- Cancel the query (soft — application can retry):
SELECT pg_cancel_backend(<pid>);

-- Terminate the connection entirely:
SELECT pg_terminate_backend(<pid>);

-- Prevent future runaway queries:
ALTER DATABASE <db> SET statement_timeout = '300s';
#4
LONG QUERY: PID 83338 running 206.7h - wait: Client/WalSenderWriteData
A query running over the threshold consumes CPU and shared buffer resources. Cancel or terminate the session to restore capacity. Set statement_timeout to cap query duration and prevent recurrence.
-- Cancel the query (soft — application can retry):
SELECT pg_cancel_backend(<pid>);

-- Terminate the connection entirely:
SELECT pg_terminate_backend(<pid>);

-- Prevent future runaway queries:
ALTER DATABASE <db> SET statement_timeout = '300s';
#5
LONG QUERY: PID 3441 running 2.8m - wait: IO/DataFileRead
A query running over the threshold consumes CPU and shared buffer resources. Cancel or terminate the session to restore capacity. Set statement_timeout to cap query duration and prevent recurrence.
-- Cancel the query (soft — application can retry):
SELECT pg_cancel_backend(<pid>);

-- Terminate the connection entirely:
SELECT pg_terminate_backend(<pid>);

-- Prevent future runaway queries:
ALTER DATABASE <db> SET statement_timeout = '300s';
#6
REPLICATION LAG: replica replica-01 is 43413 MB behind primary
Replication lag means the standby is behind the primary. During failover, recently committed transactions may be lost. Investigate network throughput, replica instance class, replica read load, and wal_keep_size.
-- Check replica WAL apply position:
SELECT application_name, client_addr, state,
       pg_size_pretty(pg_wal_lsn_diff(pg_current_wal_lsn(), replay_lsn)) AS lag
FROM pg_stat_replication;

-- Check wal_keep_size is sufficient:
SHOW wal_keep_size;
Log Timeline — 2 calendar day(s) of data — [!] 2 of 4 requested day(s) available in RDS logs

Day 1 — 2026-05-11   [CRITICAL]

Slow queries (≥500ms)99,857
Deadlocks568
Lock timeouts0
Autovac cancels0
Checkpoint warnings203
Temp file spills0
OOM events0
FATAL / PANIC135
2,480,125ms — /* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstor
2,479,955ms — /* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstor
2,436,072ms — /* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstor
2,268,821ms — /* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstor
2,266,326ms — /* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstor

Day 2 — 2026-05-12   [CRITICAL]

Slow queries (≥500ms)12,435
Deadlocks99
Lock timeouts0
Autovac cancels0
Checkpoint warnings124
Temp file spills0
OOM events0
FATAL / PANIC48
883,428ms — /* /app/apps/supervised_learning/services/example_records.py:202 */ SELECT "example_records_implementation_example_record"."id" FROM "example_records_implementa
682,060ms — VACUUM (FREEZE, INDEX_CLEANUP auto, ANALYZE) public.example_data_impl_sale, public.retechlabs_import_export_dataimportsteppart;
645,993ms — /* /app/modules/shared/middleware.py:48 */ /* /app/apps/supervised_learning/services/example_records.py:202 */ SELECT "example_records_implem
603,741ms — VACUUM (FREEZE, INDEX_CLEANUP auto, ANALYZE) public.example_data_impl_sale, public.core_integration_coreactionoutbox, public.retech
596,006ms — /* /app/modules/shared/middleware.py:48 */ /* /app/apps/supervised_learning/services/example_records.py:202 */ SELECT "example_records_implem

[!!] 2 Critical  |  4 High  —  Issues Requiring Attention

[CRITICAL] XID DANGER: audit.ddl_audit has 8,448,263 transactions left before wraparound - force VACUUM FREEZE immediately

Transaction ID (XID) wraparound is a catastrophic failure mode. PostgreSQL will shut down all writes when XIDs reach 2 billion to protect data integrity. Run VACUUM FREEZE on affected tables immediately and monitor XID age daily.

-- Emergency vacuum freeze (run immediately):
VACUUM FREEZE VERBOSE <schema>.<table>;

-- Increase autovacuum freeze threshold to act earlier:
ALTER TABLE <schema>.<table> SET (
  autovacuum_freeze_max_age = 500000000
);
[CRITICAL] LOG DEADLOCKS: 667 deadlock event(s) found in merged log

Deadlocks occur when two transactions each hold locks the other needs. PostgreSQL auto-resolves by cancelling one transaction, but repeated deadlocks indicate a locking order bug. Review application transaction sequences and ensure all code acquires locks in a consistent order.

-- Check deadlock count trend:
SELECT deadlocks, stats_reset
FROM pg_stat_database
WHERE datname = current_database();

-- Lower deadlock_timeout to detect sooner (default 1s):
ALTER SYSTEM SET deadlock_timeout = '500ms';
SELECT pg_reload_conf();
[HIGH] LONG QUERY: PID 83335 running 206.7h - wait: Client/WalSenderWaitForWAL

A query running over the threshold consumes CPU and shared buffer resources. Cancel or terminate the session to restore capacity. Set statement_timeout to cap query duration and prevent recurrence.

-- Cancel the query (soft — application can retry):
SELECT pg_cancel_backend(<pid>);

-- Terminate the connection entirely:
SELECT pg_terminate_backend(<pid>);

-- Prevent future runaway queries:
ALTER DATABASE <db> SET statement_timeout = '300s';
[HIGH] LONG QUERY: PID 83338 running 206.7h - wait: Client/WalSenderWriteData

A query running over the threshold consumes CPU and shared buffer resources. Cancel or terminate the session to restore capacity. Set statement_timeout to cap query duration and prevent recurrence.

-- Cancel the query (soft — application can retry):
SELECT pg_cancel_backend(<pid>);

-- Terminate the connection entirely:
SELECT pg_terminate_backend(<pid>);

-- Prevent future runaway queries:
ALTER DATABASE <db> SET statement_timeout = '300s';
[HIGH] LONG QUERY: PID 3441 running 2.8m - wait: IO/DataFileRead

A query running over the threshold consumes CPU and shared buffer resources. Cancel or terminate the session to restore capacity. Set statement_timeout to cap query duration and prevent recurrence.

-- Cancel the query (soft — application can retry):
SELECT pg_cancel_backend(<pid>);

-- Terminate the connection entirely:
SELECT pg_terminate_backend(<pid>);

-- Prevent future runaway queries:
ALTER DATABASE <db> SET statement_timeout = '300s';
[HIGH] REPLICATION LAG: replica replica-01 is 43413 MB behind primary

Replication lag means the standby is behind the primary. During failover, recently committed transactions may be lost. Investigate network throughput, replica instance class, replica read load, and wal_keep_size.

-- Check replica WAL apply position:
SELECT application_name, client_addr, state,
       pg_size_pretty(pg_wal_lsn_diff(pg_current_wal_lsn(), replay_lsn)) AS lag
FROM pg_stat_replication;

-- Check wal_keep_size is sufficient:
SHOW wal_keep_size;
Blocked Sessions
2
active right now
Connections
4.0%
202/5000
Long Queries
5
over 15s
Issues Found
7
requiring attention
PG Version
160009
Issues Summary — 7 item(s) require attention
SeverityCategoryObject / PIDDetailContextAction
CRITICALLock Root BlockerPID 239601s running/* /app/modules/app/services/sale_manager.py:151 */ SELECT DISTINCT ON ("example_data_storeproductsale"."product_id") "example_data_storeSELECT pg_terminate_backend(23960);
CRITICALLock Root BlockerPID 24044-0s running/* /app/modules/client/action_modifiers/discontinued.py:104 */ SELECT "example_products_example_productcomplianceproductreport"."updated_at", SELECT pg_terminate_backend(24044);
CRITICALLock Chain2 sessions blockedup to 3s wait timesee Lock Chains section below
CRITICALLong QueryPID 83335206.7h | Client/WalSenderWaitForWALSTART_REPLICATION SLOT "replica-02" LOGICAL 0/0 (proto_version '4', origin 'any', publication_names '"pub4dwh"')SELECT pg_terminate_backend(83335);
CRITICALLong QueryPID 83338206.7h | Client/WalSenderWriteDataSTART_REPLICATION SLOT "replica-01" LOGICAL 0/0 (proto_version '4', origin 'any', publication_names '"replica-01"')SELECT pg_terminate_backend(83338);
CRITICALLong QueryPID 34412.8m | IO/DataFileReadVACUUM (FREEZE, INDEX_CLEANUP auto, ANALYZE) public.example_data_impl_sale;SELECT pg_terminate_backend(3441);
CRITICALXID Wraparoundaudit.ddl_audit8,448,263 transactions leftVACUUM FREEZE ANALYZE audit.ddl_audit;
CRITICALReplication Lagreplica-01 (10.x.x.x)43413 MB behind primaryInvestigate network or replica performance
HIGHLong QueryPID 2231617s | IO/DataFileRead/* /app/modules/api/views/stores.py:171 */ SELECT DISTINCT ON ("example_products_implementation_example_productstore"."example_product_id") "example_productSELECT pg_terminate_backend(22316);
HIGHLong QueryPID 2312616s | CPU / running/* /app/modules/app/views.py:1816 */ SELECT DISTINCT ON ("example_product_name", "section_name", "example_products_implementation_example_productsectionproductSELECT pg_terminate_backend(23126);
Lock Chains — 2 blocked sessions
SevBlocked PIDBlocked ForBlocked QueryBlocker PIDBlocker RunningBlocker QueryLock TypeKill
OK239883s/* /app/modules/shared/models/timestamp.py:100 */ UPDATE "example_records_implementation_example_record" SET "locked_by_id" = NULL, "locked_at" = NULL WHERE "rea23960 (ROOT)1s/* /app/modules/app/services/sale_manager.py:151 */ SELECT DISTINCT ON ("example_data_storeproductsale"."product_id"transactionidpg_terminate_backend(23960)
OK240682s/* /app/modules/shared/models/timestamp.py:100 */ UPDATE "example_records_implementation_example_record" SET "locked_by_id" = NULL, "locked_at" = NULL WHERE "rea24044 (ROOT)-0s/* /app/modules/client/action_modifiers/discontinued.py:104 */ SELECT "example_products_example_productcomplianceproductretransactionidpg_terminate_backend(24044)
Long-Running Queries — 5 over 15s
SevPIDAppRunningWaitQuery
CRITICAL83335replica-02206.7hClient/WalSenderWaitForWALSTART_REPLICATION SLOT "replica-02" LOGICAL 0/0 (proto_version '4', origin 'any', publication_names '"pub4dwh"')
CRITICAL83338replica-01206.7hClient/WalSenderWriteDataSTART_REPLICATION SLOT "replica-01" LOGICAL 0/0 (proto_version '4', origin 'any', publication_names '"replica-01"')
CRITICAL3441client_user2.8mIO/DataFileReadVACUUM (FREEZE, INDEX_CLEANUP auto, ANALYZE) public.example_data_impl_sale;
HIGH22316client_user17sIO/DataFileRead/* /app/modules/api/views/stores.py:171 */ SELECT DISTINCT ON ("example_products_implementation_example_productstore"."example_product_id") "example_products_implementation_example_productstore"."example_product_id" FROM "planog
HIGH23126client_user16sCPU / running/* /app/modules/app/views.py:1816 */ SELECT DISTINCT ON ("example_product_name", "section_name", "example_products_implementation_example_productsectionproduct"."product_id") "example_products_implementation_example_productsectionp
Active Wait Events
TypeEventSessionsDistribution
IODataFileRead3
ClientWalSenderWriteData1
ClientWalSenderWaitForWAL1
ClientClientRead1
XID Wraparound Danger
SevTableXID AgeTransactions LeftAction
CRITICALaudit.ddl_audit191,551,7378,448,263VACUUM FREEZE ANALYZE audit.ddl_audit;
OKpublic.reports_snowflakereportrunpart49,937,760150,062,240
OKpublic.example_data_impl_storeproductprice48,012,912151,987,088
OKpublic.example_data_impl_supplier46,612,169153,387,831
OKpublic.example_records_implementation_pricetagrecognizedtext46,049,649153,950,351
OKpublic.example_products_example_productcomplianceproductreport42,740,954157,259,046
OKpublic.tasks_group39,699,989160,300,011
OKpublic.example_records_implementation_example_recordpricetag36,721,710163,278,290
OKpublic.example_records_implementation_pricetagtext36,721,710163,278,290
OKpublic.example_records_implementation_pricetagproductcandidate36,721,710163,278,290
Autovacuum Lag / Dead Tuple Counts
SevTableDead TuplesDead %Last Autovacuum
OKpublic.example_records_implementation_example_recordproductcandidate11,558,4630.5%2026-05-12 06:54:19
OKpublic.example_data_impl_file10,862,3660.3%2026-05-10 15:16:33
OKpublic.example_products_implementation_example_productsectionproduct10,237,0350.1%2026-05-12 01:45:24
OKpublic.example_records_example_recordproductcoreid9,596,9730.4%2026-05-10 15:15:15
OKpublic.example_records_implementation_example_recordproduct7,820,6090.3%2026-05-12 06:36:05
OKpublic.example_products_example_productcomplianceexample_recordproduct5,533,2750.3%2026-05-10 03:20:52
OKpublic.example_data_impl_storeproductprice4,320,7320.5%2026-05-03 09:51:19
OKpublic.example_records_implementation_pricetagrecognizedtext4,038,4550.4%2026-05-03 01:32:13
OKpublic.example_records_implementation_productpricetagmap2,506,9530.2%2026-05-12 01:22:10
OKpublic.example_products_example_productcomplianceexample_productproduct2,283,1130.2%2026-05-10 15:15:07
OKpublic.example_records_implementation_pricetagproductcandidate2,239,5480.3%2026-05-03 10:09:39
OKpublic.example_products_example_productcomplianceaction1,331,5090.4%2026-05-07 00:15:51
OKpublic.example_records_implementation_example_recordpricetag1,250,5910.1%2026-05-12 08:08:51
OKpublic.example_products_implementation_example_productstore1,056,3630.4%2026-04-26 01:49:27
OKpublic.example_data_storeproductsale1,048,7110.0%never
Top Bloated Tables (dead tuple %)
SevTableDead %Live RowsTotal Size
OKpublic.supervised_learning_scanlearningtransaction3.4%82,19461 MB
OKpublic.retechlabs_import_export_dataimport3.4%1,016,7392865 MB
OKpublic.supervised_learning_pricetaglearningtransaction3.3%440,672107 MB
OKpublic.example_records_implementation_pricetagtext1.9%926,934115 MB
OKpublic.supervised_learning_lastapprovedtransactionforexample_recordproduct1.8%690,861112 MB
OKpublic.supervised_learning_rejectedscan1.7%14,27217 MB
OKpublic.retechlabs_import_export_dataimportgroup1.5%10,5211552 kB
OKpublic.example_records_scancompletiontimelog1.2%542,699172 MB
OKpublic.example_flags1.0%26,981,53012 GB
OKpublic.tasks_taskdefproduct0.8%69,3341223 MB
OKpublic.supervised_learning_rejectedscanrejectedscanreason0.8%19,7578920 kB
OKpublic.example_data_impl_producttoproductgroup0.8%690,124990 MB
OKpublic.example_data_impl_aislesale0.8%2,785,944426 MB
OKpublic.tasks_trackedbannerlog0.7%101,24829 MB
OKpublic.auth_user0.7%9,2163096 kB
Cache Hit Rates
SevTypeHit RateReads / Hits
OKHeap (table)
98.28%
72,645,417,342 reads / 4,140,443,413,224 hits
OKIndex
99.01%
50,223,259,161 reads / 5,021,726,840,485 hits
Replication
SevReplicaAddressStateLag (MB)Sync Mode
CRITICALreplica-0110.x.x.xstreaming43413.4 MBasync
OKreplica-0210.x.x.xstreaming2.7 MBasync
Sequential Scan Pressure
TableSeq ScansSeq %Index ScansSize
public.example_data_impl_bannerlogo351,109,94799.2%2,766,04780 kB
Idle-in-Transaction
SevPIDAppIdle ForLast Query
OK110986client_user0s/* /app/modules/app/compliance.py:2589 */ SELECT "example_products_example_productcomplianceexample_productproduct"."id", "example_products_planogr
OK19640client_user0s/* /app/modules/app/compliance.py:2589 */ SELECT "example_products_example_productcomplianceexample_productproduct"."id", "example_products_planogr
OK94827client_user-0s/* /app/modules/app/filtering_services/size_filtering.py:98 */ SELECT DISTINCT ON ("example_data_impl_storeproductprice"."store_id", "mas
OK113891client_user-0s/* /app/modules/app/compliance.py:2589 */ SELECT "example_products_example_productcomplianceexample_productproduct"."id", "example_products_planogr
OK91051client_user-0s/* /app/modules/app/compliance.py:2589 */ SELECT "example_products_example_productcomplianceexample_productproduct"."id", "example_products_planogr
OK23895client_user-0s/* /app/modules/app/services/price_tag_mapper.py:38 */ SELECT "example_records_implementation_productpricetagmap"."updated_at", "example_records_implementation_produc
OK23669client_user-0s/* /app/modules/app/tasks.py:45 */ DELETE FROM "example_data_impl_file" WHERE "example_data_impl_file"."id" IN (2567131457)
OK23858client_user-0s/* /app/modules/app/tasks.py:45 */ DELETE FROM "example_data_impl_file" WHERE "example_data_impl_file"."id" IN (2567166384)
OK24044client_user-0s/* /app/modules/client/action_modifiers/discontinued.py:104 */ SELECT "example_products_example_productcomplianceproductreport"."updated_at", "example_products_complian
OK23803client_user-0s/* /app/modules/app/tasks.py:45 */ DELETE FROM "example_data_impl_file" WHERE "example_data_impl_file"."id" IN (2567131632)
OK24141client_user-0s/* /app/modules/app/services/spacial_manager.py:567 */ SELECT "example_records_implementation_example_recordproductcandidate"."id", "example_records_implementation_realogr
Log Analysis — merged.log (143,564 lines scanned)
Event TypeSeverityCount
Slow queries (log ≥ 500 ms)112,292112,292 events (30 shown below)
Deadlocks667667
Lock timeouts00
Autovac-cancel queries00
Checkpoint warnings327327
Temp file spills00
OOM events00
FATAL / PANIC183183

Top Slow Queries from Log (showing 20 of 112292)

SevDuration (ms)Query
CRITICAL2,480,124.6/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL2,479,954.8/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL2,436,072.5/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL2,268,821.0/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL2,266,325.9/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL2,266,263.7/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL2,253,768.9/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL2,247,731.3/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL2,224,452.0/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL2,156,732.9/* /app/modules/shared/middleware.py:48 */ /* /app/modules/shared/middleware.py:48 */ /* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "planog
CRITICAL2,135,994.1/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL2,135,765.3/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL2,063,684.8/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL1,974,615.0/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL1,966,857.5/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL1,948,463.5/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL1,948,333.7/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL1,873,230.7/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL1,866,694.4/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"
CRITICAL1,810,103.6/* /app/apps/example_products/utils.py:743 */ SELECT "example_products_implementation_example_productstore"."id" FROM "example_products_implementation_example_productstore" WHERE "example_products_implementation_example_productstore"."id" = 318212952 ORDER BY "example_products_implementation_example_productstore"