2026 年 3 月 25 日
Advanced Integrated Visibility 时间戳标准化更新
对于未包含时间部分的 Advanced Integrated Visibility (AIV) Webhook 事件,系统现在将统一采用标准化时间戳 00:00:00+00:00 (UTC)。此前,此类事件默认使用 23:59:59,并带有非 UTC 的时区偏移。
预计不会出现停机时间。在整个发布过程中,所有 AIV Webhook 服务将完全可用且保持正常运行。
概述
本次发布对 AIV Webhook 事件数据负载中缺失时间部分时,时间戳的填充方式进行了标准化处理。
预期变化
- 对于其中一些缺少时间部分的 Webhook 事件,时间戳现在将返回 00:00:00+00:00。
- 此前因偏移处理而导致时间戳出现未来时间的事件,将得到修正。
- 不会产生额外的 Webhook 事件。
- 事件的顺序及数量保持不变。
- 仅受影响的时间戳的时间部分会被调整。
已更新字段
仅当传入的数据负载中不包含时间部分时,以下字段才会更新(适用于所有生命周期时间戳类型):
- scanEvent.eventCreateTime
- scanEvent.previousEvents[].eventCreateTime
- dateAndTimes[].dateTime.dateTimeRange
时间戳行为
事件创建时间(消息/扫描事件)
此前:23:59:59,带有非 UTC 的时区偏移(例如 +07:00)
更新后:00:00:00+00:00 (UTC)
示例
已递送事件 (DL)
此前:"eventCreateTime": "2026-03-17T23:59:59+07:00"
更新后:"eventCreateTime": "2026-03-17T00:00:00+00:00"
此前的事件数组
此前:
"previousEvents": [
{
"eventCreateTime": "2026-03-17T23:59:59+07:00"
}
]
更新后:
"previousEvents": [
{
"eventCreateTime": "2026-03-17T00:00:00+00:00"
}
]
dateAndTimes 数组
此前:
"dateAndTimes": [
{
"dateAndTime": {
"dateTimeRange": {
"begins": "2026-03-17T23:59:59+07:00"
}
}
}
]
更新后:
"dateAndTimes": [
{
"dateAndTime": {
"dateTimeRange": {
"begins": "2026-03-17T00:00:00+00:00"
}
}
}
]
