https://github.com/signoz/troubleshoot
https://github.com/signoz/troubleshoot
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/signoz/troubleshoot
- Owner: SigNoz
- Created: 2022-01-28T07:47:50.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-06T03:17:01.000Z (almost 2 years ago)
- Last Synced: 2025-03-22T01:04:16.103Z (7 months ago)
- Language: Shell
- Size: 104 KB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Troubleshooting SigNoz
## Install
You can run the install script below to download the troubleshoot binary:
```console
curl -sL https://raw.githubusercontent.com/SigNoz/troubleshoot/main/scripts/install.sh | bash
```We currently support the following:
- Linux (amd64/arm64)
- MacOS/Darwin (amd64/arm64)## Build from source
```
git clone git@github.com:signoz/troubleshoot.git && cd signozgo build
```## Run command
### Binary
```
./troubleshoot checkEndpoint --endpoint=
```Eg. `./troubleshoot checkEndpoint --endpoint=localhost:4317`
### Docker
```console
docker run -it --rm signoz/troubleshoot checkEndpoint --endpoint=localhost:4317
```### Kubernetes
```console
kubectl -n platform run troubleshoot --image=signoz/troubleshoot --restart='OnFailure' -i --tty --rm --command -- ./troubleshoot checkEndpoint --endpoint=otel-collector:4317
```## Community
Join the [slack community](https://signoz.io/slack) to know more about distributed tracing, observability, or SigNoz and to connect with other users and contributors.
If you have any ideas, questions, or any feedback, please share on our [Github Discussions](https://github.com/SigNoz/signoz/discussions/680)