{% extends "layout.html" %} {% set active_page = "export" %} {% block title %} - {{_('Export Measurements')}}{% endblock %} {% block head %} {% endblock %} {% block body %}
{% include 'flash_messages.html' %}

This is an experimental log generator (work-in-progress). It will export all measurements found within the date/time range in comma-separated value (CSV) format (as timestamp, measurement). If a download doesn't begin after the Export button is pressed (i.e. the page just refreshes), that means no data was available for the selected measurement and range.

Note 1: Requesting large data sets may take a long time to process.

Note 2: Dates and times are stored in influxdb as UTC, therefore you will need to adjust to your time zone for the local time.

{{exportOptions.measurement.label(class_='control-label')}}
{{exportOptions.date_range.label(class_='control-label')}}
{{exportOptions.Export(class_='form-control btn btn-default')}}
{% endblock %}