Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

api.monitoring_view3

Description

Monitoring Timeseries whatever data from json web view

Table Definition
CREATE VIEW monitoring_view3 AS (
 SELECT m."time",
    jsonb_each_text.key,
    jsonb_each_text.value
   FROM api.metrics m,
    LATERAL jsonb_each_text(m.metrics) jsonb_each_text(key, value)
  ORDER BY m."time" DESC
)

Columns

NameTypeDefaultNullable
keytexttrue
timetimestamp with time zonetrue
valuetexttrue

Referenced Tables

NameColumnsCommentType
api.metrics11Stores metrics from vesselBASE TABLE

Relations

erDiagram


"api.monitoring_view3" {
  text key ""
  timestamp_with_time_zone time ""
  text value ""
}

Generated by tbls