SigNoz / signoz

SigNoz is an open-source observability platform native to OpenTelemetry with logs, traces and metrics in a single application. An open-source alternative to DataDog, NewRelic, etc. 🔥 🖥. 👉 Open source Application Performance Monitoring (APM) & Observability tool
https://signoz.io
Other
19.22k stars 1.27k forks source link

Retrieve Traces using Signoz API #3231

Closed danielbdias closed 11 months ago

danielbdias commented 1 year ago

Hi folks! This follow-up discussion started on Signoz Community Slack here.

Recently I integrated Signoz with Tracetest to allow users to do Trace-based tests in their applications while storing traces on Signoz (PR with context and example app).

At that time, I chose to add another OTel Collector in front of Signoz, sending traces to Signoz and Tracetest to prevent users from doing any customization on Signoz OTel Collector (which could cause problems in the future if they need to update it).

To improve this integration, we are thinking of getting traces from Signoz directly from it instead of adding this additional OtelCollector, allowing users that already have their services to send telemetry to Signoz directly and also to be able to do Trace-based tests. Looking into your documentation, I have not found any API to query traces directly.

Do you know how we can do that?

welcome[bot] commented 1 year ago

Thanks for opening this issue. A team member should give feedback soon. In the meantime, feel free to check out the contributing guidelines.

makeavish commented 11 months ago

Hey @danielbdias You can use Query Range APIs to query traces in different formats (List/graph/value) Here are some examples:

