---
title: "Data Exporter | Introduction | N3uron KB V1.21"
slug: "data-exporter-introduction"
description: "Data Exporter is a N3uron module designed to generate XML or CSV files containing raw or aggregated data. This data is collected from selected tag groups…"
updated: 2022-05-19T07:43:02Z
published: 2022-05-19T07:43:03Z
canonical: "docs.n3uron.com/data-exporter-introduction"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.n3uron.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

**Data Exporter** is a **N3uron** module that generates XML or CSV files containing raw or aggregated data. This data is collected from selected tag groups to be exported as files, either compressed or loose. This module also allows for automatic uploading of the generated files to an SFTP or FTP server, as well as storing files locally. The image below depicts an example XML file and CSV file.

```markup
<Data Name=”PLANT001.BLK001.INV001” Start=”2020-03-12T10:00:00” End=”2020-03-12T10:05:00”>
<Tag Name=”Voltage” First=”231” Last=”233” Min=”230” Max=”235” Avg=”232.1” Good=”1.00” Count=”9”/>
<Tag Name=”Current” First=”124” Last=”152” Min=”89” Max=”152” Avg=”110.62” Good=”1.00” Count=”8”/>
<Tag Name="DailyEnergy" First="667" Last="668" Min="667" Max="668" Avg="667.87" Good="1.00" Count="9"/>
<Tag Name="Power" First="69.31" Last="83.62" Min="48.48" Max="83.62" Avg="60.77" Good="1.00" Count="7"/>
</Data>
```

```none
#Name=CSVFileName
#Start=2020-03-12T10:00:00Z
#End=2020-03-12T10:05:00Z
:Tag,min,max,first,last,avg,count,good
PLANT001.BLK001.INV001.Voltage,230,235,231,233,232.1,9,1.00
PLANT001.BLK001.INV001.Current,89,152,124,152,110.62,8,1.00
PLANT001.BLK001.INV001.DailyEnergy,667,668,667,668,667.87,9,1.00
PLANT001.BLK001.INV001.Power,48.48,83.62,69.31,83.62,60.77,7,1.00
```
