{{ greeting }}, {{ user_name }} —
{% if stats.errors_today == 0 and stats.pipelines_today > 0 %}your data is healthy.{% endif %}
{% if stats.errors_today == 0 and stats.pipelines_today == 0 %}let's run some queries.{% endif %}
{% if stats.errors_today > 0 %}{{ stats.errors_today }} {% if stats.errors_today == 1 %}query{% else %}queries{% endif %} failed today.{% endif %}
{% if stats.pipelines_today > 0 %}
{{ stats.pipelines_today }} {% if stats.pipelines_today == 1 %}query{% else %}queries{% endif %} in the last 24h, {{ stats.errors_today }} {% if stats.errors_today == 1 %}error{% else %}errors{% endif %}.
{% else %}
No activity in the last 24h yet.
{% endif %}