Skip to content

Commit abcd138

Browse files
authored
Update scheduled events
- Fix duration on live migration events - Add note on 0 duration events
1 parent 817ad30 commit abcd138

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/virtual-machines/linux/scheduled-events.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ In the case where there are scheduled events, the response contains an array of
161161
| NotBefore| Time after which this event can start. The event is guaranteed to not start before this time. Will be blank if the event has already started <br><br> Example: <br><ul><li> Mon, 19 Sep 2016 18:29:47 GMT |
162162
| Description | Description of this event. <br><br> Example: <br><ul><li> Host server is undergoing maintenance. |
163163
| EventSource | Initiator of the event. <br><br> Example: <br><ul><li> `Platform`: This event is initiated by platform. <li>`User`: This event is initiated by user. |
164-
| DurationInSeconds | The expected duration of the interruption caused by the event. <br><br> Example: <br><ul><li> `9`: The interruption caused by the event will last for 9 seconds. <li>`-1`: The default value used if the impact duration is either unknown or not applicable. |
164+
| DurationInSeconds | The expected duration of the interruption caused by the event. <br><br> Example: <br><ul><li> `9`: The interruption caused by the event will last for 9 seconds. <li> `0`: The event will not interrupt the VM or impact its availability (eg. update to the network) <li>`-1`: The default value used if the impact duration is either unknown or not applicable. |
165165

166166
### Event Scheduling
167167
Each event is scheduled a minimum amount of time in the future based on the event type. This time is reflected in an event's `NotBefore` property.
@@ -251,7 +251,7 @@ The `DocumentIncarnation` is changing every time there is new information in `Ev
251251
"NotBefore": "Mon, 11 Apr 2022 22:26:58 GMT",
252252
"Description": "Virtual machine is being paused because of a memory-preserving Live Migration operation.",
253253
"EventSource": "Platform",
254-
"DurationInSeconds": -1
254+
"DurationInSeconds": 5
255255
}
256256
]
257257
}
@@ -271,7 +271,7 @@ The `DocumentIncarnation` is changing every time there is new information in `Ev
271271
"NotBefore": "",
272272
"Description": "Virtual machine is being paused because of a memory-preserving Live Migration operation.",
273273
"EventSource": "Platform",
274-
"DurationInSeconds": -1
274+
"DurationInSeconds": 5
275275
}
276276
]
277277
}

0 commit comments

Comments
 (0)