pg_exporter 0.7.2

PostgreSQL metric exporter for Prometheus
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
use crate::collectors::Collector;
use crate::collectors::util::{
    get_default_database, get_excluded_databases, get_or_create_pool_for_db,
};
use anyhow::Result;
use futures::future::BoxFuture;
use prometheus::{GaugeVec, IntGaugeVec, Opts, Registry};
use sqlx::{PgPool, Row};
use std::sync::Arc;
use tokio::task::JoinSet;
use tracing::{debug, error, info_span, instrument};
use tracing_futures::Instrument as _;

/// Mirrors postgres_exporter's pg_stat_user_tables collector:
/// Metrics are exported as pg_stat_user_tables_* with labels {datname, schemaname, relname}.
#[derive(Clone)]
pub struct StatUserTablesCollector {
    // Scan counts (cumulative)
    seq_scan: IntGaugeVec,
    seq_tup_read: IntGaugeVec,
    idx_scan: IntGaugeVec,
    idx_tup_fetch: IntGaugeVec,

    // Tuple change counters (cumulative)
    n_tup_ins: IntGaugeVec,
    n_tup_upd: IntGaugeVec,
    n_tup_del: IntGaugeVec,
    n_tup_hot_upd: IntGaugeVec,

    // Tuple visibility (gauges)
    n_live_tup: IntGaugeVec,
    n_dead_tup: IntGaugeVec,
    n_mod_since_analyze: IntGaugeVec,

    // Last maintenance times as epoch seconds (gauges)
    last_vacuum: IntGaugeVec,
    last_autovacuum: IntGaugeVec,
    last_analyze: IntGaugeVec,
    last_autoanalyze: IntGaugeVec,

    // Maintenance counters (cumulative)
    vacuum_count: IntGaugeVec,
    autovacuum_count: IntGaugeVec,
    analyze_count: IntGaugeVec,
    autoanalyze_count: IntGaugeVec,

    // Sizes
    index_size_bytes: IntGaugeVec,
    table_size_bytes: IntGaugeVec,

    // Bloat metrics (derived from tuple counts and sizes)
    bloat_ratio: GaugeVec,
    dead_tuple_size_bytes: GaugeVec,

    // Autovacuum-specific metrics (Phase 1 enhancement)
    // These metrics enable predictive alerting and prevent wraparound disasters
    
    // Time-based metrics (easier for alerting than epoch timestamps)
    last_autovacuum_seconds_ago: GaugeVec,   // Alert when >86400 (24h) - table not being maintained
    last_autoanalyze_seconds_ago: GaugeVec,  // Track analyze freshness
    
    // ⭐ GOLD METRICS - Predict autovacuum triggers BEFORE they happen
    // Ratio: n_dead_tup / (threshold + scale_factor * n_live_tup)
    // Values: 0.0=clean, 0.8=warning, 1.0=trigger point, >1.0=overdue
    // Use these to prevent transaction ID wraparound emergencies!
    autovacuum_threshold_ratio: GaugeVec,    // THE critical metric for autovacuum monitoring
    autoanalyze_threshold_ratio: GaugeVec,   // Predict when autoanalyze will trigger
}

impl Default for StatUserTablesCollector {
    fn default() -> Self {
        Self::new()
    }
}

