javamelody / grails-melody-plugin

JavaMelody monitoring plugin for Grails, to monitor application performance
https://plugins.grails.org/plugin/grails-melody-plugin
Apache License 2.0
32 stars 31 forks source link

Caches are not listed in the monitoring page #72

Open gabivis opened 5 years ago

gabivis commented 5 years ago

I am using grails 3 with the following plugins compile 'org.grails.plugins:grails-melody-plugin:1.76.1' compile ('org.grails.plugins:cache-ehcache:3.0.0.M1') compile "org.grails.plugins:cache:5.0.0.RC1" In grails 2, there was a cache section. This section is missing with the grails 3 version of the plugin. I know that support for monitoring ehcache 3 has recently been added to javamelody. See this thread for more information: https://github.com/javamelody/javamelody/issues/574#issuecomment-470586078

Is there a plan to also add support for it in this plugin?

Thanks, Gabi

sergiomichels commented 5 years ago

Hi Gabi, I can see that this feature is available in JavaMelody's current snapshot...

After release we can upgrade the dependency in Grails plugin but meanwhile you can override melody version in your build, something like (changing to snapshot):

compile('org.grails.plugins:grails-melody-plugin:1.76.1') {
    exclude group: 'net.bull.javamelody', module: 'javamelody-core'
}
compile 'net.bull.javamelody:javamelody-core:1.77.0'
gabivis commented 4 months ago

Thanks!