https://github.com/j-f-liu/kong-log-server
Receive and collect logs from Kong's HTTP Log plugin.
https://github.com/j-f-liu/kong-log-server
Last synced: 3 months ago
JSON representation
Receive and collect logs from Kong's HTTP Log plugin.
- Host: GitHub
- URL: https://github.com/j-f-liu/kong-log-server
- Owner: J-F-Liu
- Created: 2019-06-23T09:16:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-23T10:11:52.000Z (almost 6 years ago)
- Last Synced: 2025-01-29T17:05:10.635Z (4 months ago)
- Language: Rust
- Size: 13.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Kong Log Server
Receive and collect logs from Kong's HTTP Log plugin.
## Features
- [x] Receive logs from Kong's HTTP Log plugin
- [x] Save to logfile through Redirection
- [ ] Save logs to MongoDB
- [ ] Query logs from MongoDB### Build and Deploy
```
docker start -i centos-rust
cd /Rust/kong-log-server
source $HOME/.cargo/env
cargo build --release
exit
scp ./target/release/kong-log-server [email protected]:/home/junfeng
nohup ./kong-log-server > kong-2019-06-20.log &
sudo /usr/local/bin/kong reload
```