mirror of
https://github.com/reconurge/flowsint.git
synced 2026-07-23 14:24:58 -05:00
26 lines
348 B
YAML
26 lines
348 B
YAML
name: retry-example
|
|
category: Ip
|
|
version: 1.0
|
|
input:
|
|
type: Ip
|
|
key: address
|
|
request:
|
|
method: GET
|
|
url: https://api.example.com/lookup/{{address}}
|
|
timeout: 10
|
|
output:
|
|
type: Ip
|
|
response:
|
|
expect: json
|
|
map:
|
|
address: ip
|
|
retry:
|
|
max_retries: 5
|
|
backoff_factor: 1.0
|
|
retry_on_status:
|
|
- 429
|
|
- 500
|
|
- 502
|
|
- 503
|
|
- 504
|