The openlayer export command downloads monitoring data from an inference pipeline for a specified time period.

Usage

openlayer export [Openlayer inference pipeline id] [start] [end]

This will fetch your monitoring data from the inference pipeline and place a dataset.json and config.json file in ./openlayer-exports/{pipeline_name}_{start}_{end}.

Note that start and end must be unix timestamps specified in seconds.

You can use this data for offline experimentation to fix failing tests. Create a dataset in development mode and iterate until the tests start passing.

If you want to specify a directory to place the exported data in, you can use the --output-dir option:

openlayer export 822b63dd-8305-4317-adb7-222461f6a559 \
    1705121894 1715121894 --output-dir=[directory path]