clan report for {{ report.run_date }}

Configuration

{% for arg in GLOBAL_ARGUMENTS %} {% if report[arg] != None %} {% endif %} {% endfor %}
{{ arg }} {{ report[arg] }}

Results

{% for query in report['queries'] %}

{{ query.config.name }}

{% if query.sampled %}

Using {{ query.sampleSize / query.sampleSpace * 100 }}% of data as a sample.

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

{{ metric }}

{% 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(s) Value Percent of total
{{ label }}{{ format_comma(value) }} {% if total > 0 %} {{ format_percent(value, total) }} {% else %} - {% endif %} {{ format_duration(value) }} -{{ '{:.1f}'.format(value) }} -
{% endfor %}
{% endfor %}