All Projects → kieker-monitoring → Kieker

kieker-monitoring / Kieker

Licence: apache-2.0
Kieker's main repository

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Kieker

Maze
Maze Applied Reinforcement Learning Framework
Stars: ✭ 85 (+102.38%)
Mutual labels:  framework, monitoring
Nodefony Starter
Nodefony Starter Node.js Framework
Stars: ✭ 95 (+126.19%)
Mutual labels:  framework, monitoring
Xestimonitors
An extensible monitoring framework written in Swift
Stars: ✭ 269 (+540.48%)
Mutual labels:  framework, monitoring
Aurelia
Aurelia 2, a standards-based, front-end framework designed for high-performing, ambitious applications.
Stars: ✭ 995 (+2269.05%)
Mutual labels:  framework
Coaty Js
Collaborative IoT framework in JavaScript/TypeScript for Node.js and browsers.
Stars: ✭ 39 (-7.14%)
Mutual labels:  framework
Plugface
Next generation Java general purpose plugin framework
Stars: ✭ 41 (-2.38%)
Mutual labels:  framework
Unity Core Project
Core Framework for Unity
Stars: ✭ 42 (+0%)
Mutual labels:  framework
Prometheus smart exporter
Configurable S.M.A.R.T. metric exporter for Prometheus
Stars: ✭ 38 (-9.52%)
Mutual labels:  monitoring
Think
ThinkPHP Framework ——十年匠心的高性能PHP框架
Stars: ✭ 7,681 (+18188.1%)
Mutual labels:  framework
Ecs Monitor
A simple monitoring solution for Amazon's Elastic Container Service (ECS)
Stars: ✭ 40 (-4.76%)
Mutual labels:  monitoring
Lldebugtoolswift
LLDebugTool is a debugging tool for developers and testers that can help you analyze and manipulate data in non-xcode situations.
Stars: ✭ 40 (-4.76%)
Mutual labels:  monitoring
Sparql Engine
🚂 A framework for building SPARQL query engines in Javascript/Typescript
Stars: ✭ 39 (-7.14%)
Mutual labels:  framework
Karma
Alert dashboard for Prometheus Alertmanager
Stars: ✭ 1,007 (+2297.62%)
Mutual labels:  monitoring
Phantom Evasion
Python antivirus evasion tool
Stars: ✭ 997 (+2273.81%)
Mutual labels:  dynamic-analysis
Virtualapp
Virtual Engine for Android(Support 12.0 in business version)
Stars: ✭ 8,413 (+19930.95%)
Mutual labels:  framework
Codenameone
Cross-platform framework for building truly native mobile apps with Java or Kotlin. Write Once Run Anywhere support for iOS, Android, Desktop & Web.
Stars: ✭ 992 (+2261.9%)
Mutual labels:  framework
Bepinex
Unity / XNA game patcher and plugin framework
Stars: ✭ 1,001 (+2283.33%)
Mutual labels:  framework
Duct
Server-side application framework for Clojure
Stars: ✭ 998 (+2276.19%)
Mutual labels:  framework
Atom Table Monitor
⚛️ Monitoring tool for global atom table and RegisterWindowMessage identifiers
Stars: ✭ 39 (-7.14%)
Mutual labels:  monitoring
Fancy
Fancy is a drop-in system that lets you take your static HTML code and add dynamically editable code.
Stars: ✭ 40 (-4.76%)
Mutual labels:  framework

Kieker Monitoring Framework

The internal behavior of large-scale software systems cannot be determined on the basis of static (e.g., source code) analysis alone. Kieker provides complementary dynamic analysis capabilities, i.e., monitoring and analyzing a software system’s runtime behavior — enabling application performance monitoring and architecture discovery.

Detailed information about Kieker is provided at http://kieker-monitoring.net/

Citation

If you use this software, please cite

  • Wilhelm Hasselbring and André van Hoorn (2020) "Kieker: A monitoring framework for software engineering research". Software Impacts, 5. https://doi.org/10.1016/j.simpa.2020.100019

  • André van Hoorn, Jan Waller, and Wilhelm Hasselbring (2012) "Kieker: A Framework for Application Performance Monitoring and Dynamic Software Analysis". In: 3rd joint ACM/SPEC International Conference on Performance Engineering (ICPE 2012), April 22-25, 2012, Boston, Massachusetts, USA. https://doi.org/10.1145/2188286.2188326

BibTeX entries are provides as Kieker BibTeX file

Usage

Kieker releases (stable, nightly, etc.) can be downloaded from our website's Download Section.

Documentation on how to use Kieker can be found here: Kieker Documentation

Development and Contribution

Gradle is used as the build tool. A build.gradle file is provided. From the command-line, please use the provided Gradle wrapper script, e.g., on Unix-based systems, run ./gradlew clean build -x check -x test to build without executing checks and tests.

For issue tracking and bug reports, JIRA is used at https://kieker-monitoring.atlassian.net/.

Further instructions for developers are available at https://kieker-monitoring.atlassian.net/wiki/display/DEV/

Eclipse Setup for Contributors

  • Get Gradle support by installing the Eclipse plugin "Buildship: ..." in version 2 or above.
  • If you have already imported Kieker in Eclipse, delete it
  • Import Kieker in Eclipse by importing it as gradle project (Eclipse will also import all submodules automatically)
  • Whenever you change a build.gradle file, regenerate the .project and .classpath files for Eclipse by using "Gradle->Refresh Gradle Project"

Read our Confluence pages for more information.

Code Conventions

Read and follow our code conventions

Debugging and Logging Kieker's Execution

Kieker uses the Simple Logging Facade for Java (SLF4J) to support the logging framework of your choice. In order to see or store log messages, you need to bind a logging framework at deployment time.

A fast and flexible logging framework that can be used with SLF4J is Logback. In order to use it, you have to download it and add the following Jar files to the classpath:

  • logback-classic-<version>.jar
  • logback-core-<version>.jar

Moreover, you have to set up a logback.xml file for configuration and add its containing folder to the classpath. An example of such a file is provided below:

<configuration>
  <!-- log to console -->
  <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
    <encoder>
      <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
    </encoder>
  </appender>
  <!-- for logging to files see: https://logback.qos.ch/manual/appenders.html -->

  <!-- standard log level is "warn" -->
  <root level="warn">
    <appender-ref ref="STDOUT" />
  </root>
  <!-- set log level for TCP writer down to "info" -->
  <logger name="kieker.monitoring.writer.tcp" level="INFO" />
</configuration>

Logbacks official documentation provides more information on how to use and configure it.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].