Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Skywalking | 22,452 | 6 | 13 hours ago | 15 | June 16, 2023 | 47 | apache-2.0 | Java | ||
APM, Application Performance Monitoring System | ||||||||||
Pinpoint | 12,999 | 5 | 14 hours ago | 12 | June 13, 2023 | 415 | apache-2.0 | Java | ||
APM, (Application Performance Management) tool for large-scale distributed systems. | ||||||||||
Gf | 10,058 | 7 | 287 | 10 hours ago | 535 | July 26, 2023 | 114 | mit | Go | |
GoFrame is a modular, powerful, high-performance and enterprise-class application development framework of Golang. | ||||||||||
Embree | 2,127 | 10 hours ago | 60 | apache-2.0 | C++ | |||||
Embree ray tracing kernels repository. | ||||||||||
Ebpf_exporter | 1,749 | 2 | 8 days ago | 7 | July 25, 2023 | 9 | mit | Go | ||
Prometheus exporter for custom eBPF metrics | ||||||||||
Stagemonitor | 1,695 | 11 | 8 | 7 months ago | 47 | April 06, 2020 | 85 | apache-2.0 | Java | |
an open source solution to application performance monitoring for java server applications | ||||||||||
Nanoscope | 902 | 3 years ago | 24 | apache-2.0 | HTML | |||||
An extremely accurate Android method tracing tool. | ||||||||||
Appletrace | 690 | 2 years ago | mit | C | ||||||
🍎Objective C Method Tracing Call Chart | ||||||||||
Dd Trace Go | 548 | 378 | 9 hours ago | 345 | October 11, 2022 | 144 | other | Go | ||
Datadog Go Library including APM tracing, profiling, and security monitoring. | ||||||||||
Traceo | 448 | 2 days ago | 13 | apache-2.0 | TypeScript | |||||
Traceo is a self-hosted bug tracking and performance monitoring system. |
This project is now ARCHIVED and deprecated in favor of CNCF's Jaeger. See our announcement blog post for more details.
Hawkular APM is the Application Performance Management solution offering:
Applications can be instrumented using the OpenTracing standard API, optionally with the help of framework integrations and a non-intrusive Java Agent, that can be found in the OpenTracing contrib organization. It is also possible to use Hawkular APM as an alternative backend for Zipkin client libraries.
Hawkular APM provides the capabilities to monitor the flow of invocations across servers, tiers, on-premises and in the cloud. It also enables detailed performance analysis to be performed of the individual components that make up an application.
Project documentation can be found here.
To build and run execute:
$ mvn clean install -Pdev -DskipTests [-Pitest]
$ dist/target/hawkular-apm-${version}/bin/standalone.sh [-Djboss.http.port=9411]
-> go to http://localhost:[8080|9411]/ and log in with admin:password
The parameters to these commands are:
-Djboss.http.port=9411
- bind APM port to Zipkin 9411 port. Default APM port is 8080.-Pdev
- create user admin:password-Pitest
- run integration testsAdd non-intrusive Java instrumentation to instrument your applications (doc):
$ source dist/target/hawkular-apm-${version}/apm/setenv.sh <APM server port>
-> restart your Java applications
REST API documentation can be generated using -Pdocgen
profile. The doc is generated under rest/target
folder.
$ mvn clean install -Pdocgen
The project is divided into several areas:
Folder | Description |
---|---|
api | This module contains the Java interfaces for services and processors, as well as the information model for exchanging business transaction information. |
client | This folder contains the modules used to collector information from an execution environment. |
dist | This module builds a distribution containing a pre-packaged Hawkular server with APM installed. |
examples | This folder contains example applications. |
server | This folder contains the modules related to the server. |
tests | This folder contains the integration tests. |
ui | The angularjs based user interface. |
Hawkular-APM is released under Apache License, Version 2.0 as described in the LICENSE document
Copyright 2015-2017 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.