https://github.com/lifailon/logporter
Prometheus exporter for counting log messages in containers
https://github.com/lifailon/logporter
Last synced: 16 days ago
JSON representation
Prometheus exporter for counting log messages in containers
- Host: GitHub
- URL: https://github.com/lifailon/logporter
- Owner: Lifailon
- Created: 2025-06-10T10:17:04.000Z (4 months ago)
- Default Branch: rsa
- Last Pushed: 2025-06-11T08:37:48.000Z (4 months ago)
- Last Synced: 2025-06-11T08:41:24.414Z (4 months ago)
- Language: Go
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# logporter
Prometheus exporter for getting base metrics and number of logged messages in containers.
## Why log the number of logs?
- Display the number of requests to the application if the application registers each request by keywords.
- Compare the increased load with the number of logged messages.
- If the application is not resource-intensive, the number of logged messages will show the increased load.
- Speed ​​up log analysis by displaying at what point in time the most messages were received from the standard and error stream.## Roadmap
- [x] Functions for extracting base and custom metrics
- [x] Converting metrics to Prometheus format
- [X] HTTP server
- [X] Error handling (check for missing data)
- [ ] Getting data in a goroutine
- [ ] Building a Docker image
- [ ] Grafana dashboard
- [ ] Testing