Wicket Metrics - Screenshot / further guide improvements Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/4c0c2d5d Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/4c0c2d5d Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/4c0c2d5d
Branch: refs/heads/master Commit: 4c0c2d5d5b40bacfb4e9f169015b92953a8e3ef3 Parents: d417c01 Author: Tobias Soloschenko <[email protected]> Authored: Sat Mar 12 09:05:28 2016 +0100 Committer: Tobias Soloschenko <[email protected]> Committed: Wed Mar 16 17:55:12 2016 +0100 ---------------------------------------------------------------------- .../src/docs/guide/monitoring/monitoring_2.gdoc | 6 +++++- .../src/docs/guide/monitoring/monitoring_3.gdoc | 18 ++++++++++++++++++ wicket-user-guide/src/docs/guide/toc.yml | 1 + .../src/docs/img/wicket_metrics_graphite.png | Bin 0 -> 97808 bytes 4 files changed, 24 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/4c0c2d5d/wicket-user-guide/src/docs/guide/monitoring/monitoring_2.gdoc ---------------------------------------------------------------------- diff --git a/wicket-user-guide/src/docs/guide/monitoring/monitoring_2.gdoc b/wicket-user-guide/src/docs/guide/monitoring/monitoring_2.gdoc index 4ecf64e..b77e799 100644 --- a/wicket-user-guide/src/docs/guide/monitoring/monitoring_2.gdoc +++ b/wicket-user-guide/src/docs/guide/monitoring/monitoring_2.gdoc @@ -63,4 +63,8 @@ reporter.start(1, TimeUnit.SECONDS); - (20) Go to http://localhost:8080 -(4) Now start your tomcat server configured like mentioned in the previous chapter. \ No newline at end of file +* (18) and (19) have to be executed if the mac has been restarted + +(4) Now start your tomcat server configured like mentioned in the previous chapter. + +!wicket_metrics_graphite.png! \ No newline at end of file http://git-wip-us.apache.org/repos/asf/wicket/blob/4c0c2d5d/wicket-user-guide/src/docs/guide/monitoring/monitoring_3.gdoc ---------------------------------------------------------------------- diff --git a/wicket-user-guide/src/docs/guide/monitoring/monitoring_3.gdoc b/wicket-user-guide/src/docs/guide/monitoring/monitoring_3.gdoc new file mode 100644 index 0000000..6760b6f --- /dev/null +++ b/wicket-user-guide/src/docs/guide/monitoring/monitoring_3.gdoc @@ -0,0 +1,18 @@ +The data which is going to be measured depends on the wicket-metrics implementation. So it doesn't make any sense to collect time data + +about setRepsonsePage, but it does for the constructor of components, to see if a component needs a long time to be created. You can + +get the information about which data has been collected from out of the mbeans. + +Here are some information about them: + +* max - the maximal time for a task (created, initialized, etc.) + +* min - the minimal time for a task (created, initialized, etc.) + +* count - how often something happend (request count) + +The structure is separated in the way that under core there are the kind of components measured and below that the type of operation + +(created, initialized, detached). In this category every component is listed dynamically. + http://git-wip-us.apache.org/repos/asf/wicket/blob/4c0c2d5d/wicket-user-guide/src/docs/guide/toc.yml ---------------------------------------------------------------------- diff --git a/wicket-user-guide/src/docs/guide/toc.yml b/wicket-user-guide/src/docs/guide/toc.yml index f9be35e..dab016e 100644 --- a/wicket-user-guide/src/docs/guide/toc.yml +++ b/wicket-user-guide/src/docs/guide/toc.yml @@ -227,6 +227,7 @@ monitoring: title: Wicket Metrics Monitoring monitoring_1: Example setup monitoring_2: Visualization with Graphite + monitoring_3: Measured data redirects: title: Lost In Redirection With Apache Wicket (Appendix) contributing: http://git-wip-us.apache.org/repos/asf/wicket/blob/4c0c2d5d/wicket-user-guide/src/docs/img/wicket_metrics_graphite.png ---------------------------------------------------------------------- diff --git a/wicket-user-guide/src/docs/img/wicket_metrics_graphite.png b/wicket-user-guide/src/docs/img/wicket_metrics_graphite.png new file mode 100644 index 0000000..c10ab42 Binary files /dev/null and b/wicket-user-guide/src/docs/img/wicket_metrics_graphite.png differ
