FBL
  • About FBL
  • Flows
    • Hello World
    • Templates
    • Template Functions
    • Metadata Fields
  • Plugins
    • Flow Control
    • Context State
    • Execute (Shell & JavaScript)
    • File System
    • CLI Prompts
    • Execution Reporters
    • Common Options
  • Anti-Patterns & Pitfalls
    • Sequence Action Handler - "shareParameters" option
  • Packages
  • Glossary
Powered by GitBook
On this page

Was this helpful?

  1. Plugins

Execution Reporters

Execution flow can be presented in different output formats. FBL supports only 2 generic ones: json and yaml. All other reporters should be provided as 3rd-party plugins.

CLI examples:

fbl \
    -o /tmp/fbl.json \
    -r json \
    sample.flow.yml
fbl \
    -o /tmp/fbl.yml \
    -r yaml \
    sample.flow.yml

3rd Party Reporter options:

fbl \
    -o /tmp/fbl.3rd \
    -r 3rd.party \
    --report-option key=value \
    sample.flow.yml
PreviousCLI PromptsNextCommon Options

Last updated 6 years ago

Was this helpful?