{% extends "base.html" %} {% block title %} - Report{% endblock %} {% block reports %}active{% endblock %} {% block content %}

{{ stationid }} {{ metric|title }} ({% if monthly %}Monthly{% else %}Daily{% endif %})

{% for metric in metrics %} {% if monthly %}

{{ metric|title }}

{% else %}

{{ metric|title }}

{% endif %} {% endfor %}
{% if monthly %}

Daily Rollup

{% else %}

Monthly Rollup

{% endif %}

Retrieving each data point, per month or per day, for the requested scenario...

These requests are using the python-driver to read the output of Spark jobs run against Cassandra data.

{% endblock %} {% block page_script %} {% endblock %}