---
title: "UFL Exporter | Appendix | N3uron KB V1.22"
slug: "ufl-exporter-appendix"
description: "UFL Exporter is a N3uron module designed to send data to OSIsoft PI by exporting tag events to CSV files using multiple tag filters. Events are stored in the memory’s buffer, and…"
updated: 2025-09-30T15:55:34Z
published: 2025-12-23T12:49:28Z
canonical: "docs.n3uron.com/ufl-exporter-appendix"
---

> ## 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.

# Appendix

## Output file

Output CSV files are named according to two factors: file creation timestamp and N3uron node name. The following example is a generated file name: “1523462885954-main.csv”

Upon start-up, the values of all tags matching the specified filters will be saved, meaning that every subsequent event or virtual sample (according to the Force sample) setting will also be saved.

The generated files contain the following columns:

- **Data type:** B (Boolean), N (Number) or S (String).
- **Tag path****:** The tag’s full path, including prefix and specified separator.
- **Timestamp****:** In ISO 8601 format
- **Tag value**
- **OPC quality**

The following CSV file is an example of a file created using UFL Exporter.

```none
N,Inverter001.Active_Power,2019-02-19T14:46:44.501Z,1020,192
N,Inverter002.Active_Power,2019-02-19T14:46:44.501Z,1250,192
N,Inverter003.Active_Power,2019-02-19T14:46:44.501Z,1210,192
N,Inverter004.Active_Power,2019-02-19T14:46:44.501Z,1137,192
N,Inverter005.Active_Power,2019-02-19T14:46:44.501Z,1112 ,192
N,Inverter001.Active_Power,2019-02-19T14:47:44.503Z,1035 ,192
N,Inverter002.Active_Power,2019-02-19T14:47:44.503Z,1249 ,192
N,Inverter003.Active_Power,2019-02-19T14:47:44.503Z,1245 ,192
N,Inverter004.Active_Power,2019-02-19T14:47:44.503Z,1168 ,192
N,Inverter005.Active_Power,2019-02-19T14:47:44.503Z,1098 ,192
```
