Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ steps:
headers:
"Content-Type": "application/json"
timeout: {{drain_timeout_secs | default(60) | int + 5}} # Client timeout slightly longer than server
raise_for_status: false
on_error:
continue: true
action:
no_op: {}
# Stop the df-engine and wait for it to drain in-flight data to backend.
Expand All @@ -134,6 +137,9 @@ steps:
headers:
"Content-Type": "application/json"
timeout: {{drain_timeout_secs | default(60) | int + 5}} # Client timeout slightly longer than server
raise_for_status: false
on_error:
continue: true
action:
no_op: {}
# Stop the backend-service (ensures any internal processing completes).
Expand All @@ -147,6 +153,9 @@ steps:
headers:
"Content-Type": "application/json"
timeout: {{drain_timeout_secs | default(60) | int + 5}} # Client timeout slightly longer than server
raise_for_status: false
on_error:
continue: true
action:
no_op: {}
# Brief wait to ensure final metrics are visible before scraping.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ steps:
headers:
"Content-Type": "application/json"
timeout: {{drain_timeout_secs | default(60) | int + 5}} # Client timeout slightly longer than server
raise_for_status: false
on_error:
continue: true
action:
no_op: {}
# Stop monitoring all components.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ steps:
headers:
"Content-Type": "application/json"
timeout: {{drain_timeout_secs | default(60) | int + 5}} # Client timeout slightly longer than server
raise_for_status: false
on_error:
continue: true
action:
no_op: {}
# Stop the df-engine and wait for it to drain in-flight data to backend.
Expand All @@ -136,6 +139,9 @@ steps:
headers:
"Content-Type": "application/json"
timeout: {{drain_timeout_secs | default(60) | int + 5}} # Client timeout slightly longer than server
raise_for_status: false
on_error:
continue: true
action:
no_op: {}
# Stop the backend-service (ensures any internal processing completes).
Expand All @@ -149,6 +155,9 @@ steps:
headers:
"Content-Type": "application/json"
timeout: {{drain_timeout_secs | default(60) | int + 5}} # Client timeout slightly longer than server
raise_for_status: false
on_error:
continue: true
action:
no_op: {}
# Brief wait to ensure final metrics are visible before scraping.
Expand Down
Loading