Sample cURL to fetch a list of spans
``` curl 'https://stagingapp.signoz.io/api/v3/query_range' \ -H 'Accept: application/json, text/plain, */*' \ -H 'Accept-Language: en-GB,en;q=0.7' \ -H 'Connection: keep-alive' \ -H 'Content-Type: application/json' \ -H 'Cookie: intercom-device-id-wmkurvb7=028252d6-3d96-4824-9546-ae9597953485; ajs_anonymous_id=6878d4dc-9f19-4e19-bef6-814e84ac7016; intercom-session-wmkurvb7=UUZlRUNIUUdaV2tMRS9wVVJXUTQwZWRmVE9mOVA5aWRlRXBGVWdoZDlpUVkyUUMzVjRRcnhuRDg3ZEhMcWxpRC0tZ21Qd1ExdWZNajk4VktyNFpFdTlodz09--305cd84035c2b8d0a7df6a17f480036bb936a519' \ -H 'Origin: https://stagingapp.signoz.io' \ -H 'Referer: https://stagingapp.signoz.io/traces-explorer?columns=%5B%7B%22title%22%3A%22serviceName%22%2C%22dataIndex%22%3A%22serviceName%22%2C%22key%22%3A%22serviceName-string-tag%22%7D%2C%7B%22title%22%3A%22date%22%2C%22dataIndex%22%3A%22date%22%2C%22key%22%3A%22date%22%2C%22width%22%3A145%7D%2C%7B%22title%22%3A%22httpUrl%22%2C%22dataIndex%22%3A%22httpUrl%22%2C%22key%22%3A%22httpUrl-string-tag%22%7D%2C%7B%22title%22%3A%22responseStatusCode%22%2C%22dataIndex%22%3A%22responseStatusCode%22%2C%22key%22%3A%22responseStatusCode-string-tag%22%7D%2C%7B%22title%22%3A%22httpMethod%22%2C%22dataIndex%22%3A%22httpMethod%22%2C%22key%22%3A%22httpMethod-string-tag%22%7D%5D&compositeQuery=%257B%2522queryType%2522%253A%2522builder%2522%252C%2522builder%2522%253A%257B%2522queryData%2522%253A%255B%257B%2522dataSource%2522%253A%2522traces%2522%252C%2522queryName%2522%253A%2522A%2522%252C%2522aggregateOperator%2522%253A%2522noop%2522%252C%2522aggregateAttribute%2522%253A%257B%2522id%2522%253A%2522------%2522%252C%2522dataType%2522%253A%2522%2522%252C%2522key%2522%253A%2522%2522%252C%2522isColumn%2522%253Afalse%252C%2522type%2522%253A%2522%2522%252C%2522isJSON%2522%253Afalse%257D%252C%2522filters%2522%253A%257B%2522items%2522%253A%255B%255D%252C%2522op%2522%253A%2522AND%2522%257D%252C%2522expression%2522%253A%2522A%2522%252C%2522disabled%2522%253Afalse%252C%2522having%2522%253A%255B%255D%252C%2522stepInterval%2522%253A60%252C%2522limit%2522%253Anull%252C%2522orderBy%2522%253A%255B%257B%2522columnName%2522%253A%2522timestamp%2522%252C%2522order%2522%253A%2522desc%2522%257D%255D%252C%2522groupBy%2522%253A%255B%255D%252C%2522legend%2522%253A%2522%2522%252C%2522reduceTo%2522%253A%2522sum%2522%257D%255D%252C%2522queryFormulas%2522%253A%255B%255D%257D%252C%2522promql%2522%253A%255B%257B%2522name%2522%253A%2522A%2522%252C%2522query%2522%253A%2522%2522%252C%2522legend%2522%253A%2522%2522%252C%2522disabled%2522%253Afalse%257D%255D%252C%2522clickhouse_sql%2522%253A%255B%257B%2522name%2522%253A%2522A%2522%252C%2522legend%2522%253A%2522%2522%252C%2522disabled%2522%253Afalse%252C%2522query%2522%253A%2522%2522%257D%255D%252C%2522id%2522%253A%2522acd71064-b91f-47ad-84da-6fec58521941%2522%257D&pagination=%7B%22offset%22%3A0%2C%22limit%22%3A10%7D&options=%7B%22selectColumns%22%3A%5B%7B%22key%22%3A%22serviceName%22%2C%22dataType%22%3A%22string%22%2C%22type%22%3A%22tag%22%2C%22isColumn%22%3Atrue%2C%22id%22%3A%22serviceName--string--tag--true%22%7D%2C%7B%22key%22%3A%22httpMethod%22%2C%22dataType%22%3A%22string%22%2C%22type%22%3A%22tag%22%2C%22isColumn%22%3Atrue%2C%22id%22%3A%22httpMethod--string--tag--true%22%7D%2C%7B%22key%22%3A%22responseStatusCode%22%2C%22dataType%22%3A%22string%22%2C%22type%22%3A%22tag%22%2C%22isColumn%22%3Atrue%2C%22id%22%3A%22responseStatusCode--string--tag--true%22%7D%2C%7B%22key%22%3A%22httpUrl%22%2C%22dataType%22%3A%22string%22%2C%22type%22%3A%22tag%22%2C%22isColumn%22%3Atrue%2C%22id%22%3A%22httpUrl--string--tag--true%22%7D%5D%2C%22maxLines%22%3A2%2C%22format%22%3A%22list%22%7D' \ -H 'Sec-Fetch-Dest: empty' \ -H 'Sec-Fetch-Mode: cors' \ -H 'Sec-Fetch-Site: same-origin' \ -H 'Sec-GPC: 1' \ -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36' \ -H 'sec-ch-ua: "Brave";v="119", "Chromium";v="119", "Not?A_Brand";v="24"' \ -H 'sec-ch-ua-mobile: ?0' \ -H 'sec-ch-ua-platform: "macOS"' \ --data-raw '{"start":1700449706000,"end":1700450006000,"step":60,"variables":{},"compositeQuery":{"queryType":"builder","panelType":"list","builderQueries":{"A":{"dataSource":"traces","queryName":"A","aggregateOperator":"noop","aggregateAttribute":{"id":"------false","dataType":"","key":"","isColumn":false,"type":"","isJSON":false},"filters":{"items":[],"op":"AND"},"expression":"A","disabled":false,"having":[],"stepInterval":60,"limit":10,"orderBy":[{"columnName":"timestamp","order":"desc"}],"groupBy":[],"legend":"","reduceTo":"sum","offset":0,"selectColumns":[{"key":"serviceName","dataType":"string","type":"tag","isColumn":true,"id":"serviceName--string--tag--true"},{"key":"httpMethod","dataType":"string","type":"tag","isColumn":true,"id":"httpMethod--string--tag--true"},{"key":"responseStatusCode","dataType":"string","type":"tag","isColumn":true,"id":"responseStatusCode--string--tag--true"},{"key":"httpUrl","dataType":"string","type":"tag","isColumn":true,"id":"httpUrl--string--tag--true"}]}}},"dataSource":"traces"}' \ --compressed ``` Response: ``` { "status": "success", "data": { "resultType": "", "result": [ { "queryName": "A", "series": null, "list": [ { "timestamp": "2023-11-20T03:18:59.824014Z", "data": { "httpMethod": "", "httpUrl": "", "responseStatusCode": "", "serviceName": "mysql", "spanID": "1e589416266acce7", "traceID": "000000000000000068f8ca58b006d5af" } }, { "timestamp": "2023-11-20T03:18:59.823911Z", "data": { "httpMethod": "GET", "httpUrl": "/customer?customer=731", "responseStatusCode": "200", "serviceName": "customer", "spanID": "1bb0755a5a982079", "traceID": "000000000000000068f8ca58b006d5af" } }, { "timestamp": "2023-11-20T03:18:59.823715Z", "data": { "httpMethod": "GET", "httpUrl": "0.0.0.0:8081", "responseStatusCode": "200", "serviceName": "frontend", "spanID": "6224abe5b4ade468", "traceID": "000000000000000068f8ca58b006d5af" } }, { "timestamp": "2023-11-20T03:18:59.823657Z", "data": { "httpMethod": "", "httpUrl": "", "responseStatusCode": "", "serviceName": "frontend", "spanID": "25bd91c990eb8853", "traceID": "000000000000000068f8ca58b006d5af" } }, { "timestamp": "2023-11-20T03:18:59.823516Z", "data": { "httpMethod": "GET", "httpUrl": "/dispatch?customer=731\u0026nonse=0.8022286220408668", "responseStatusCode": "200", "serviceName": "frontend", "spanID": "68f8ca58b006d5af", "traceID": "000000000000000068f8ca58b006d5af" } }, { "timestamp": "2023-11-20T03:18:59.268883Z", "data": { "httpMethod": "GET", "httpUrl": "/route?dropoff=577%2C322\u0026pickup=624%2C410", "responseStatusCode": "200", "serviceName": "route", "spanID": "025359a6880c3ef1", "traceID": "00000000000000005f8516e53ccfbdf1" } }, { "timestamp": "2023-11-20T03:18:59.268677Z", "data": { "httpMethod": "GET", "httpUrl": "0.0.0.0:8083", "responseStatusCode": "200", "serviceName": "frontend", "spanID": "57f6389c8ab32db5", "traceID": "00000000000000005f8516e53ccfbdf1" } }, { "timestamp": "2023-11-20T03:18:59.268671Z", "data": { "httpMethod": "", "httpUrl": "", "responseStatusCode": "", "serviceName": "frontend", "spanID": "03e60ec0453d45e7", "traceID": "00000000000000005f8516e53ccfbdf1" } }, { "timestamp": "2023-11-20T03:18:59.250844Z", "data": { "httpMethod": "GET", "httpUrl": "/route?dropoff=577%2C322\u0026pickup=862%2C471", "responseStatusCode": "200", "serviceName": "route", "spanID": "623484382aa585f6", "traceID": "00000000000000005f8516e53ccfbdf1" } }, { "timestamp": "2023-11-20T03:18:59.250431Z", "data": { "httpMethod": "GET", "httpUrl": "0.0.0.0:8083", "responseStatusCode": "200", "serviceName": "frontend", "spanID": "1926b7b44a9a60b6", "traceID": "00000000000000005f8516e53ccfbdf1" } } ] } ] } } ```
Sample cURL request to fetch trace detail
``` curl 'https://stagingapp.signoz.io/api/v1/traces/00000000000000005f9b655f9c433ac8?spanId=739bd04f93aaa499' \ -H 'Accept: application/json, text/plain, */*' \ -H 'Accept-Language: en-GB,en;q=0.7' \ -H 'Connection: keep-alive' \ -H 'Cookie: intercom-device-id-wmkurvb7=028252d6-3d96-4824-9546-ae9597953485; ajs_anonymous_id=6878d4dc-9f19-4e19-bef6-814e84ac7016; intercom-session-wmkurvb7=UUZlRUNIUUdaV2tMRS9wVVJXUTQwZWRmVE9mOVA5aWRlRXBGVWdoZDlpUVkyUUMzVjRRcnhuRDg3ZEhMcWxpRC0tZ21Qd1ExdWZNajk4VktyNFpFdTlodz09--305cd84035c2b8d0a7df6a17f480036bb936a519' \ -H 'Referer: https://stagingapp.signoz.io/trace/00000000000000005f9b655f9c433ac8?spanId=739bd04f93aaa499&levelUp=0&levelDown=0' \ -H 'Sec-Fetch-Dest: empty' \ -H 'Sec-Fetch-Mode: cors' \ -H 'Sec-Fetch-Site: same-origin' \ -H 'Sec-GPC: 1' \ -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36' \ -H 'sec-ch-ua: "Brave";v="119", "Chromium";v="119", "Not?A_Brand";v="24"' \ -H 'sec-ch-ua-mobile: ?0' \ -H 'sec-ch-ua-platform: "macOS"' \ --compressed ``` Response: ``` [ { "columns": [ "__time", "SpanId", "TraceId", "ServiceName", "Name", "Kind", "DurationNano", "TagsKeys", "TagsValues", "References", "Events", "HasError" ], "events": [ [ 1700450339823, "1bb0755a5a982079", "000000000000000068f8ca58b006d5af", "customer", "HTTP GET /customer", "2", "352689000", [ "service.name", "signoz.collector.id", "client-uuid", "component", "host.name", "http.method", "http.url", "opencensus.exporterversion", "http.status_code", "ip" ], [ "customer", "7b455495-083b-478e-b258-406a068f80e8", "2ac944a299419a37", "net/http", "2eeda9748100", "GET", "/customer?customer=731", "Jaeger-Go-2.30.0", "200", "172.18.0.2" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=6224abe5b4ade468, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450339823933000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/customer?customer=731\"}}", "{\"name\":\"Loading customer\",\"timeUnixNano\":1700450339824002000,\"attributeMap\":{\"customer_id\":\"731\",\"level\":\"info\"}}" ], false ], [ 1700450339823, "6224abe5b4ade468", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET", "3", "353130000", [ "component", "host.name", "http.url", "net/http.reused", "service.name", "opencensus.exporterversion", "signoz.collector.id", "client-uuid", "http.method", "http.status_code", "ip", "net/http.was_idle" ], [ "net/http", "2eeda9748100", "0.0.0.0:8081", "true", "frontend", "Jaeger-Go-2.30.0", "7b455495-083b-478e-b258-406a068f80e8", "6bd97dd8eb4fb7c9", "GET", "200", "172.18.0.2", "true" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25bd91c990eb8853, RefType=CHILD_OF}" ], [ "{\"name\":\"GetConn\",\"timeUnixNano\":1700450339823737000}", "{\"name\":\"GotConn\",\"timeUnixNano\":1700450339823753000}", "{\"name\":\"WroteHeaders\",\"timeUnixNano\":1700450339823785000}", "{\"name\":\"WroteRequest\",\"timeUnixNano\":1700450339823787000}", "{\"name\":\"GotFirstResponseByte\",\"timeUnixNano\":1700450340176764000}", "{\"name\":\"PutIdleConn\",\"timeUnixNano\":1700450340176825000}", "{\"name\":\"ClosedBody\",\"timeUnixNano\":1700450340176845000}" ], false ], [ 1700450339823, "25bd91c990eb8853", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET: /customer", "0", "353193000", [ "client-uuid", "host.name", "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id" ], [ "6bd97dd8eb4fb7c9", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450340177, "6e1364763e074bbf", "000000000000000068f8ca58b006d5af", "redis", "FindDriverIDs", "3", "24453000", [ "ip", "opencensus.exporterversion", "param.location", "service.name", "signoz.collector.id", "client-uuid", "host.name" ], [ "172.18.0.2", "Jaeger-Go-2.30.0", "728,326", "redis", "7b455495-083b-478e-b258-406a068f80e8", "6b8409b718a482a5", "2eeda9748100" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [ "{\"name\":\"Found drivers\",\"timeUnixNano\":1700450340201618000,\"attributeMap\":{\"level\":\"info\"}}" ], false ], [ 1700450340201, "65a9ca92636a011e", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "12330000", [ "opencensus.exporterversion", "param.driverID", "service.name", "signoz.collector.id", "client-uuid", "host.name", "ip" ], [ "Jaeger-Go-2.30.0", "T787589C", "redis", "7b455495-083b-478e-b258-406a068f80e8", "6b8409b718a482a5", "2eeda9748100", "172.18.0.2" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [], false ], [ 1700450340214, "1f80d0d15e17cbda", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "10372000", [ "host.name", "ip", "opencensus.exporterversion", "param.driverID", "service.name", "signoz.collector.id", "client-uuid" ], [ "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "T715828C", "redis", "7b455495-083b-478e-b258-406a068f80e8", "6b8409b718a482a5" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [], false ], [ 1700450340224, "1eec2c7f4f1db672", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "31748000", [ "opencensus.exporterversion", "param.driverID", "service.name", "signoz.collector.id", "client-uuid", "host.name", "ip" ], [ "Jaeger-Go-2.30.0", "T795792C", "redis", "7b455495-083b-478e-b258-406a068f80e8", "6b8409b718a482a5", "2eeda9748100", "172.18.0.2" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [ "{\"name\":\"redis timeout\",\"timeUnixNano\":1700450340256138000,\"attributeMap\":{\"driver_id\":\"T795792C\",\"error\":\"redis timeout\",\"level\":\"error\"}}" ], true ], [ 1700450340256, "081ff9ddaa42ec82", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "11331000", [ "host.name", "ip", "opencensus.exporterversion", "param.driverID", "service.name", "signoz.collector.id", "client-uuid" ], [ "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "T795792C", "redis", "7b455495-083b-478e-b258-406a068f80e8", "6b8409b718a482a5" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [], false ], [ 1700450340267, "6fd60198e7718f4c", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "12381000", [ "param.driverID", "service.name", "signoz.collector.id", "client-uuid", "host.name", "ip", "opencensus.exporterversion" ], [ "T744263C", "redis", "7b455495-083b-478e-b258-406a068f80e8", "6b8409b718a482a5", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [], false ], [ 1700450340280, "7de6622cded03508", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "11240000", [ "client-uuid", "host.name", "ip", "opencensus.exporterversion", "param.driverID", "service.name", "signoz.collector.id" ], [ "6b8409b718a482a5", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "T779220C", "redis", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [], false ], [ 1700450340291, "7cb73d75d0d2732a", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "9349000", [ "opencensus.exporterversion", "param.driverID", "service.name", "signoz.collector.id", "client-uuid", "host.name", "ip" ], [ "Jaeger-Go-2.30.0", "T716895C", "redis", "7b455495-083b-478e-b258-406a068f80e8", "6b8409b718a482a5", "2eeda9748100", "172.18.0.2" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [], false ], [ 1700450339824, "1e589416266acce7", "000000000000000068f8ca58b006d5af", "mysql", "SQL SELECT", "3", "352502000", [ "sql.query", "host.name", "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id", "client-uuid", "peer.service", "request" ], [ "SELECT * FROM customer WHERE customer_id=731", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "mysql", "7b455495-083b-478e-b258-406a068f80e8", "58fb501792b61f71", "mysql", "" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=1bb0755a5a982079, RefType=CHILD_OF}" ], [ "{\"name\":\"Acquired lock with 0 transactions waiting behind\",\"timeUnixNano\":1700450339824024000}" ], false ], [ 1700450340177, "25db86f8794d88dc", "000000000000000068f8ca58b006d5af", "driver", "/driver.DriverService/FindNearest", "2", "196860000", [ "client-uuid", "component", "host.name", "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id" ], [ "3a63ae56bce74b94", "gRPC", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "driver", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=170f30e0c342dff3, RefType=CHILD_OF}" ], [ "{\"name\":\"Searching for nearby drivers\",\"timeUnixNano\":1700450340177239000,\"attributeMap\":{\"level\":\"info\",\"location\":\"728,326\"}}", "{\"name\":\"Retrying GetDriver after error\",\"timeUnixNano\":1700450340256300000,\"attributeMap\":{\"error\":\"redis timeout\",\"level\":\"error\",\"retry_no\":\"1\"}}", "{\"name\":\"Retrying GetDriver after error\",\"timeUnixNano\":1700450340330654000,\"attributeMap\":{\"error\":\"redis timeout\",\"level\":\"error\",\"retry_no\":\"1\"}}", "{\"name\":\"Search successful\",\"timeUnixNano\":1700450340374006000,\"attributeMap\":{\"level\":\"info\",\"num_drivers\":\"10\"}}" ], false ], [ 1700450340176, "170f30e0c342dff3", "000000000000000068f8ca58b006d5af", "frontend", "/driver.DriverService/FindNearest", "3", "197566000", [ "client-uuid", "component", "host.name", "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id" ], [ "6bd97dd8eb4fb7c9", "gRPC", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450340374, "0fa0ce224883e253", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET", "3", "52766000", [ "http.url", "ip", "net/http.reused", "service.name", "client-uuid", "component", "host.name", "http.method", "http.status_code", "net/http.was_idle", "opencensus.exporterversion", "signoz.collector.id" ], [ "0.0.0.0:8083", "172.18.0.2", "true", "frontend", "6bd97dd8eb4fb7c9", "net/http", "2eeda9748100", "GET", "200", "true", "Jaeger-Go-2.30.0", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=7795423a41a3be66, RefType=CHILD_OF}" ], [ "{\"name\":\"GetConn\",\"timeUnixNano\":1700450340374798000}", "{\"name\":\"GotConn\",\"timeUnixNano\":1700450340374826000}", "{\"name\":\"WroteHeaders\",\"timeUnixNano\":1700450340374854000}", "{\"name\":\"WroteRequest\",\"timeUnixNano\":1700450340374857000}", "{\"name\":\"GotFirstResponseByte\",\"timeUnixNano\":1700450340427450000}", "{\"name\":\"PutIdleConn\",\"timeUnixNano\":1700450340427511000}", "{\"name\":\"ClosedBody\",\"timeUnixNano\":1700450340427532000}" ], false ], [ 1700450340374, "7795423a41a3be66", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET: /route", "0", "52780000", [ "host.name", "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id", "client-uuid" ], [ "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8", "6bd97dd8eb4fb7c9" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450340375, "44816436ac6987b0", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET", "3", "55261000", [ "signoz.collector.id", "client-uuid", "http.status_code", "http.url", "ip", "net/http.was_idle", "service.name", "component", "host.name", "http.method", "net/http.reused", "opencensus.exporterversion" ], [ "7b455495-083b-478e-b258-406a068f80e8", "6bd97dd8eb4fb7c9", "200", "0.0.0.0:8083", "172.18.0.2", "false", "frontend", "net/http", "2eeda9748100", "GET", "false", "Jaeger-Go-2.30.0" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=4a25966f5be0823c, RefType=CHILD_OF}" ], [ "{\"name\":\"GetConn\",\"timeUnixNano\":1700450340375137000}", "{\"name\":\"ConnectStart\",\"timeUnixNano\":1700450340375231000,\"attributeMap\":{\"addr\":\"0.0.0.0:8083\",\"network\":\"tcp\"}}", "{\"name\":\"ConnectDone\",\"timeUnixNano\":1700450340375569000,\"attributeMap\":{\"addr\":\"0.0.0.0:8083\",\"network\":\"tcp\"}}", "{\"name\":\"GotConn\",\"timeUnixNano\":1700450340375730000}", "{\"name\":\"WroteHeaders\",\"timeUnixNano\":1700450340375782000}", "{\"name\":\"WroteRequest\",\"timeUnixNano\":1700450340375784000}", "{\"name\":\"GotFirstResponseByte\",\"timeUnixNano\":1700450340430247000}", "{\"name\":\"PutIdleConn\",\"timeUnixNano\":1700450340430295000}", "{\"name\":\"ClosedBody\",\"timeUnixNano\":1700450340430351000}" ], false ], [ 1700450340375, "4a25966f5be0823c", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET: /route", "0", "55271000", [ "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id", "client-uuid", "host.name" ], [ "172.18.0.2", "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8", "6bd97dd8eb4fb7c9", "2eeda9748100" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450340374, "2ad1b320f1581288", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET", "3", "65676000", [ "net/http.reused", "signoz.collector.id", "component", "host.name", "http.url", "ip", "opencensus.exporterversion", "service.name", "client-uuid", "http.method", "http.status_code", "net/http.was_idle" ], [ "true", "7b455495-083b-478e-b258-406a068f80e8", "net/http", "2eeda9748100", "0.0.0.0:8083", "172.18.0.2", "Jaeger-Go-2.30.0", "frontend", "6bd97dd8eb4fb7c9", "GET", "200", "true" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=39d18262ff239f12, RefType=CHILD_OF}" ], [ "{\"name\":\"GetConn\",\"timeUnixNano\":1700450340374821000}", "{\"name\":\"GotConn\",\"timeUnixNano\":1700450340374829000}", "{\"name\":\"WroteHeaders\",\"timeUnixNano\":1700450340374881000}", "{\"name\":\"WroteRequest\",\"timeUnixNano\":1700450340374883000}", "{\"name\":\"GotFirstResponseByte\",\"timeUnixNano\":1700450340440337000}", "{\"name\":\"PutIdleConn\",\"timeUnixNano\":1700450340440410000}", "{\"name\":\"ClosedBody\",\"timeUnixNano\":1700450340440472000}" ], false ], [ 1700450340374, "39d18262ff239f12", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET: /route", "0", "65695000", [ "client-uuid", "host.name", "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id" ], [ "6bd97dd8eb4fb7c9", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450340440, "4c1cf5d506ccc05b", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET", "3", "29850000", [ "host.name", "http.method", "http.status_code", "ip", "net/http.reused", "opencensus.exporterversion", "client-uuid", "component", "http.url", "net/http.was_idle", "service.name", "signoz.collector.id" ], [ "2eeda9748100", "GET", "200", "172.18.0.2", "true", "Jaeger-Go-2.30.0", "6bd97dd8eb4fb7c9", "net/http", "0.0.0.0:8083", "true", "frontend", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=4f4a5fbcc30690b5, RefType=CHILD_OF}" ], [ "{\"name\":\"GetConn\",\"timeUnixNano\":1700450340440634000}", "{\"name\":\"GotConn\",\"timeUnixNano\":1700450340440641000}", "{\"name\":\"WroteHeaders\",\"timeUnixNano\":1700450340440665000}", "{\"name\":\"WroteRequest\",\"timeUnixNano\":1700450340440668000}", "{\"name\":\"GotFirstResponseByte\",\"timeUnixNano\":1700450340470374000}", "{\"name\":\"PutIdleConn\",\"timeUnixNano\":1700450340470436000}", "{\"name\":\"ClosedBody\",\"timeUnixNano\":1700450340470459000}" ], false ], [ 1700450340440, "4f4a5fbcc30690b5", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET: /route", "0", "29865000", [ "opencensus.exporterversion", "service.name", "signoz.collector.id", "client-uuid", "host.name", "ip" ], [ "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8", "6bd97dd8eb4fb7c9", "2eeda9748100", "172.18.0.2" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450340427, "09ced21afe4f25f0", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET", "3", "43150000", [ "host.name", "http.method", "http.status_code", "net/http.reused", "net/http.was_idle", "signoz.collector.id", "client-uuid", "component", "http.url", "ip", "opencensus.exporterversion", "service.name" ], [ "2eeda9748100", "GET", "200", "true", "true", "7b455495-083b-478e-b258-406a068f80e8", "6bd97dd8eb4fb7c9", "net/http", "0.0.0.0:8083", "172.18.0.2", "Jaeger-Go-2.30.0", "frontend" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=00d5d23f2a5243c6, RefType=CHILD_OF}" ], [ "{\"name\":\"GetConn\",\"timeUnixNano\":1700450340427740000}", "{\"name\":\"GotConn\",\"timeUnixNano\":1700450340427744000}", "{\"name\":\"WroteHeaders\",\"timeUnixNano\":1700450340427765000}", "{\"name\":\"WroteRequest\",\"timeUnixNano\":1700450340427767000}", "{\"name\":\"GotFirstResponseByte\",\"timeUnixNano\":1700450340470841000}", "{\"name\":\"PutIdleConn\",\"timeUnixNano\":1700450340470861000}", "{\"name\":\"ClosedBody\",\"timeUnixNano\":1700450340470871000}" ], false ], [ 1700450340427, "00d5d23f2a5243c6", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET: /route", "0", "43192000", [ "client-uuid", "host.name", "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id" ], [ "6bd97dd8eb4fb7c9", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450340430, "5f92a2a19cbe8caf", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET", "3", "67233000", [ "component", "http.method", "http.status_code", "http.url", "net/http.reused", "net/http.was_idle", "opencensus.exporterversion", "signoz.collector.id", "client-uuid", "host.name", "ip", "service.name" ], [ "net/http", "GET", "200", "0.0.0.0:8083", "true", "true", "Jaeger-Go-2.30.0", "7b455495-083b-478e-b258-406a068f80e8", "6bd97dd8eb4fb7c9", "2eeda9748100", "172.18.0.2", "frontend" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=3e92e23e86365c08, RefType=CHILD_OF}" ], [ "{\"name\":\"GetConn\",\"timeUnixNano\":1700450340430505000}", "{\"name\":\"GotConn\",\"timeUnixNano\":1700450340430529000}", "{\"name\":\"WroteHeaders\",\"timeUnixNano\":1700450340430587000}", "{\"name\":\"WroteRequest\",\"timeUnixNano\":1700450340430589000}", "{\"name\":\"GotFirstResponseByte\",\"timeUnixNano\":1700450340497557000}", "{\"name\":\"PutIdleConn\",\"timeUnixNano\":1700450340497646000}", "{\"name\":\"ClosedBody\",\"timeUnixNano\":1700450340497687000}" ], false ], [ 1700450340430, "3e92e23e86365c08", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET: /route", "0", "67251000", [ "client-uuid", "host.name", "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id" ], [ "6bd97dd8eb4fb7c9", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450340470, "634e46ef363303b6", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET", "3", "52892000", [ "signoz.collector.id", "host.name", "http.method", "net/http.reused", "opencensus.exporterversion", "ip", "net/http.was_idle", "service.name", "client-uuid", "component", "http.status_code", "http.url" ], [ "7b455495-083b-478e-b258-406a068f80e8", "2eeda9748100", "GET", "true", "Jaeger-Go-2.30.0", "172.18.0.2", "true", "frontend", "6bd97dd8eb4fb7c9", "net/http", "200", "0.0.0.0:8083" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=69d1f7ddf4f2ab90, RefType=CHILD_OF}" ], [ "{\"name\":\"GetConn\",\"timeUnixNano\":1700450340470652000}", "{\"name\":\"GotConn\",\"timeUnixNano\":1700450340470657000}", "{\"name\":\"WroteHeaders\",\"timeUnixNano\":1700450340470677000}", "{\"name\":\"WroteRequest\",\"timeUnixNano\":1700450340470679000}", "{\"name\":\"GotFirstResponseByte\",\"timeUnixNano\":1700450340523382000}", "{\"name\":\"PutIdleConn\",\"timeUnixNano\":1700450340523481000}", "{\"name\":\"ClosedBody\",\"timeUnixNano\":1700450340523511000}" ], false ], [ 1700450340470, "69d1f7ddf4f2ab90", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET: /route", "0", "52904000", [ "client-uuid", "host.name", "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id" ], [ "6bd97dd8eb4fb7c9", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450340470, "2ed8487edf647469", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET", "3", "72496000", [ "net/http.was_idle", "opencensus.exporterversion", "component", "host.name", "http.status_code", "net/http.reused", "service.name", "signoz.collector.id", "client-uuid", "http.method", "http.url", "ip" ], [ "true", "Jaeger-Go-2.30.0", "net/http", "2eeda9748100", "200", "true", "frontend", "7b455495-083b-478e-b258-406a068f80e8", "6bd97dd8eb4fb7c9", "GET", "0.0.0.0:8083", "172.18.0.2" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=3c2e3fbf7cca83b1, RefType=CHILD_OF}" ], [ "{\"name\":\"GetConn\",\"timeUnixNano\":1700450340470937000}", "{\"name\":\"GotConn\",\"timeUnixNano\":1700450340470940000}", "{\"name\":\"WroteHeaders\",\"timeUnixNano\":1700450340470951000}", "{\"name\":\"WroteRequest\",\"timeUnixNano\":1700450340470952000}", "{\"name\":\"GotFirstResponseByte\",\"timeUnixNano\":1700450340543307000}", "{\"name\":\"PutIdleConn\",\"timeUnixNano\":1700450340543379000}", "{\"name\":\"ClosedBody\",\"timeUnixNano\":1700450340543421000}" ], false ], [ 1700450340470, "3c2e3fbf7cca83b1", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET: /route", "0", "72516000", [ "opencensus.exporterversion", "service.name", "signoz.collector.id", "client-uuid", "host.name", "ip" ], [ "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8", "6bd97dd8eb4fb7c9", "2eeda9748100", "172.18.0.2" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450340523, "7d4a5320bf0fc6c3", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET", "3", "30058000", [ "service.name", "signoz.collector.id", "component", "http.method", "net/http.was_idle", "http.url", "ip", "net/http.reused", "opencensus.exporterversion", "client-uuid", "host.name", "http.status_code" ], [ "frontend", "7b455495-083b-478e-b258-406a068f80e8", "net/http", "GET", "true", "0.0.0.0:8083", "172.18.0.2", "true", "Jaeger-Go-2.30.0", "6bd97dd8eb4fb7c9", "2eeda9748100", "200" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=75081f9158b28885, RefType=CHILD_OF}" ], [ "{\"name\":\"GetConn\",\"timeUnixNano\":1700450340523674000}", "{\"name\":\"GotConn\",\"timeUnixNano\":1700450340523681000}", "{\"name\":\"WroteHeaders\",\"timeUnixNano\":1700450340523711000}", "{\"name\":\"WroteRequest\",\"timeUnixNano\":1700450340523714000}", "{\"name\":\"GotFirstResponseByte\",\"timeUnixNano\":1700450340553640000}", "{\"name\":\"PutIdleConn\",\"timeUnixNano\":1700450340553686000}", "{\"name\":\"ClosedBody\",\"timeUnixNano\":1700450340553706000}" ], false ], [ 1700450340523, "75081f9158b28885", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET: /route", "0", "30074000", [ "client-uuid", "host.name", "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id" ], [ "6bd97dd8eb4fb7c9", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450340497, "52cd2472a020a963", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET", "3", "60510000", [ "net/http.reused", "client-uuid", "component", "host.name", "http.method", "opencensus.exporterversion", "service.name", "signoz.collector.id", "http.status_code", "http.url", "ip", "net/http.was_idle" ], [ "true", "6bd97dd8eb4fb7c9", "net/http", "2eeda9748100", "GET", "Jaeger-Go-2.30.0", "frontend", "7b455495-083b-478e-b258-406a068f80e8", "200", "0.0.0.0:8083", "172.18.0.2", "true" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=342a57df92955cf3, RefType=CHILD_OF}" ], [ "{\"name\":\"GetConn\",\"timeUnixNano\":1700450340497824000}", "{\"name\":\"GotConn\",\"timeUnixNano\":1700450340497829000}", "{\"name\":\"WroteHeaders\",\"timeUnixNano\":1700450340497848000}", "{\"name\":\"WroteRequest\",\"timeUnixNano\":1700450340497850000}", "{\"name\":\"GotFirstResponseByte\",\"timeUnixNano\":1700450340558148000}", "{\"name\":\"PutIdleConn\",\"timeUnixNano\":1700450340558218000}", "{\"name\":\"ClosedBody\",\"timeUnixNano\":1700450340558312000}" ], false ], [ 1700450340497, "342a57df92955cf3", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET: /route", "0", "60524000", [ "signoz.collector.id", "client-uuid", "host.name", "ip", "opencensus.exporterversion", "service.name" ], [ "7b455495-083b-478e-b258-406a068f80e8", "6bd97dd8eb4fb7c9", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "frontend" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=68f8ca58b006d5af, RefType=CHILD_OF}" ], [], false ], [ 1700450339823, "68f8ca58b006d5af", "000000000000000068f8ca58b006d5af", "frontend", "HTTP GET /dispatch", "2", "734939000", [ "sampler.param", "component", "ip", "http.method", "http.status_code", "http.url", "opencensus.exporterversion", "sampler.type", "service.name", "client-uuid", "host.name", "signoz.collector.id" ], [ "true", "net/http", "172.18.0.2", "GET", "200", "/dispatch?customer=731\u0026nonse=0.8022286220408668", "Jaeger-Go-2.30.0", "const", "frontend", "6bd97dd8eb4fb7c9", "2eeda9748100", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450339823551000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/dispatch?customer=731\\u0026nonse=0.8022286220408668\"}}", "{\"name\":\"Getting customer\",\"timeUnixNano\":1700450339823620000,\"attributeMap\":{\"customer_id\":\"731\",\"level\":\"info\"}}", "{\"name\":\"Found customer\",\"timeUnixNano\":1700450340176863000,\"attributeMap\":{\"level\":\"info\"}}", "{\"name\":\"baggage\",\"timeUnixNano\":1700450340176929000,\"attributeMap\":{\"key\":\"customer\",\"value\":\"Japanese Desserts\"}}", "{\"name\":\"Finding nearest drivers\",\"timeUnixNano\":1700450340176934000,\"attributeMap\":{\"level\":\"info\",\"location\":\"728,326\"}}", "{\"name\":\"Found drivers\",\"timeUnixNano\":1700450340374541000,\"attributeMap\":{\"level\":\"info\"}}", "{\"name\":\"Finding route\",\"timeUnixNano\":1700450340374637000,\"attributeMap\":{\"dropoff\":\"728,326\",\"level\":\"info\",\"pickup\":\"915,616\"}}", "{\"name\":\"Finding route\",\"timeUnixNano\":1700450340374662000,\"attributeMap\":{\"dropoff\":\"728,326\",\"level\":\"info\",\"pickup\":\"980,166\"}}", "{\"name\":\"Finding route\",\"timeUnixNano\":1700450340374981000,\"attributeMap\":{\"dropoff\":\"728,326\",\"level\":\"info\",\"pickup\":\"570,670\"}}", "{\"name\":\"Finding route\",\"timeUnixNano\":1700450340427563000,\"attributeMap\":{\"dropoff\":\"728,326\",\"level\":\"info\",\"pickup\":\"889,753\"}}", "{\"name\":\"Finding route\",\"timeUnixNano\":1700450340430370000,\"attributeMap\":{\"dropoff\":\"728,326\",\"level\":\"info\",\"pickup\":\"197,899\"}}", "{\"name\":\"Finding route\",\"timeUnixNano\":1700450340440503000,\"attributeMap\":{\"dropoff\":\"728,326\",\"level\":\"info\",\"pickup\":\"179,132\"}}", "{\"name\":\"Finding route\",\"timeUnixNano\":1700450340470495000,\"attributeMap\":{\"dropoff\":\"728,326\",\"level\":\"info\",\"pickup\":\"543,764\"}}", "{\"name\":\"Finding route\",\"timeUnixNano\":1700450340470878000,\"attributeMap\":{\"dropoff\":\"728,326\",\"level\":\"info\",\"pickup\":\"587,161\"}}", "{\"name\":\"Finding route\",\"timeUnixNano\":1700450340497712000,\"attributeMap\":{\"dropoff\":\"728,326\",\"level\":\"info\",\"pickup\":\"607,523\"}}", "{\"name\":\"Finding route\",\"timeUnixNano\":1700450340523536000,\"attributeMap\":{\"dropoff\":\"728,326\",\"level\":\"info\",\"pickup\":\"30,317\"}}", "{\"name\":\"Found routes\",\"timeUnixNano\":1700450340558351000,\"attributeMap\":{\"level\":\"info\"}}", "{\"name\":\"Dispatch successful\",\"timeUnixNano\":1700450340558429000,\"attributeMap\":{\"driver\":\"T715828C\",\"eta\":\"2m0s\",\"level\":\"info\"}}" ], false ], [ 1700450340375, "65dc461f0b665fe8", "000000000000000068f8ca58b006d5af", "route", "HTTP GET /route", "2", "52015000", [ "host.name", "http.method", "service.name", "ip", "opencensus.exporterversion", "signoz.collector.id", "client-uuid", "component", "http.status_code", "http.url" ], [ "2eeda9748100", "GET", "route", "172.18.0.2", "Jaeger-Go-2.30.0", "7b455495-083b-478e-b258-406a068f80e8", "30aaecc47ef94284", "net/http", "200", "/route?dropoff=728%2C326\u0026pickup=980%2C166" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=0fa0ce224883e253, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450340375239000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/route?dropoff=728%2C326\\u0026pickup=980%2C166\"}}" ], false ], [ 1700450340375, "6d90bcb0cd000626", "000000000000000068f8ca58b006d5af", "route", "HTTP GET /route", "2", "54236000", [ "client-uuid", "ip", "opencensus.exporterversion", "component", "host.name", "http.method", "http.status_code", "http.url", "service.name", "signoz.collector.id" ], [ "30aaecc47ef94284", "172.18.0.2", "Jaeger-Go-2.30.0", "net/http", "2eeda9748100", "GET", "200", "/route?dropoff=728%2C326\u0026pickup=570%2C670", "route", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=44816436ac6987b0, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450340375920000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/route?dropoff=728%2C326\\u0026pickup=570%2C670\"}}" ], false ], [ 1700450340375, "3ff9e1679ec5dd5f", "000000000000000068f8ca58b006d5af", "route", "HTTP GET /route", "2", "65089000", [ "host.name", "http.method", "ip", "opencensus.exporterversion", "signoz.collector.id", "client-uuid", "component", "service.name", "http.status_code", "http.url" ], [ "2eeda9748100", "GET", "172.18.0.2", "Jaeger-Go-2.30.0", "7b455495-083b-478e-b258-406a068f80e8", "30aaecc47ef94284", "net/http", "route", "200", "/route?dropoff=728%2C326\u0026pickup=915%2C616" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=2ad1b320f1581288, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450340375118000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/route?dropoff=728%2C326\\u0026pickup=915%2C616\"}}" ], false ], [ 1700450340440, "6f2822238ea38641", "000000000000000068f8ca58b006d5af", "route", "HTTP GET /route", "2", "29360000", [ "component", "http.method", "http.status_code", "ip", "client-uuid", "host.name", "http.url", "opencensus.exporterversion", "service.name", "signoz.collector.id" ], [ "net/http", "GET", "200", "172.18.0.2", "30aaecc47ef94284", "2eeda9748100", "/route?dropoff=728%2C326\u0026pickup=179%2C132", "Jaeger-Go-2.30.0", "route", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=4c1cf5d506ccc05b, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450340440812000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/route?dropoff=728%2C326\\u0026pickup=179%2C132\"}}" ], false ], [ 1700450340427, "03adb776d7139200", "000000000000000068f8ca58b006d5af", "route", "HTTP GET /route", "2", "42942000", [ "client-uuid", "host.name", "ip", "opencensus.exporterversion", "service.name", "component", "http.method", "http.status_code", "http.url", "signoz.collector.id" ], [ "30aaecc47ef94284", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "route", "net/http", "GET", "200", "/route?dropoff=728%2C326\u0026pickup=889%2C753", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=09ced21afe4f25f0, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450340427845000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/route?dropoff=728%2C326\\u0026pickup=889%2C753\"}}" ], false ], [ 1700450340430, "6571dedd3a113de1", "000000000000000068f8ca58b006d5af", "route", "HTTP GET /route", "2", "66586000", [ "host.name", "http.url", "component", "http.method", "http.status_code", "ip", "opencensus.exporterversion", "service.name", "signoz.collector.id", "client-uuid" ], [ "2eeda9748100", "/route?dropoff=728%2C326\u0026pickup=197%2C899", "net/http", "GET", "200", "172.18.0.2", "Jaeger-Go-2.30.0", "route", "7b455495-083b-478e-b258-406a068f80e8", "30aaecc47ef94284" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=5f92a2a19cbe8caf, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450340430825000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/route?dropoff=728%2C326\\u0026pickup=197%2C899\"}}" ], false ], [ 1700450340471, "7953b8b152b65485", "000000000000000068f8ca58b006d5af", "route", "HTTP GET /route", "2", "51857000", [ "component", "host.name", "ip", "opencensus.exporterversion", "signoz.collector.id", "client-uuid", "http.method", "http.status_code", "http.url", "service.name" ], [ "net/http", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "7b455495-083b-478e-b258-406a068f80e8", "30aaecc47ef94284", "GET", "200", "/route?dropoff=728%2C326\u0026pickup=543%2C764", "route" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=634e46ef363303b6, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450340471449000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/route?dropoff=728%2C326\\u0026pickup=543%2C764\"}}" ], false ], [ 1700450340471, "26d8a89e5dea7647", "000000000000000068f8ca58b006d5af", "route", "HTTP GET /route", "2", "72055000", [ "opencensus.exporterversion", "service.name", "host.name", "http.method", "http.url", "ip", "client-uuid", "component", "http.status_code", "signoz.collector.id" ], [ "Jaeger-Go-2.30.0", "route", "2eeda9748100", "GET", "/route?dropoff=728%2C326\u0026pickup=587%2C161", "172.18.0.2", "30aaecc47ef94284", "net/http", "200", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=2ed8487edf647469, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450340471054000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/route?dropoff=728%2C326\\u0026pickup=587%2C161\"}}" ], false ], [ 1700450340523, "13a0d6576c43aa6c", "000000000000000068f8ca58b006d5af", "route", "HTTP GET /route", "2", "29594000", [ "http.method", "service.name", "http.url", "ip", "opencensus.exporterversion", "signoz.collector.id", "client-uuid", "component", "host.name", "http.status_code" ], [ "GET", "route", "/route?dropoff=728%2C326\u0026pickup=30%2C317", "172.18.0.2", "Jaeger-Go-2.30.0", "7b455495-083b-478e-b258-406a068f80e8", "30aaecc47ef94284", "net/http", "2eeda9748100", "200" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=7d4a5320bf0fc6c3, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450340523939000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/route?dropoff=728%2C326\\u0026pickup=30%2C317\"}}" ], false ], [ 1700450340497, "17ed7b34f3d05332", "000000000000000068f8ca58b006d5af", "route", "HTTP GET /route", "2", "60021000", [ "client-uuid", "component", "host.name", "opencensus.exporterversion", "service.name", "signoz.collector.id", "http.method", "http.status_code", "http.url", "ip" ], [ "30aaecc47ef94284", "net/http", "2eeda9748100", "Jaeger-Go-2.30.0", "route", "7b455495-083b-478e-b258-406a068f80e8", "GET", "200", "/route?dropoff=728%2C326\u0026pickup=607%2C523", "172.18.0.2" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=52cd2472a020a963, RefType=CHILD_OF}" ], [ "{\"name\":\"HTTP request received\",\"timeUnixNano\":1700450340497998000,\"attributeMap\":{\"level\":\"info\",\"method\":\"GET\",\"url\":\"/route?dropoff=728%2C326\\u0026pickup=607%2C523\"}}" ], false ], [ 1700450340300, "5aa0689c9ef9a90a", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "29894000", [ "client-uuid", "host.name", "ip", "opencensus.exporterversion", "param.driverID", "service.name", "signoz.collector.id" ], [ "6b8409b718a482a5", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "T793452C", "redis", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [ "{\"name\":\"redis timeout\",\"timeUnixNano\":1700450340330565000,\"attributeMap\":{\"driver_id\":\"T793452C\",\"error\":\"redis timeout\",\"level\":\"error\"}}" ], true ], [ 1700450340330, "07b0646ccfb722d8", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "11316000", [ "client-uuid", "host.name", "ip", "opencensus.exporterversion", "param.driverID", "service.name", "signoz.collector.id" ], [ "6b8409b718a482a5", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "T793452C", "redis", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [], false ], [ 1700450340342, "46a3955546916fd6", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "10249000", [ "client-uuid", "host.name", "ip", "opencensus.exporterversion", "param.driverID", "service.name", "signoz.collector.id" ], [ "6b8409b718a482a5", "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "T768705C", "redis", "7b455495-083b-478e-b258-406a068f80e8" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [], false ], [ 1700450340352, "12e9d90066ad3aee", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "6216000", [ "host.name", "ip", "opencensus.exporterversion", "param.driverID", "service.name", "signoz.collector.id", "client-uuid" ], [ "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "T708300C", "redis", "7b455495-083b-478e-b258-406a068f80e8", "6b8409b718a482a5" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [], false ], [ 1700450340358, "5d96130c98357faf", "000000000000000068f8ca58b006d5af", "redis", "GetDriver", "3", "15441000", [ "host.name", "ip", "opencensus.exporterversion", "param.driverID", "service.name", "signoz.collector.id", "client-uuid" ], [ "2eeda9748100", "172.18.0.2", "Jaeger-Go-2.30.0", "T757515C", "redis", "7b455495-083b-478e-b258-406a068f80e8", "6b8409b718a482a5" ], [ "{TraceId=000000000000000068f8ca58b006d5af, SpanId=25db86f8794d88dc, RefType=CHILD_OF}" ], [], false ] ] } ] ```
makeavish commented 11 months ago

Closing this for now, reopen if you need more help