Export results to CSV

Export results to CSV

Overview

Dataplane report exports in Comma Separated Value (CSV) format are suitable for batch processing or for importing into other applications that only accept CSV-format files.

To export the currently viewed Dataplane report, click the Export toolbar dropdown and select CSV Format. A version of the report results in the desired file format will then begin downloading.

Support Queue length

CSV format details

When exporting reports to a CSV-format file, note the following:

  • Only tabular results data is included. The plain-text CSV file format does not support graphic charts or any other richly formatted data.

  • By default, a comma (,) is used to separate the individual fields on a line.

  • Character set encoding is always UTF-8.

  • All dates are expressed in the ISO date format as "yyyy-mm-dd". For example, 2013-07-01 represents July 1, 2013. 

Customize individual reports

Using a customizer script

With a Dataplane Customizer Script, you can customize the CSV export on a report-by-report basis.

If you're not yet familiar with using Customizer Scripts in your reports, read through “Customize reports with scripts” for some background and then return here to get started.

Here's the general syntax for a Customizer Script that sets a property of the CSV export:

customizeExport { format "csv" <property1> <value1> <property2> <value2> }

The words format "csv" indicate you are customizing the CSV export format, and following that are one or more pairs of properties and values.

For example:

customizeExport { format "csv" separator ";" // export the file using semi-colons to separate values }   customizeExport { format "csv" separator "\t" // export the file using tabs to separate values }

Customizer script options

The following list shows the available properties and values that can be used to customize CSV exports:

Property

Values

Description

Property

Values

Description

separator

<single character> 

Specifies the character to use as a field separator on each line of the file.

Any single character in quotes can be used. Common options are:

  • "," – comma (default)

  • ";" – semi-colon

  • ":" – colon

  • "|" – bar

  • "/" – slash

Use the following special notation to indicate a tab character:

  • "\t"– tab

 

 

 

Page Contents

 

Need support? Create a request with our support team.

Copyright © 2005 - 2025 Appfire | All rights reserved.