Sending OpenTelemetry Trace Data to Your Phoenix Project: A Guide
Hi! I have OpenTelemetry trace data that I want to send to my Phoenix project. Is it possible to send it directly without transformations? If yes, could you share resource links and example code? If not, what's the minimal transformation needed and what's the process? Any help would be appreciated! Schema of the data i had :
{
"resourceSpans": [
{
"resource": {
"attributes": [
{
"key": string,
"value": {
"stringValue": string
}
}
]
},
"instrumentationLibrarySpans": [
{
"instrumentationLibrary": {
"name": string,
"version": string
},
"spans": [
{
"traceId": string,
"spanId": string,
"name": string,
"kind": string,
"startTimeUnixNano": string,
"endTimeUnixNano": string,
"attributes": [
{
"key": string,
"value": {
"stringValue": string
}
}
]
}
]
}
]
}
]
}