grails-melody-plugin icon indicating copy to clipboard operation
grails-melody-plugin copied to clipboard

JavaMelody monitoring plugin for Grails, to monitor application performance

Results 7 grails-melody-plugin issues
Sort by recently updated
recently updated
newest added

Just update the core version of java melody

Grails version : 3.3.0 **build.gradle** ```gradle compile('org.grails.plugins:grails-melody-plugin:1.70.0') { exclude group: 'net.bull.javamelody', module: 'javamelody-core' } compile 'net.bull.javamelody:javamelody-core:1.83.0' provided "org.springframework.boot:spring-boot-starter-actuator" ``` **application.groovy** ```groovy server.port=8080 management.port=8088 management.security.enabled=false management.ssl.enabled=false javamelody.log=true ``` **application.yml** ```yml endpoints:...

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...

Grails 3.3.8 / JDK1.8.0_192 / Win OS / grails-melody-plugin 1.74.0 When adding new Service class: ``` package grails.melody.plugin import grails.gorm.transactions.Transactional @Transactional class DomainFindService { def findByName(Class domain, String name) {...

Grails: 3.3.8 Grails Melody Plugin: 1.72.0 Having two data sources defined in `application.yml` I see only quartz (not the default one) sql queries in monitoring console. Interestingly enough on localhost...

I have discovered a recent guide to setup grails melody. Guide : http://guides.grails.org/grails-javamelody/guide/index.html Source: https://github.com/grails-guides/grails-javamelody We could add a link to this somewhere in [this page](http://plugins.grails.org/plugin/sergiomichels/grails-melody-plugin), which comes from [this...

Check the possibility of an automate release process that changes the version (from snapshot to final), tag and change again to snapshot.

enhancement