Dflux
  • Welcome
  • 👍Getting-started
    • Architecture
    • Installing
    • FAQ
    • How to contribute?
    • Privacy
  • DFXE (ENF)
    • Architecture
    • Concepts
      • Flow
      • Envv
      • Config
      • Fsm
      • Messages
      • Testing
      • Settings
      • Templates
      • Report
    • API Reference
    • Examples
    • Observability
  • DFXP
    • Architecture
  • NF's
    • Gnb
    • Enb
    • Protocols
  • cli
    • dfxe
    • dfxt
    • dfxp
  • Release Notes
Powered by GitBook
On this page
  • Repetitions
  • Duration
  • Rate
  • Timeout

Was this helpful?

  1. DFXE (ENF)
  2. Concepts

Settings

Settings can be used to configure the flow repetitions, duration or rate of execution.

settings:
    repetitions: 10
    duration: 30s
    rate:
        repetitions: 1
        interval: 3s
    timeout: 1s

Repetitions

Number of times the flow should be executed, a numeric value.

Duration

The duration of the flow, duration is a string of decimal number with a unit suffix, such as "30s", "30m". Valid time units are "ms", "s", "m"

Flow is completed by which ever finishes first Repetition or Duration.

Rate

Rate of the flow, configured as number of repetition during an interval period.

Timeout

Set the default timeout between state transitions

For example, to configure an execution to run for 30 minutes, with a rate of 10 flows per second

settings:
    duration: 30m
    rate:
        repetitions: 10
        interval: 1s
PreviousTestingNextTemplates

Last updated 2 years ago

Was this helpful?