{{ report.title }}

{% for arg in GLOBAL_ARGUMENTS %} {% if report[arg] != None %} {% endif %} {% endfor %}
Configuration Value
{{ arg }} {{ report[arg] }}
{% for query in report['queries'] %}

{{ query.config.name }}

{% if query.config.description %}

{{ query.config.description }}

{% endif %} {% for metric, data in query.data.items() %}
{% if metric in field_definitions %}

{{ field_definitions[metric]['uiName'] }} {{ metric }}

{% else %}

{{ metric }}

{% endif %} {% for label, value in data.items() %} {% set data_type = query.data_types[metric] %} {% set total = data.total %} {% if data_type == 'INTEGER' %} {% elif data_type == 'TIME' %} {% else %} {% endif %} {% endfor %}
Dimension Value Percent of total
{{ label }}{{ format_comma(value) }} {% if total > 0 %} {{ format_percent(value, total) }} {% else %} - {% endif %} {{ format_duration(value) }} -{{ '{:.1f}'.format(value) }} -
{% endfor %} {% if query.sampled %} Based on a sample of {{ (query.sampleSize / query.sampleSpace * 100)|round(1) }}% of sessions. {% endif %}
{% endfor %}