{% extends "base.html" %} {% block title %}Pipelines - engineer_kit{% endblock %} {% block content %}

Pipelines

Conectores configurados neste workspace.

{% if pipelines %} {% for item in pipelines %} {% endfor %}
Nome Endpoint Última execução Status Registros
{{ item.config.name }} {{ item.config.connector.base_url }} {{ item.last_run.finished_at if item.last_run else "nunca rodou" }} {% if item.last_run %} {{ item.last_run.status }} {% else %} {% endif %} {{ item.last_run.rows_loaded if item.last_run else "—" }} Ver
{% else %}
Nenhum pipeline configurado ainda. Criar o primeiro.
{% endif %} {% endblock %}