Attach debugger to HiveMQ-Edge?

I’m working on an custom module for HiveMQ-Edge, and the process has been surprisingly easy, but it’s a bit cumbersome to debug/troubleshoot. Is there anyway to connect a remote debugger?

In Ignition I can add the following to my configuration file to enable a debugging endpoint, can the same be done with HiveMQ Edge?

wrapper.java.additional.8=-Xdebug wrapper.java.additional.9=-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000

Hi @thomassorensen

Welcome to the HiveMQ Community! While I’m not familiar with Ignition’s debugging endpoint specifically, the closest equivalent in HiveMQ Edge would likely be the use of Java Management Extensions (JMX). JMX allows you to monitor internal metrics of HiveMQ and the underlying JVM, providing insights for debugging.

Kind regards,
Diego from HiveMQ Team