Hi guys i hope everyone is well, question I need to remove a service name in the filter this is not...
j
Hi guys i hope everyone is well, question I need to remove a service name in the filter this is not needed anymore 'local-host' the name of the service name in the logs page i already delete all logs. i tried this
Copy code
ALTER TABLE signoz_logs.logs_v2
DELETE WHERE resources_string['service.name'] = 'local-host';

ALTER TABLE signoz_traces.signoz_index_v2
DELETE WHERE serviceName = 'local-host';

ALTER TABLE signoz_metrics.time_series_v2
DELETE WHERE JSONExtractString(labels, 'service_name') = 'local-host';
but after this the service name 'local-host' is still displaying in the service name list. maybe someone knows how to remove it. Thank you
🙏 1