This message was deleted.
# support
s
This message was deleted.
p
Hi @Simran X 👋 Do you mean the queries of alerts? It is stored in SQLiteDB, and the db file is stored in query-service persistent volume.
You could copy the
signoz.db
file from your test environment to production. That should make the users creds, dashboards and alerts from test environment available.
copy
signoz.db
from your test environment:
Copy code
kubectl cp -n platform my-release-signoz-query-service-0:/var/lib/signoz/signoz.db ./signoz.db
In your production cluster, copy
signoz.db
to your prod environment and restart query-service pod:
Copy code
kubectl cp -n platform ./signoz.db my-release-signoz-query-service-0:/var/lib/signoz/signoz.db

kubectl -n platform rollout restart sts/my-release-signoz-query-service