Gelf To Sentry Adapter is the simple solution to proxy gelf messages (messages for Graylog) to Sentry
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
You need to docker or cargo with rust
You can install and run it with cargo
cargo install gtsa
gtsa
Docker hub
docker pull mnwamnowich/gtsa
docker run -p 8080:8080/udp --env SENTRY_DSN=dsn --name gtsa mnwamnowich/gtsa
Or docker build
docker build -t gtsa .
docker run -p 8080:8080/udp --env SENTRY_DSN=dsn --name gtsa gtsa
Now you can sent data on udp
For deploying GTSA you must to set is only one env variable:
SENTRY_DSN=xxx
SENTRY DSN must be only in the new format (without secret key)!
Also GTSA have a some env variables with default values, but you can edit it:
UDP_ADDR=0.0.0.0:8080 //udp address
TCP_ADDR=0.0.0.0:8081 // tcp address
SYSTEM=Gelf Mover // name of your application
READER_THREADS=1 // threads for decoding and encoding json messages (max parrallel messages processing)
UNPACKER_THREADS=1 // threads for unpacking messages what received with gz or zlib algoritms (max parrallel messages unpacking)
MAX_PARALLEL_CHUNKS=100000 // maximum chunked messages what GTSA can processing, old messages will be flush (udp only)
echo -n -e '{ "version": "1.1", "host": "example.org", "short_message": "A short message", "level": 5, "_some_info": "foo", "timestamp": 1582213226}'"" | nc -w0 -u 0.0.0.0 8080
echo -n -e '{ "version": "1.1", "host": "example.org", "short_message": "A short message", "level": 5, "_some_info": "foo", "timestamp": 1582213226}'"\0" | nc -w0 0.0.0.0 8081
I hope you know what you need to do.
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Mikhail Panfilov - Initial work - Mnwa
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details