Hi Tim,
Yes, it is possible.
To aggregate the id in the URLs, you can add the parameter
"http-transform-pattern" for this.
For example, in your web.xml file:
<filter>
<filter-name>monitoring</filter-name>
<filter-class>net.bull.javamelody.MonitoringFilter</filter-class>
<init-param>
<param-name>http-transform-pattern</param-name>
<param-value>\d+</param-value>
</init-param>
</filter>
...
The statistics will be displayed in your case as "/view/$".
The parameter is a regular expression, so you can add several
patterns and separate them with '|'.
Or if your prefer, you could use a positive lookbehind in the regex, for example:(?<=view)\/\d+
For more information on parameters and how to set them:
https://github.com/javamelody/javamelody/wiki/UserGuide#6-optional-parameters
bye,
Emeric