mirror of
https://github.com/FlipsideCrypto/fsc-ibc.git
synced 2026-02-06 10:58:49 +00:00
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
version: 2
|
|
|
|
sources:
|
|
- name: github_actions
|
|
database: "{{ target.database }}"
|
|
schema: github_actions
|
|
tables:
|
|
- name: workflows
|
|
- name: bronze_streamline
|
|
database: "{{ target.database }}"
|
|
schema: streamline
|
|
tables:
|
|
- name: blocks
|
|
freshness:
|
|
warn_after: {count: 2, period: hour}
|
|
error_after: {count: 4, period: hour}
|
|
- name: tx_counts
|
|
freshness:
|
|
warn_after: {count: 2, period: hour}
|
|
error_after: {count: 4, period: hour}
|
|
- name: transactions
|
|
freshness:
|
|
warn_after: {count: 2, period: hour}
|
|
error_after: {count: 4, period: hour}
|
|
- name: crosschain_silver
|
|
{{ 'CROSSCHAIN_DEV' if '_DEV' in target.database.upper() else 'CROSSCHAIN' }}
|
|
schema: silver
|
|
tables:
|
|
- name: number_sequence
|
|
- name: labels_combined
|
|
- name: hourly_prices_coin_gecko
|
|
- name: fsc_ibc_admin
|
|
database: >-
|
|
{{ 'FSC_IBC_DEV' if '_DEV' in target.database.upper() else 'FSC_IBC' }}
|
|
schema: admin
|
|
tables:
|
|
- name: _master_keys
|
|
- name: rpc_node_logs |