在Cloudwatch事件的结构中:
'events': [
{
'logStreamName': 'string',
'timestamp': 123,
'message': 'string',
'ingestionTime': 123,
'eventId': 'string'
},
]
IngestionTime是什么意思?
他们在doc中说:
摄取时间
The time the event was ingested.
我仍然不清楚。
最佳答案
这里有两个时间戳字段。
根据发送到CloudWatch的消息,timestamp
是事件发生的时间。ingestionTime
是CloudWatch实际收到有关事件的消息的时间。
假设所有时钟都是准确的,两者之间的差异是事件发生与CloudWatch接收和“摄取”(馈送,食用,消费)有关事件的消息之间的延迟。
关于amazon-web-services - 接收时间在CloudWatch中是什么意思,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41631142/