Menu
  • HOME
  • TAGS

Hawtio not starting

java,hawtio

This appears to be a bug in Hawt.io. There is an indication that it should be fixed in 1.4.5 or 1.4.6, however I have verified that it's still failing in 1.4.8 and 1.5.0-SNAPSHOT.

Jetty - How to make a camel application log events to the hawtio Logs tab

java,spring,jetty,apache-camel,hawtio

I've just run into same problem. I resolved it but not sure it's the best solution. Camel uses sfl4j as logging facade. Hawtio log plugin intercepts Log4J (1.x) logging. Make sure the logging bundle you use with slf4j is log4j 1.x (slf4j-log4j12-x.x.x.jar). I used Log4J 2.x bundle before and was...

Hawtio Camel 2.8.0-fuse-07-16 no trace messages

apache-camel,hawtio

You need a newer version of Camel to support tracing from hawtio. I think you would need the Camel version from JBoss Fuse 6.0 or better.

ActiveMQ: enable Web Console in a CXF Project

java,maven,activemq,wildfly-8,hawtio

Ok, the question could be a bit more clear, but I will assume you have a maven based web application that embeds an ActiveMQ broker. You then want to enable the ActiveMQ web console for that broker. Correct? First, the Web Console is a stand alone web application that you...

hawtio - predefined list of remote agents

java,monitoring,hawtio,jolokia

No currently this is not supported, but a good idea. You are welcome to log a ticket about this. https://github.com/hawtio/hawtio/issues And also how would you like that list to be configured? Should you need to edit the web.xml and repackage the WAR, or how should that configuration be made easy?...

Tomcat Hawtio encrypted password

tomcat,encryption,login,hawtio

This is not supported using the simple tomcat security plugin in hawtio. You are welcome to log a ticket [1] about this, then we can see if that would be possible for us to implement. Another alternative could be use JAAS in Tomcat as hawtio can work with that. [1]...

hawtio needs access to github or git repo?

hawtio

You can deploy the hawtio-default-offline which does not integrate with git/maven or other online resources.

Hawtio - CSS of a plugin affects CSS of another plugin

css3,hawtio

At the moment that's really how things are, CSS selectors apply to all elements in the page regardless of how they get there. A nice solution eventually for this problem will be web components, in a browser with proper support (Chrome and Opera at the moment) you get CSS isolation...

Hawtio simple plugin example - tab is not visible

plugins,hawtio

If you're getting a 404 for /hawtio/plugin then you're missing the PluginServlet from your war, or at least it isn't running -> https://github.com/hawtio/hawtio/blob/master/hawtio-system/src/main/java/io/hawt/web/PluginServlet.java This servlet is how the frontend discovers any additional plugins to load. I'd suggest comparing your web.xml with the one from hawtio-web and make sure this class...

How to add Hawtio plugins when running the standalone jar

hawtio

You need to add your custom plugins as a .war file to the classpath, when you run the standalone hawtio. And for how to build a custom plugin, then check some of the examples here https://github.com/hawtio/hawtio/tree/master/hawtio-plugin-examples ...

How to use ng-grid in Hawtio?

angularjs,ng-grid,hawtio

Yeah you can use that, though we used ng-grid in the start with hawtio, but it has some issues (not all data was shown in all browsers etc) and was slow. And we needed a simple grid, so we wrote a simpletable we used instead. But you should be able...

AngularJS deferred promise in Jolokia request

angularjs,hawtio,jolokia

In the jolokia success/error callback you need a $scope.$apply() to fire angular's event loop. In a service like this I usually inject $rootScope and use Core.$apply($rootScope)

how to use hawt.io with spring boot and an embedded Jetty

spring-boot,embedded-jetty,hawtio

You would need to add some code to tell Jetty to add the hawtio-web WAR file as a context-path to jetty itself. See how we do this from hawtio embedded https://github.com/hawtio/hawtio/blob/master/hawtio-embedded/src/main/java/io/hawt/embedded/Main.java ...