impl StatUserTablesCollector {
    pub fn new() -> Self {
        let labels = &["datname", "schemaname", "relname"];

        let seq_scan = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_seq_scan",
                "Number of sequential scans initiated on this table",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_seq_scan");

        let seq_tup_read = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_seq_tup_read",
                "Number of live rows fetched by sequential scans",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_seq_tup_read");

        let idx_scan = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_idx_scan",
                "Number of index scans initiated on this table",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_idx_scan");

        let idx_tup_fetch = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_idx_tup_fetch",
                "Number of live rows fetched by index scans",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_idx_tup_fetch");

        let n_tup_ins = IntGaugeVec::new(
            Opts::new("pg_stat_user_tables_n_tup_ins", "Number of rows inserted"),
            labels,
        )
        .expect("pg_stat_user_tables_n_tup_ins");

        let n_tup_upd = IntGaugeVec::new(
            Opts::new("pg_stat_user_tables_n_tup_upd", "Number of rows updated"),
            labels,
        )
        .expect("pg_stat_user_tables_n_tup_upd");

        let n_tup_del = IntGaugeVec::new(
            Opts::new("pg_stat_user_tables_n_tup_del", "Number of rows deleted"),
            labels,
        )
        .expect("pg_stat_user_tables_n_tup_del");

        let n_tup_hot_upd = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_n_tup_hot_upd",
                "Number of rows HOT updated",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_n_tup_hot_upd");

        let n_live_tup = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_n_live_tup",
                "Estimated number of live rows",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_n_live_tup");

        let n_dead_tup = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_n_dead_tup",
                "Estimated number of dead rows",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_n_dead_tup");

        let n_mod_since_analyze = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_n_mod_since_analyze",
                "Estimated number of rows changed since last analyze",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_n_mod_since_analyze");

        let last_vacuum = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_last_vacuum",
                "Last manual vacuum time (epoch seconds)",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_last_vacuum");

        let last_autovacuum = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_last_autovacuum",
                "Last autovacuum time (epoch seconds)",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_last_autovacuum");

        let last_analyze = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_last_analyze",
                "Last manual analyze time (epoch seconds)",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_last_analyze");

        let last_autoanalyze = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_last_autoanalyze",
                "Last autoanalyze time (epoch seconds)",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_last_autoanalyze");

        let vacuum_count = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_vacuum_count",
                "Number of times manually vacuumed",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_vacuum_count");

        let autovacuum_count = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_autovacuum_count",
                "Number of times vacuumed by autovacuum",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_autovacuum_count");

        let analyze_count = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_analyze_count",
                "Number of times manually analyzed",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_analyze_count");

        let autoanalyze_count = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_autoanalyze_count",
                "Number of times analyzed by autovacuum",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_autoanalyze_count");

        let index_size_bytes = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_index_size_bytes",
                "Total disk space used by indexes on this table, in bytes",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_index_size_bytes");

        let table_size_bytes = IntGaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_table_size_bytes",
                "Total disk space used by this table, in bytes",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_table_size_bytes");

        let bloat_ratio = GaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_bloat_ratio",
                "Ratio of dead tuples to total tuples (0.0-1.0). High values indicate need for VACUUM",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_bloat_ratio");

        let dead_tuple_size_bytes = GaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_dead_tuple_size_bytes",
                "Estimated size of dead tuples in bytes. Indicates reclaimable space after VACUUM",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_dead_tuple_size_bytes");

        let last_autovacuum_seconds_ago = GaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_last_autovacuum_seconds_ago",
                "Seconds since last autovacuum (easier for alerting than timestamps)",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_last_autovacuum_seconds_ago");

        let last_autoanalyze_seconds_ago = GaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_last_autoanalyze_seconds_ago",
                "Seconds since last autoanalyze (easier for alerting than timestamps)",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_last_autoanalyze_seconds_ago");

        let autovacuum_threshold_ratio = GaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_autovacuum_threshold_ratio",
                "Ratio of dead tuples to autovacuum threshold (0.0=clean, 1.0=at threshold, >1.0=overdue)",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_autovacuum_threshold_ratio");

        let autoanalyze_threshold_ratio = GaugeVec::new(
            Opts::new(
                "pg_stat_user_tables_autoanalyze_threshold_ratio",
                "Ratio of modified tuples to autoanalyze threshold (0.0=clean, 1.0=at threshold, >1.0=overdue)",
            ),
            labels,
        )
        .expect("pg_stat_user_tables_autoanalyze_threshold_ratio");

        Self {
            seq_scan,
            seq_tup_read,
            idx_scan,
            idx_tup_fetch,
            n_tup_ins,
            n_tup_upd,
            n_tup_del,
            n_tup_hot_upd,
            n_live_tup,
            n_dead_tup,
            n_mod_since_analyze,
            last_vacuum,
            last_autovacuum,
            last_analyze,
            last_autoanalyze,
            vacuum_count,
            autovacuum_count,
            analyze_count,
            autoanalyze_count,
            index_size_bytes,
            table_size_bytes,
            bloat_ratio,
            dead_tuple_size_bytes,
            last_autovacuum_seconds_ago,
            last_autoanalyze_seconds_ago,
            autovacuum_threshold_ratio,
            autoanalyze_threshold_ratio,
        }
    }
}

