Slackbot
12/29/2023, 6:50 AMSrikanth Chekuri
12/29/2023, 8:13 AMSony Venkatesh
12/29/2023, 10:15 AMSiddharth Prakash Singh
12/29/2023, 5:10 PM/api/v1/getSpanFilters
serviceName
key has a service with a count as the value
Where as in the response of the api - /api/v1/services
a particular service is not there in the list.
What could be the reason?Srikanth Chekuri
12/30/2023, 6:17 AMSiddharth Prakash Singh
01/02/2024, 6:46 AMSiddharth Prakash Singh
01/02/2024, 7:15 AMselect distinct serviceName from distributed_signoz_index_v2 where toDate(timestamp) > now() - interval 1 DAY format CSV;
This query’s output has that service name.Siddharth Prakash Singh
01/02/2024, 7:16 AMselect count( distinct name) from distributed_top_level_operations;
has roughly 7.87 lacs entries.Siddharth Prakash Singh
01/02/2024, 7:17 AMSELECT DISTINCT name, serviceName FROM distributed_top_level_operations
Siddharth Prakash Singh
01/02/2024, 7:21 AMSrikanth Chekuri
01/02/2024, 10:55 AMIs that the reason that some services are getting clipped while running the query -Yes, the large number of entries indicates something wrong with your instrumentation. The entry is based on the span name. Make sure your span names are not very high cardinal https://github.com/open-telemetry/opentelemetry-specification/blob/v1.26.0/specification/trace/api.md#span. The
ServiceSkipConfig
won't be helpful if you have so many entries to ignore.Siddharth Prakash Singh
01/02/2024, 5:37 PMSrikanth Chekuri
01/02/2024, 6:22 PMdistributed_top_level_operations
Siddharth Prakash Singh
01/02/2024, 9:46 PMSiddharth Prakash Singh
01/02/2024, 10:37 PMSrikanth Chekuri
01/03/2024, 2:24 AMSiddharth Prakash Singh
01/03/2024, 5:41 AM