hdwivedi-ra commented on issue #4990:
URL: https://github.com/apache/camel-k/issues/4990#issuecomment-1862257171
@tadayosi
Belo is the sample route which I am running
```
import org.apache.camel.builder.RouteBuilder;
public class hello extends RouteBuilder {
@Override
public void configure() throws Exception {
from("timer:java?period={{time:60000}}")
.setBody()
.simple("Hello Camel from ${routeId}")
.log("${body}");
}
}
```
I am running below command
kamel run hello.java --name hawtio-online-example-camel-k --dev -t
jolokia.protocol=https -t jolokia.host=* -t jolokia.port=8778 -t
jolokia.use-ssl-client-authentication=false -t jolokia.enabled=true -t
logging.level=DEBUG
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]