Skip to content

Commit

Permalink
Add better description for the export
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspoignant authored Apr 24, 2023
1 parent 8e3c3b9 commit 848169f
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions website/docs/configure_flag/export_flags_usage.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 40
description: How to export data on how feature flags were used?
description: How to export evaluation data?
---
import {Cards} from '@site/src/components/doc/cards';
import customlogo from '@site/static/docs/collectors/custom.png';
Expand All @@ -10,9 +10,16 @@ import loglogo from '@site/static/docs/collectors/log.png';
import s3logo from '@site/static/docs/collectors/s3.png';
import webhooklogo from '@site/static/docs/collectors/webhook.png';

# How to export data on how feature flags were used
# How to export evaluation data
GO Feature Flag allows for the collection of flag usage data.
During flag evaluation, the key, flag variation and other non-sensitive information used are collected and cached for a
configurable period of time.

To understand better on how feature flags were used, we can export and analyse the usage with these ways:
The usage data is then written to a file in a chosen format (`parquet`, `JSON` or `CSV`) at a specified interval and
exported to your desired location. This provides a single source for easy processing of the data. The feature can be
configured with options for file format, flush interval, and file location.

To use, simply configure, use the feature flag as normal, and analyze the collected usage data.

## Available exporters

Expand Down

0 comments on commit 848169f

Please sign in to comment.