impl Collector for StatUserTablesCollector {
    fn name(&self) -> &'static str {
        "stat_user_tables"
    }

    fn register_metrics(&self, registry: &Registry) -> Result<()> {
        registry.register(Box::new(self.seq_scan.clone()))?;
        registry.register(Box::new(self.seq_tup_read.clone()))?;
        registry.register(Box::new(self.idx_scan.clone()))?;
        registry.register(Box::new(self.idx_tup_fetch.clone()))?;
        registry.register(Box::new(self.n_tup_ins.clone()))?;
        registry.register(Box::new(self.n_tup_upd.clone()))?;
        registry.register(Box::new(self.n_tup_del.clone()))?;
        registry.register(Box::new(self.n_tup_hot_upd.clone()))?;
        registry.register(Box::new(self.n_live_tup.clone()))?;
        registry.register(Box::new(self.n_dead_tup.clone()))?;
        registry.register(Box::new(self.n_mod_since_analyze.clone()))?;
        registry.register(Box::new(self.last_vacuum.clone()))?;
        registry.register(Box::new(self.last_autovacuum.clone()))?;
        registry.register(Box::new(self.last_analyze.clone()))?;
        registry.register(Box::new(self.last_autoanalyze.clone()))?;
        registry.register(Box::new(self.vacuum_count.clone()))?;
        registry.register(Box::new(self.autovacuum_count.clone()))?;
        registry.register(Box::new(self.analyze_count.clone()))?;
        registry.register(Box::new(self.autoanalyze_count.clone()))?;
        registry.register(Box::new(self.index_size_bytes.clone()))?;
        registry.register(Box::new(self.table_size_bytes.clone()))?;
        registry.register(Box::new(self.bloat_ratio.clone()))?;
        registry.register(Box::new(self.dead_tuple_size_bytes.clone()))?;
        registry.register(Box::new(self.last_autovacuum_seconds_ago.clone()))?;
        registry.register(Box::new(self.last_autoanalyze_seconds_ago.clone()))?;
        registry.register(Box::new(self.autovacuum_threshold_ratio.clone()))?;
        registry.register(Box::new(self.autoanalyze_threshold_ratio.clone()))?;
        Ok(())
    }

    #[instrument(skip(self, pool), level = "info", err, fields(collector="stat_user_tables", otel.kind="internal"))]
    fn collect<'a>(&'a self, pool: &'a PgPool) -> BoxFuture<'a, Result<()>> {
        Box::pin(async move {
            // 1) Discover databases (exclude templates and configured exclusions)
            let excluded = get_excluded_databases().to_vec();
            let db_list_span = info_span!(
                "db.query",
                otel.kind = "client",
                db.system = "postgresql",
                db.operation = "SELECT",
                db.statement = "SELECT datname FROM pg_database WHERE datallowconn ...",
                db.sql.table = "pg_database"
            );
            let dbs: Vec<String> = sqlx::query_scalar(
                r#"
                SELECT datname
                FROM pg_database
                WHERE datallowconn
                  AND NOT datistemplate
                  AND NOT (datname = ANY($1))
                ORDER BY datname
                "#,
            )
            .bind(&excluded)
            .fetch_all(pool)
            .instrument(db_list_span)
            .await?;

            let shared_pool = pool.clone();
            let default_db = get_default_database().map(|s| s.to_string());

            // 2) Spawn one task per DB (no semaphore), reuse shared pool for default DB, tiny pool for others
            let this = Arc::new(self.clone());
            let mut tasks = JoinSet::new();

            for datname in dbs {
                let this = Arc::clone(&this);
                let shared_pool = shared_pool.clone();
                let default_db = default_db.clone();

                tasks.spawn(async move {
                    let use_shared = default_db.as_deref() == Some(datname.as_str());

                    let query_span = info_span!(
                        "db.query",
                        otel.kind = "client",
                        db.system = "postgresql",
                        db.operation = "SELECT",
                        db.statement = "SELECT ... FROM pg_stat_user_tables",
                        db.sql.table = "pg_stat_user_tables",
                        datname = %datname,
                        reuse_pool = use_shared
                    );

                    let rows_res = if use_shared {
                        sqlx::query(
                            r#"
                            SELECT
                                current_database() AS datname,
                                schemaname,
                                relname,
                                seq_scan::bigint,
                                seq_tup_read::bigint,
                                idx_scan::bigint,
                                idx_tup_fetch::bigint,
                                n_tup_ins::bigint,
                                n_tup_upd::bigint,
                                n_tup_del::bigint,
                                n_tup_hot_upd::bigint,
                                n_live_tup::bigint,
                                n_dead_tup::bigint,
                                n_mod_since_analyze::bigint,
                                COALESCE(EXTRACT(EPOCH FROM last_vacuum)::bigint, 0)       AS last_vacuum_epoch,
                                COALESCE(EXTRACT(EPOCH FROM last_autovacuum)::bigint, 0)  AS last_autovacuum_epoch,
                                COALESCE(EXTRACT(EPOCH FROM last_analyze)::bigint, 0)     AS last_analyze_epoch,
                                COALESCE(EXTRACT(EPOCH FROM last_autoanalyze)::bigint, 0) AS last_autoanalyze_epoch,
                                vacuum_count::bigint,
                                autovacuum_count::bigint,
                                analyze_count::bigint,
                                autoanalyze_count::bigint,
                                pg_indexes_size(relid)::bigint AS index_size_bytes,
                                pg_table_size(relid)::bigint   AS table_size_bytes,
                                COALESCE(EXTRACT(EPOCH FROM (now() - last_autovacuum)), 0) AS last_autovacuum_seconds_ago,
                                COALESCE(EXTRACT(EPOCH FROM (now() - last_autoanalyze)), 0) AS last_autoanalyze_seconds_ago,
                                CASE
                                    WHEN n_live_tup > 0 THEN
                                        n_dead_tup::float /
                                        (current_setting('autovacuum_vacuum_threshold')::float +
                                         current_setting('autovacuum_vacuum_scale_factor')::float * n_live_tup)
                                    ELSE 0
                                END AS autovacuum_threshold_ratio,
                                CASE
                                    WHEN n_live_tup > 0 THEN
                                        n_mod_since_analyze::float /
                                        (current_setting('autovacuum_analyze_threshold')::float +
                                         current_setting('autovacuum_analyze_scale_factor')::float * n_live_tup)
                                    ELSE 0
                                END AS autoanalyze_threshold_ratio
                            FROM pg_stat_user_tables
                            "#,
                        )
                        .fetch_all(&shared_pool)
                        .instrument(query_span)
                        .await
                    } else {
                        match get_or_create_pool_for_db(&datname).await {
                            Ok(per_db_pool) => {
                                sqlx::query(
                                    r#"
                                    SELECT
                                        current_database() AS datname,
                                        schemaname,
                                        relname,
                                        seq_scan::bigint,
                                        seq_tup_read::bigint,
                                        idx_scan::bigint,
                                        idx_tup_fetch::bigint,
                                        n_tup_ins::bigint,
                                        n_tup_upd::bigint,
                                        n_tup_del::bigint,
                                        n_tup_hot_upd::bigint,
                                        n_live_tup::bigint,
                                        n_dead_tup::bigint,
                                        n_mod_since_analyze::bigint,
                                        COALESCE(EXTRACT(EPOCH FROM last_vacuum)::bigint, 0)       AS last_vacuum_epoch,
                                        COALESCE(EXTRACT(EPOCH FROM last_autovacuum)::bigint, 0)  AS last_autovacuum_epoch,
                                        COALESCE(EXTRACT(EPOCH FROM last_analyze)::bigint, 0)     AS last_analyze_epoch,
                                        COALESCE(EXTRACT(EPOCH FROM last_autoanalyze)::bigint, 0) AS last_autoanalyze_epoch,
                                        vacuum_count::bigint,
                                        autovacuum_count::bigint,
                                        analyze_count::bigint,
                                        autoanalyze_count::bigint,
                                        pg_indexes_size(relid)::bigint AS index_size_bytes,
                                        pg_table_size(relid)::bigint   AS table_size_bytes,
                                        COALESCE(EXTRACT(EPOCH FROM (now() - last_autovacuum)), 0) AS last_autovacuum_seconds_ago,
                                        COALESCE(EXTRACT(EPOCH FROM (now() - last_autoanalyze)), 0) AS last_autoanalyze_seconds_ago,
                                        CASE
                                            WHEN n_live_tup > 0 THEN
                                                n_dead_tup::float /
                                                (current_setting('autovacuum_vacuum_threshold')::float +
                                                 current_setting('autovacuum_vacuum_scale_factor')::float * n_live_tup)
                                            ELSE 0
                                        END AS autovacuum_threshold_ratio,
                                        CASE
                                            WHEN n_live_tup > 0 THEN
                                                n_mod_since_analyze::float /
                                                (current_setting('autovacuum_analyze_threshold')::float +
                                                 current_setting('autovacuum_analyze_scale_factor')::float * n_live_tup)
                                            ELSE 0
                                        END AS autoanalyze_threshold_ratio
                                    FROM pg_stat_user_tables
                                    "#,
                                )
                                .fetch_all(&per_db_pool)
                                .instrument(query_span)
                                .await
                            }
                            Err(e) => {
                                error!(%datname, error=?e, "stat_user_tables: pool init failed");
                                return Ok::<(), anyhow::Error>(());
                            }
                        }
                    };

                    let rows = match rows_res {
                        Ok(r) => r,
                        Err(e) => {
                            error!(%datname, error=?e, "stat_user_tables: query failed");
                            return Ok(());
                        }
                    };

                    for row in rows {
                        let dat: String = row.try_get::<Option<String>, _>("datname")?.unwrap_or_else(|| "[unknown]".to_string());
                        let schema: String = row.try_get("schemaname")?;
                        let table: String = row.try_get("relname")?;

                        let labels = [&dat, &schema, &table];

                        this.seq_scan.with_label_values(&labels).set(row.try_get::<i64, _>("seq_scan").unwrap_or(0));
                        this.seq_tup_read.with_label_values(&labels).set(row.try_get::<i64, _>("seq_tup_read").unwrap_or(0));
                        this.idx_scan.with_label_values(&labels).set(row.try_get::<i64, _>("idx_scan").unwrap_or(0));
                        this.idx_tup_fetch.with_label_values(&labels).set(row.try_get::<i64, _>("idx_tup_fetch").unwrap_or(0));

                        this.n_tup_ins.with_label_values(&labels).set(row.try_get::<i64, _>("n_tup_ins").unwrap_or(0));
                        this.n_tup_upd.with_label_values(&labels).set(row.try_get::<i64, _>("n_tup_upd").unwrap_or(0));
                        this.n_tup_del.with_label_values(&labels).set(row.try_get::<i64, _>("n_tup_del").unwrap_or(0));
                        this.n_tup_hot_upd.with_label_values(&labels).set(row.try_get::<i64, _>("n_tup_hot_upd").unwrap_or(0));

                        this.n_live_tup.with_label_values(&labels).set(row.try_get::<i64, _>("n_live_tup").unwrap_or(0));
                        this.n_dead_tup.with_label_values(&labels).set(row.try_get::<i64, _>("n_dead_tup").unwrap_or(0));
                        this.n_mod_since_analyze.with_label_values(&labels).set(row.try_get::<i64, _>("n_mod_since_analyze").unwrap_or(0));

                        this.last_vacuum.with_label_values(&labels).set(row.try_get::<i64, _>("last_vacuum_epoch").unwrap_or(0));
                        this.last_autovacuum.with_label_values(&labels).set(row.try_get::<i64, _>("last_autovacuum_epoch").unwrap_or(0));
                        this.last_analyze.with_label_values(&labels).set(row.try_get::<i64, _>("last_analyze_epoch").unwrap_or(0));
                        this.last_autoanalyze.with_label_values(&labels).set(row.try_get::<i64, _>("last_autoanalyze_epoch").unwrap_or(0));

                        this.vacuum_count.with_label_values(&labels).set(row.try_get::<i64, _>("vacuum_count").unwrap_or(0));
                        this.autovacuum_count.with_label_values(&labels).set(row.try_get::<i64, _>("autovacuum_count").unwrap_or(0));
                        this.analyze_count.with_label_values(&labels).set(row.try_get::<i64, _>("analyze_count").unwrap_or(0));
                        this.autoanalyze_count.with_label_values(&labels).set(row.try_get::<i64, _>("autoanalyze_count").unwrap_or(0));

                        this.index_size_bytes.with_label_values(&labels).set(row.try_get::<i64, _>("index_size_bytes").unwrap_or(0));
                        this.table_size_bytes.with_label_values(&labels).set(row.try_get::<i64, _>("table_size_bytes").unwrap_or(0));

                        // Calculate bloat metrics
                        let n_live = row.try_get::<i64, _>("n_live_tup").unwrap_or(0);
                        let n_dead = row.try_get::<i64, _>("n_dead_tup").unwrap_or(0);
                        let tbl_size = row.try_get::<i64, _>("table_size_bytes").unwrap_or(0);
                        
                        let total_tuples = n_live + n_dead;
                        let bloat_ratio = if total_tuples > 0 {
                            n_dead as f64 / total_tuples as f64
                        } else {
                            0.0
                        };
                        
                        let dead_size_estimate = if tbl_size > 0 {
                            tbl_size as f64 * bloat_ratio
                        } else {
                            0.0
                        };

                        this.bloat_ratio.with_label_values(&labels).set(bloat_ratio);
                        this.dead_tuple_size_bytes.with_label_values(&labels).set(dead_size_estimate);

                        // Autovacuum-specific metrics (Phase 1 enhancement)
                        // These provide predictive alerting and prevent wraparound disasters
                        
                        // Time-based metrics - easier for alerting than epoch timestamps
                        let last_autovac_seconds_ago: f64 = row.try_get("last_autovacuum_seconds_ago").unwrap_or(0.0);
                        let last_autoanalyze_seconds_ago: f64 = row.try_get("last_autoanalyze_seconds_ago").unwrap_or(0.0);
                        
                        // ⭐ GOLD METRICS - Predict autovacuum triggers BEFORE they happen
                        // Ratio of dead/modified tuples to autovacuum threshold
                        // Values: 0.0=clean, 0.8=warning, 1.0=trigger, >1.0=overdue
                        // These prevent transaction ID wraparound emergencies!
                        let autovac_threshold_ratio: f64 = row.try_get("autovacuum_threshold_ratio").unwrap_or(0.0);
                        let autoanalyze_threshold_ratio: f64 = row.try_get("autoanalyze_threshold_ratio").unwrap_or(0.0);

                        this.last_autovacuum_seconds_ago.with_label_values(&labels).set(last_autovac_seconds_ago);
                        this.last_autoanalyze_seconds_ago.with_label_values(&labels).set(last_autoanalyze_seconds_ago);
                        this.autovacuum_threshold_ratio.with_label_values(&labels).set(autovac_threshold_ratio);
                        this.autoanalyze_threshold_ratio.with_label_values(&labels).set(autoanalyze_threshold_ratio);

                        debug!(datname=%dat, schema=%schema, table=%table, "updated pg_stat_user_tables metrics");
                    }

                    Ok::<(), anyhow::Error>(())
                });
            }

            while let Some(res) = tasks.join_next().await {
                if let Err(e) = res {
                    error!(error=?e, "stat_user_tables: task join error");
                } else if let Ok(Err(e)) = res {
                    error!(error=?e, "stat_user_tables: task returned error");
                }
            }

            Ok(())
        })
    }
}