Administration troubleshooting
Docker Toolbox on Windows: New state of 'nil' is invalid
If you are using Docker Toolbox on Windows to run Sourcegraph, you may see an error in the frontend
log output:
BASHfrontend | frontend | frontend | frontend | New state of 'nil' is invalid.
After this error, no more frontend
log output is printed.
This problem is caused by docker/toolbox#695 in Docker Toolbox on Windows. To work around it, set the environment variable LOGO=false
, as in:
BASHdocker container run -e LOGO=false ... sourcegraph/server
See sourcegraph/sourcegraph#398 for more information.
WARNING: Running Sourcegraph on Docker Toolbox for Windows is not supported for production deployments.
Submitting a metrics dump
If you encounter performance or instability issues with Sourcegraph, we may ask you to submit a metrics dump to us. This allows us to inspect the performance and health of various parts of your Sourcegraph instance in the past and can often be the most effective way for us to identify the cause of your issue.
The metrics dump includes non-sensitive aggregate statistics of Sourcegraph like CPU & memory usage, number of successful and error requests between Sourcegraph services, and more. It does NOT contain sensitive information like code, repository names, user names, etc.
In the process of troubleshooting, we may also ask that you perform other tasks from the command line to help us assist you. Our command line generator is a tool we've created to help users generate commands for various functions (i.e. retrieving logs from specific containers, port forwarding, checking dirty databases, etc.).
Docker Compose deployments
To create a metrics dump from a docker-compose deployment, follow these steps:
- Open a shell to the running
prometheus
container:
SHdocker exec -it prometheus /bin/sh
- Inside the container bash shell trigger the creation of a Prometheus snapshot:
SHwget --post-data "" http://localhost:9090/api/v1/admin/tsdb/snapshot
- Find the created snapshot's name:
SHls /prometheus/snapshots/
- Tar up the created snapshot
SHcd /prometheus/snapshots && tar -czvf /tmp/sourcegraph-metrics-dump.tgz <snapshot-name>
- Switch back to local shell (
exit
) and copy the metrics dump file to the host machine:
SHdocker cp prometheus:/tmp/sourcegraph-metrics-dump.tgz sourcegraph-metrics-dump.tgz
Please then upload the sourcegraph-metrics-dump.tgz
file to Sourcegraph support so we can inspect it.
Single-container Sourcegraph deployments
To create a metrics dump from a single-container sourcegraph/server
deployment, follow these steps:
- Open a shell to the running container:
- Run
docker ps
to get the name of the Sourcegraph server container. - Run
docker exec -it <container name> /bin/bash
to open a bash shell.
- Run
- Inside the container bash shell trigger the creation of a Prometheus snapshot:
SHwget --post-data "" http://localhost:9090/api/v1/admin/tsdb/snapshot
- Tar up the created snapshot
SHcd ~/.sourcegraph/data/prometheus/snapshots && tar -czvf /tmp/sourcegraph-metrics-dump.tgz <snapshot-name>
- If needed, you can download the metrics dump to your local machine (current directory) using
scp
:
SHscp -r username@hostname:/tmp/sourcegraph-metrics-dump.tgz .
Please then upload the sourcegraph-metrics-dump.tgz
for Sourcegraph support to access it. If desired, we can send you a shared private Google Drive folder for the upload as it can sometimes be a few gigabytes.
Kubernetes deployments
If you're using the Kubernetes cluster deployment option, you can create a metrics dump as follows:
-
Open a shell to the running container
- Run
kubectl get pods
to get the name of the Prometheus pod. - Run
kubectl exec -it <pod-name> -- /bin/bash
.
- Run
-
Inside the container bash shell trigger the creation of a Prometheus snapshot:
SHwget --post-data "" http://localhost:9090/api/v1/admin/tsdb/snapshot
- Tar up the created snapshot
SHcd /prometheus/snapshots && tar -czvf /tmp/sourcegraph-metrics-dump.tgz <snapshot-name>
- Switch back to local shell and copy the metrics dump file over:
SHkubectl cp <podname>:/tmp/sourcegraph-metrics-dump.tgz /tmp/sourcegraph-metrics-dump.tgz
Again please then upload the sourcegraph-metrics-dump.tgz
for Sourcegraph support to access it.
Generating pprof profiles
Please follow these instructions to generate pprof profiles.
Sourcegraph is not returning results from a repository unless "repo:" is included
If you can get repository results when you explicitly include repo:{your repository}
in your search, but don't see any results from that repository when you don't, there are a few possible causes:
- The repository is a fork repository (excluded from search results by default) and
fork:yes
is not specified in the search query. - The repository is an archived repository (excluded from search results by default) and
archived:yes
is not specified in the search query. - There is an issue indexing the repository: check the logs of repo-updater and/or search-indexer.
- The search index is unavailable for some reason: try the search query
repo:<the_repository> index:only
. If it returns no results, the repository has not been indexed.
Sourcegraph is making unauthorized requests to the git server
This is normal and happens whenever git is used over HTTP. To avoid unnecessarily sending a password over HTTP, git first makes a request without the password included. If a 401 Unauthorized is returned, git sends the request with the password.
More information can be found here.
If this behaviour is undesired, the gitURLType
in the external service configuration
should be set to ssh
instead of http
. This will also require ssh keys to be set up.