Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To make manually generated reports show up in the GUI, and be aged by the scheduler, all the following conditions must be met:

  1. All output_file_N options must point to the same directory, and it must be the configured on-demand directory.
  2. All the relative file names given in output_N must be identical (but for the extension).
    this works: format_1=HTML output_file_1=/usr/local/omk/var/reports/on-demand/testme.html format_2=XLSX output_2=/usr/local/omk/var/reports/on-demand/testme.xlsx
    whereas this doesn't: output_file_1=.../test_one.html output_file_2=..../test_two.csv
  3. You must add the option actual_name=<the name of your report files minus extension>.
    For the example from step 2 this would be actual_name=testme.
    You must add the option actual_uuid=<unique identifier>.
    The uuid should follow the UUID V4 standard format , but any globally unique string will do.
  4. If you want report aging, then you have to add a keep_for=<days> option.

...