Is there any way of exporting user-settings, dashb...
# support
h
Is there any way of exporting user-settings, dashboards etc, and then importing it to a different signoz ? Because its stored in a sqlite db, so its in a PVC in kubernetes. So if you recreate cluster, its kinda difficult to have it persist to the next kubernetes cluster (AWS EKS)
s
You can copy the SQLite from pvc and import it. Sample example
Copy code
kubectl cp --retries 10 -n <namespace> "<query-serivce-pod>:/var/lib/signoz/signoz.db" signoz.db
h
thanks! that will help a lot, for when migrating to newer eks versions