Skip to content

PostgreSQL - Data Model

Context

Detailed technical specification for Data Model.

1. Default Topology / Flow

erDiagram
    Postgresql_CORE ||--o{ CONFIG : requires
    Postgresql_CORE ||--o{ STATE : writes
    CONFIG {
        string runtime_params
        string limits
    }
    STATE {
        string metric_id
        json payload
    }