Sumanth Balaji
10/19/2023, 7:33 AM┌─────────────────────timestamp─┬─traceID──────────────────────────┬─serviceName──────────┬─name──────────────────────────────────┬─durationNano─┐
│ 2023-10-18 06:31:22.013556377 │ 5d12acb2b83f6f3d68c998377c873d5f │ Prod-PostNlpNotifier │ GET │ 46539987 │
│ 2023-10-18 06:31:22.060526394 │ 5d12acb2b83f6f3d68c998377c873d5f │ Prod-PostNlpNotifier │ PUT │ 76430081 │
│ 2023-10-18 06:31:22.013369223 │ 5d12acb2b83f6f3d68c998377c873d5f │ Prod-PostNlpNotifier │ webhook-post-nlp-notifier-alt process │ 123598772 │
There are the entries for traceID 5d12acb2b83f6f3d68c998377c873d5f from serviceName Prod-PostNlpNotifier
Question is:
1. The value for timestamp. What does that indicate? does that indicate when the trace first encountered prod-postnlpnotifier?
a. Does that mean to get the timestamp for when the trace is exiting the service is to do timestamp+durationNano ?Srikanth Chekuri
10/19/2023, 7:39 AMSumanth Balaji
10/19/2023, 7:44 AMSELECT
timestamp,
traceID,
serviceName,
durationNano
FROM signoz_traces.distributed_signoz_index_v2
WHERE (traceID IN ('5d12acb2b83f6f3d68c998377c873d5f')) AND (serviceName IN ('Prod-ingestion-wh-consumer', 'Prod-PostNlpNotifier'))
Srikanth Chekuri
10/19/2023, 7:52 AMSumanth Balaji
10/19/2023, 7:58 AMSrikanth Chekuri
10/19/2023, 7:59 AMSumanth Balaji
10/19/2023, 8:03 AMSrikanth Chekuri
10/19/2023, 8:04 AM