{% extends "base.html" %} {% block content %}

Graphs

All graphs across all managed instances.

Signed in as {{ current_user.display_name }}.

Quick actions

{% if current_user.is_owner %} Add graph Add instance {% endif %} Manage API keys API docs

Unified View

Graphs

{% if current_user.is_owner %} Add graph {% endif %}
{% for graph in graphs %}

{{ graph.display_name }}

{{ graph.instance_display_name }}

{{ graph.status }}
Prefix
{{ graph.table_prefix if graph.table_prefix else "(default)" }}
Instance
{{ graph.instance_slug }}
Source
{{ graph.source }}
Present
{{ "yes" if graph.exists_in_instance else "no" }}
{% if graph.status_message %}

{{ graph.status_message }}

{% endif %} {% if current_user.is_owner %}
Open Edit {% if graph.table_prefix %}
{% endif %}
{% endif %}
{% else %}

No graphs yet

Managed graphs will appear here once an instance is reachable and its GPDB tables are discovered.

{% endfor %}

Connections

Instances

{% if current_user.is_owner %} Add instance {% endif %}
{% for instance in instances %}

{{ instance.display_name }}

{{ instance.slug }}

{{ instance.status }}
Mode
{{ instance.mode }}
Database
{{ instance.database or "runtime-managed" }}
Host
{{ instance.host or "runtime-managed" }}
Active
{{ "yes" if instance.is_active else "no" }}
{% if instance.description %}

{{ instance.description }}

{% endif %} {% if instance.status_message %}

{{ instance.status_message }}

{% endif %} {% if current_user.is_owner %}
Edit {% if not instance.is_builtin %}
{% endif %}
{% endif %}
{% endfor %}
{% endblock %}