14 lines
430 B
Python
14 lines
430 B
Python
from __future__ import unicode_literals
|
|
from .responses import XRayResponse
|
|
|
|
url_bases = ["https?://xray.(.+).amazonaws.com"]
|
|
|
|
url_paths = {
|
|
"{0}/TelemetryRecords$": XRayResponse.dispatch,
|
|
"{0}/TraceSegments$": XRayResponse.dispatch,
|
|
"{0}/Traces$": XRayResponse.dispatch,
|
|
"{0}/ServiceGraph$": XRayResponse.dispatch,
|
|
"{0}/TraceGraph$": XRayResponse.dispatch,
|
|
"{0}/TraceSummaries$": XRayResponse.dispatch,
|
|
}
|