Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kipartha/execution details action start end #18698

Merged
Merged
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 @@ -36,6 +36,8 @@
"name": "urn:provider:agent-v2:Microsoft.Azure.Chaos.Fault.CPUPressureAllProcessors",
"id": "59499d33-6751-4b6e-a1f6-58f4d56a040a",
"status": "failed",
"startTime": "2020-12-14T13:56:13.6270153-08:00",
"endTime": "2020-12-14T13:56:13.6270153-08:00",
"targets": [
{
"status": "succeeded",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
"name": "urn:provider:agent-v2:Microsoft.Azure.Chaos.Fault.CPUPressureAllProcessors",
"id": "59499d33-6751-4b6e-a1f6-58f4d56a040a",
"status": "failed",
"startTime": "2020-12-14T13:56:13.6270153-08:00",
"endTime": "2020-12-14T13:56:13.6270153-08:00",
"targets": [
{
"status": "succeeded",
Expand Down Expand Up @@ -82,6 +84,8 @@
"name": "urn:provider:agent-v2:Microsoft.Azure.Chaos.Fault.CPUPressureAllProcessors",
"id": "59499d33-6751-4b6e-a1f6-58f4d56a040a",
"status": "success",
"startTime": "2020-12-14T13:56:13.6270153-08:00",
"endTime": "2020-12-14T13:56:13.6270153-08:00",
"targets": [
{
"status": "succeeded",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -720,6 +720,18 @@
"type": "string",
"readOnly": true
},
"startTime": {
"type": "string",
"format": "date-time",
"description": "String that represents the start time of the action.",
"readOnly": true
},
"endTime": {
"type": "string",
"format": "date-time",
"description": "String that represents the end time of the action.",
"readOnly": true
},
"targets": {
"description": "The array of targets.",
"type": "array",
Expand Down