All Projects → hawtio → Hawtio

hawtio / Hawtio

Licence: apache-2.0
Hawtio web console helps you manage your JVM stuff and stay cool!

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Hawtio

Console
Interactive client tool of FISCO BCOS(交互式区块链控制台)
Stars: ✭ 63 (-94.75%)
Mutual labels:  console
Hackerweb
A simply readable Hacker News web app
Stars: ✭ 1,151 (-4.08%)
Mutual labels:  web-app
Tiza
Console styling for browsers
Stars: ✭ 74 (-93.83%)
Mutual labels:  console
Ginseng
C++ REPL Tool Builder
Stars: ✭ 65 (-94.58%)
Mutual labels:  console
Quake Console
Quake-style console for MonoGame
Stars: ✭ 66 (-94.5%)
Mutual labels:  console
Clojurice
An opinionated starter app for full-stack web applications in Clojure
Stars: ✭ 70 (-94.17%)
Mutual labels:  web-app
Node Draftlog
📜 Create updatable log lines into the terminal, and give life to your logs!
Stars: ✭ 1,117 (-6.92%)
Mutual labels:  console
Kotlin Fullstack Sample
Kotlin Full-stack Application Example
Stars: ✭ 1,197 (-0.25%)
Mutual labels:  web-app
Cyp
Control Your Player: a Web-based MPD client
Stars: ✭ 67 (-94.42%)
Mutual labels:  web-app
Listr2
NodeJS Task List derived from the best! Create beautiful CLI interfaces via easy and logical to implement task lists that feel alive and interactive.
Stars: ✭ 73 (-93.92%)
Mutual labels:  console
Nativescript Ionic Template
📱 🖥 Create Mobile First apps, Web and Native sharing the code with Angular 🎉
Stars: ✭ 65 (-94.58%)
Mutual labels:  web-app
Signale
Highly configurable logging utility
Stars: ✭ 8,575 (+614.58%)
Mutual labels:  console
Elasticsearch Cli
Command line interface for ElasticSearch
Stars: ✭ 70 (-94.17%)
Mutual labels:  console
Gritty
web terminal emulator
Stars: ✭ 63 (-94.75%)
Mutual labels:  console
Console
The Console component eases the creation of beautiful and testable command line interfaces.
Stars: ✭ 8,988 (+649%)
Mutual labels:  console
Theorytracker
🎼 HTML5/WebAudio multi-track functional harmony analysis and songwriting app! -- https://hlorenzi.github.io/theorytracker/
Stars: ✭ 62 (-94.83%)
Mutual labels:  web-app
Flask React Boilerplate
Simple boilerplate for a Flask backend and React client
Stars: ✭ 69 (-94.25%)
Mutual labels:  web-app
I3 Quickterm
A small drop-down terminal for i3 and sway
Stars: ✭ 76 (-93.67%)
Mutual labels:  console
Emu2
Simple x86 and DOS emulator for the Linux terminal.
Stars: ✭ 75 (-93.75%)
Mutual labels:  console
Ansi Econsole
Eclipse plugin that understands ANSI escape sequences to color the Eclipse console output.
Stars: ✭ 72 (-94%)
Mutual labels:  console

hawtio

CircleCI

Introduction

Hawtio is a lightweight and modular Web console for managing Java applications.

Hawtio screenshot

Hawtio has lots of plugins such as: Apache ActiveMQ, Apache Camel, JMX, OSGi, Logs, Spring Boot, and Diagnostics. You can dynamically extend Hawtio with your own plugins or automatically discover plugins inside the JVM.

The only server side dependency (other than the static HTML/CSS/JS/images) is the excellent Jolokia library which has small footprint (around 300KB) and is available as a JVM agent, or comes embedded as a servlet inside the hawtio-default.war or can be deployed as an OSGi bundle.

Get Started

For more details and other containers, see Get Started Guide.

Running an executable JAR

You can start up Hawtio on your machine using the hawtio-app executable JAR.

Once you have downloaded it, just run this from the command line:

java -jar hawtio-app-2.12.0.jar

Running a Spring Boot app

Attaching the Hawtio console to your Spring Boot app is simple.

  1. Add io.hawt:hawtio-springboot to the dependencies in pom.xml:

     <dependency>
       <groupId>io.hawt</groupId>
       <artifactId>hawtio-springboot</artifactId>
       <version>2.12.0</version>
     </dependency>
    
  2. Enable the Hawtio and Jolokia endpoints by adding the following line in application.properties:

     management.endpoints.web.exposure.include=hawtio,jolokia
    

Now you should be able to run Hawtio in your Spring Boot app as follows:

mvn spring-boot:run

Opening http://localhost:8080/actuator/hawtio should show the Hawtio console.

See Spring Boot example for a working example app.

Deploying on Apache Karaf

If you are using Apache Karaf 4.x and above:

feature:repo-add hawtio 2.12.0
feature:install hawtio

This will install all the features required for Hawtio. The Hawtio console can then be viewed at http://localhost:8181/hawtio.

Karaf versions prior to 4.x are not supported.

Contributing

We love contributions! Here are the resources on how to get you involved in Hawtio development.

Check out the GitHub issues for finding issues to work on.

License

Hawtio is licensed under Apache License, Version 2.0.

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].