https://github.com/traffic-hunter/traffic_hunter
Traffic-Hunter is an APM (Application Performance Monitoring) tool designed for simple performance monitoring of small-scale projects.
https://github.com/traffic-hunter/traffic_hunter
bytebuddy grafana java javaagent metrics spring-boot timescaledb trace
Last synced: over 1 year ago
JSON representation
Traffic-Hunter is an APM (Application Performance Monitoring) tool designed for simple performance monitoring of small-scale projects.
- Host: GitHub
- URL: https://github.com/traffic-hunter/traffic_hunter
- Owner: traffic-hunter
- License: mit
- Created: 2024-10-06T07:53:37.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-31T07:14:51.000Z (over 1 year ago)
- Last Synced: 2024-12-31T07:17:23.105Z (over 1 year ago)
- Topics: bytebuddy, grafana, java, javaagent, metrics, spring-boot, timescaledb, trace
- Language: Java
- Homepage: https://traffic-hunter.gitbook.io/traffic-hunter
- Size: 529 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

## Latest Release 🚀
The pre-release version is v1.0.0.
- 2024/12/30 - 1.0.0 version
### Notes
- Agent that is v1.0.0 supports only `spring framework 6.x` and `boot 3.x`
## Intro. Traffic-Hunter
**Traffic-Hunter** is APM (Application Performance Management)
- `Real-Time Monitoring`: Capture and visualize application metrics and transaction logs in real-time.
- `Easy Configuration`: Easily configure the agent using a simple YAML file, making setup straightforward and user-friendly.
- `Efficient Data Storage`: Leverages [**TimescaleDB**](https://www.timescale.com/) for efficient storage and querying of time-series data,
enabling high-performance analytics on metrics and traces.
- `Visualization`: This APM leverages [**Grafana**](https://grafana.com/docs/grafana/latest/) for powerful and customizable visualization of metrics and transaction logs, enabling real-time insights and easy integration into your observability stack.
- `Zero-Code`: Traffic Hunter Agent uses **Java Instrumentation** to modify bytecode at runtime, requiring no code changes from users. Simply attach the agent, and it automatically tracks metrics and traces with zero configuration.
## Getting Started
- [**Quick-start**](https://traffic-hunter.gitbook.io/traffic-hunter) - Quick-start and installation guide.
## Overview 👀
- **Application Health Check** - cpu, heap memory, thread, web server, dbcp (database connection pool)

- **Transaction Logs** - Transaction logs track application requests in real-time, recording executed methods and related information.

## Version Compatibility 👏
| Java Version | Agent | Server | Notes |
|--------------|-----------------|----------------|-------------------------------------------|
| 21 | ✅ Supported | ✅ Supported | Includes support for advanced features like virtual threads |
### Notes
- Java versions below 21 are **not supported**.
- For optimal performance and access to the latest features, use Java 21.
- Ensure both the agent and the server are running compatible Java versions.
## License
```text
The MIT License
Copyright (c) 2024 yungwang-o
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```