moto/moto/xray/urls.py

16 lines
437 B
Python
Raw Normal View History

2017-09-22 22:36:26 +00:00
from __future__ import unicode_literals
from .responses import XRayResponse
url_bases = [
"https?://xray.(.+).amazonaws.com",
]
url_paths = {
2017-09-23 10:02:25 +00:00
'{0}/TelemetryRecords$': XRayResponse.dispatch,
'{0}/TraceSegments$': XRayResponse.dispatch,
'{0}/Traces$': XRayResponse.dispatch,
'{0}/ServiceGraph$': XRayResponse.dispatch,
'{0}/TraceGraph$': XRayResponse.dispatch,
'{0}/TraceSummaries$': XRayResponse.dispatch,
2017-09-22 22:36:26 +00:00
}