Events¶
Migration Manager can report about actions that occur over the API or critical steps in the migration process, as well as general service logs.
See Log targets for configuration options.
Target types¶
webhook: Events can be configured to be sent over the network as aPOSTrequest.
Event types¶
All events contain the same common structure, with type-specific metadata.
logging¶
General service logs according to the specified log level.
Structure¶
{
"time": "2025-12-09T23:17:28.00",
"type": "logging",
"metadata": {
"message": "Start https listener",
"level": "INFO",
"context": {
"addr": "[::]:6443"
}
}
}
lifecycle¶
Records of particular API or migration actions, along with associated metadata.
Structure¶
{
"time": "2025-12-09T23:33:04.00Z",
"type": "lifecycle",
"metadata": {
"action": "system-settings-modified",
"entities": [
"/1.0/system/settings"
],
"requestor": "tls/a57be4e28ab1f1d315e9d3b174a54221b47dca44f2e5c7c436d9cf558e3f8b7e (10.0.0.101)",
"metadata": {
"sync_interval": "10m",
"disable_auto_sync": false,
"log_level": "INFO",
"log_targets": [
{
"name": "test01",
"type": "webhook",
"level": "DEBUG",
"address": "http://example.com/1.0/log",
"username": "",
"password": "",
"ca_cert": "",
"retry_count": 3,
"retry_timeout": "10s",
"scopes": [
"lifecycle",
"logging"
]
}
]
}
}
}
Actions¶
Action |
Description |
Entities |
|---|---|---|
|
The Instance record has been imported from the source |
|
|
The instance record has been modified |
|
|
The instance record has been removed |
|
|
The instance record overrides were modified |
|
|
The network record has been imported from the source |
|
|
The network record has been modified |
|
|
The network record has been removed |
|
|
The network record overrides were modified |
|
|
The queued instance’s migration has been canceled |
|
|
The queued instance’s migration has been restarted |
|
|
The queued instance record has been deleted |
|
|
A new artifact has been created |
|
|
The artifact has been modified |
|
|
The artifact has been deleted |
|
|
The batch has been started |
|
|
The batch has been stopped |
|
|
The batch has been fully reset and is now unstarted |
|
|
The batch has been created |
|
|
The batch has been modified |
|
|
The batch has been deleted |
|
|
The source record has been created |
|
|
The source record has been modified |
|
|
The source record has been deleted |
|
|
Data from the source has been manually synced |
|
|
The target record has been created |
|
|
The target record has been modified |
|
|
The target record has been deleted |
|
|
The system settings have been modified |
|
|
The system network settings have been modified |
|
|
The system security settings have been modified |
|
|
The system certificate has been manually updated |
|
|
instance was created as part of an ongoing migration |
|
|
instance started a pre-migration run |
|
|
instance completed a pre-migration run |
|
|
final migration has started, source instance is offline |
|
|
final migration has completed |
|