#Papertrail
Cloud-hosted log management.
#Features
| Feature | Description |
|---|---|
| Cloud-hosted | No infrastructure |
| Real-time | Live tail |
| Search | Fast full-text search |
| Alerts | Email, Slack, webhooks |
| Archive | S3 integration |
#Setup
bash
1# rsyslog configuration
2# /etc/rsyslog.d/papertrail.conf
3*.* @logs.papertrailapp.com:XXXXX
4
5# Restart rsyslog
6sudo systemctl restart rsyslog#Docker Logging
bash
1docker run -d \
2 --log-driver=syslog \
3 --log-opt syslog-address=udp://logs.papertrailapp.com:XXXXX \
4 nginx#CLI
bash
1# Install
2gem install papertrail
3
4# Search
5papertrail "error"
6
7# Tail
8papertrail -f#Pricing
- Per GB/month
- Free tier: 50MB/month
- Plans scale with volume
[!TIP] Pro Tip: Perfect for small teams wanting simple, managed logging!