Zeigt Lineage einer Entity
Displays upstream sources and downstream dependencies for a data entity. Use this to understand data flow and impact analysis when debugging or modifying entities in your data pipeline.
/plugin marketplace add fellnerd/claude-marketplace/plugin install datavault@dimetrics-marketplaceZeige die Datenherkunft (Upstream) und Abhängigkeiten (Downstream) einer Entity.
Tool: show_lineage
Args: { "entityName": "{{ENTITY_NAME}}" }
═══════════════════════════════════════
Lineage: hub_company
═══════════════════════════════════════
📥 UPSTREAM (Quellen)
────────────────────────────────────────
PostgreSQL (werkportal)
│
▼
ext_company (External Table)
│
▼
stg_company (Staging View)
│
▼
┌─────────────┐
│ hub_company │ ◄── DU BIST HIER
└─────────────┘
📤 DOWNSTREAM (Abhängigkeiten)
────────────────────────────────────────
hub_company
│
├──▶ sat_company
│ │
│ └──▶ pit_company
│
├──▶ sat_company_status
│
├──▶ link_company_country
│ │
│ └──▶ sat_eff_company_country
│
└──▶ company_current_v (Mart)
═══════════════════════════════════════
stg_company → hub_company → sat_company → pit_company → company_current_v
↘ link_company_country → sat_eff_company_country
/lineage hub_company # Bidirektional
/lineage hub_company --upstream # Nur Quellen
/lineage hub_company --downstream # Nur Abhängigkeiten
Alternative über dbt:
Tool: run_command
Args: { "command": "dbt ls --select +{{ENTITY_NAME}}+" }
/lineage hub_company
/lineage sat_company
/lineage company_current_v