hawtio / hawtio

Hawtio web console helps you manage your JVM stuff and stay cool!

Home Page:https://hawt.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hawtio

Test E2E Test

Introduction

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

Hawtio screenshot

Hawtio has plugins such as: Apache Camel and JMX (Logs, Spring Boot, Quartz, and more will be provided soon). 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.

Get Started

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

Running from CLI (JBang)

If you haven't installed JBang yet, first install it: https://www.jbang.dev/download/

You can start up Hawtio on your machine using the following jbang command.

jbang app install hawtio@hawtio/hawtio
hawtio --help

Running a Spring Boot app

Note

Hawtio v4 supports Spring Boot 3.x.

You can attach the Hawtio console to your Spring Boot app with the following steps.

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

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

    management.endpoints.web.exposure.include=hawtio,jolokia
    spring.jmx.enabled=true

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.

Running a Quarkus app

Note

Hawtio v4 supports Quarkus 3.x.

You can attach the Hawtio console to your Quarkus app by adding io.hawt:hawtio-quarkus to the dependencies in pom.xml:

<dependency>
  <groupId>io.hawt</groupId>
  <artifactId>hawtio-quarkus</artifactId>
  <version>4.0.0-RC1</version>
</dependency>

Now you should be able to run Hawtio with your Quarkus app in development mode as follows:

mvn compile quarkus:dev

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

See Quarkus example for a working example app.

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.

About

Hawtio web console helps you manage your JVM stuff and stay cool!

https://hawt.io/

License:Apache License 2.0


Languages

Language:Java 95.8%Language:Gherkin 2.1%Language:Shell 0.8%Language:JavaScript 0.6%Language:HTML 0.2%Language:TypeScript 0.2%Language:Dockerfile 0.1%Language:XSLT 0.1%Language:CSS 0.1%