2

I have an application running in Glassfish v2.1 which does not have access to the outside world, so I cannot use Google Analytics or something else that has to phone home. It needs to be local to our server.

I want to be able to measure:

  • page load times
  • form submission
  • page usage statistics (eg using page X, Y more often than Z)

Again this has to be local to my application server and can't 'phone home' to a central system.

Are there any options or add-ons for Glassfish which will help me collect usage statistics?

Are there any lightweight local analyitics packages that I could use?

Glassfish sits behind Apache, are there any tools that apache provides to help with this?

Freiheit
  • 201
  • 1
  • 2
  • 15

1 Answers1

2

javamelody - it works inside the applications, you have to add at least one filter to the web.xml.

palacsint
  • 487