https://github.com/timelessnesses/lavalink-tester
A simple fastapi http/ws lavalink detector if it is up or down
https://github.com/timelessnesses/lavalink-tester
Last synced: about 2 months ago
JSON representation
A simple fastapi http/ws lavalink detector if it is up or down
- Host: GitHub
- URL: https://github.com/timelessnesses/lavalink-tester
- Owner: timelessnesses
- Created: 2022-10-03T20:23:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-29T10:11:06.000Z (over 3 years ago)
- Last Synced: 2025-01-01T15:42:56.290Z (over 1 year ago)
- Language: Python
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lavalink-tester
A simple fastapi http/ws lavalink detector if it is up or down
## How can I check?
OpenAPI in fastapi should explain lots of things for you but if you're here for websocket here's how
1. Connect to websocket at /ws url
2. You can send json response which only accept
```json
{
"type":"test",
"host":"lavalink.api.rukchadisa.live",
"port":80,
"password":"youshallnotpass"
}
```
which this returns
```json
{
"error": string or null
"alive": bool
"ping": float
"stuff": request that you sent
}
```