Skip to content

Commit 98a0849

Browse files
claudespicelukekim
authored andcommitted
fix: Correct swapped metric types in Postgres deployment guide
The metric types for `replication_bootstrap_rows_total` and `replication_bootstrap_complete` were swapped. Per the source implementation, `replication_bootstrap_rows_total` is an ObservableCounter (not ObservableGauge) and `replication_bootstrap_complete` is an ObservableGauge (not ObservableCounter).
1 parent 95f2ca7 commit 98a0849

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

website/docs/components/data-connectors/postgres/deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ The PostgreSQL connector exposes observable metrics for its replication pipeline
8787
| `replication_updates_total` | ObservableCounter | Total update operations received. |
8888
| `replication_deletes_total` | ObservableCounter | Total delete operations received. |
8989
| `replication_truncates_total` | ObservableCounter | Total truncate operations received. |
90-
| `replication_bootstrap_rows_total` | ObservableGauge | Total rows fetched during initial bootstrap. |
91-
| `replication_bootstrap_complete` | ObservableCounter | Bootstrap completion status. |
90+
| `replication_bootstrap_rows_total` | ObservableCounter | Total rows fetched during initial bootstrap. |
91+
| `replication_bootstrap_complete` | ObservableGauge | Bootstrap completion status. |
9292
| `replication_decode_errors_total` | ObservableCounter | Total WAL decode errors. |
9393
| `replication_schema_mismatch_errors_total` | ObservableCounter | Total schema mismatch errors during replication. |
9494
| `replication_recv_errors_total` | ObservableCounter | Total receive errors during replication. |

0 commit comments

Comments
 (0)