mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-29 21:23:55 +08:00
25 lines
825 B
Python
25 lines
825 B
Python
"""
|
|
https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html
|
|
"""
|
|
|
|
MOCK_LAMBDA_SQS_EVENT = {
|
|
"Records": [
|
|
{
|
|
"messageId": "059f36b4-87a3-44ab-83d2-661975830a7d",
|
|
"receiptHandle": "AQEBwJnKyrHigUMZj6rYigCgxlaS3SLy0a...",
|
|
"body": "Test message.",
|
|
"attributes": {
|
|
"ApproximateReceiveCount": "1",
|
|
"SentTimestamp": "1545082649183",
|
|
"SenderId": "AIDAIENQZJOLO23YVJ4VO",
|
|
"ApproximateFirstReceiveTimestamp": "1545082649185",
|
|
},
|
|
"messageAttributes": {},
|
|
"md5OfBody": "e4e68fb7bd0e697a0ae8f1bb342846b3",
|
|
"eventSource": "aws:sqs",
|
|
"eventSourceARN": "arn:aws:sqs:us-east-2:123456789012:my-queue",
|
|
"awsRegion": "us-east-2",
|
|
}
|
|
]
|
|
}
|