Skip to content

Commit

Permalink
monitoring extension basic config (live mode)
Browse files Browse the repository at this point in the history
  • Loading branch information
fvanderbiest committed Mar 24, 2014
1 parent 3b36a1b commit 2011209
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
14 changes: 14 additions & 0 deletions monitoring/filter.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#
# This file is used to filter out requests that are monitored.
# It contains a list of ant style path patterns that are applied
# in the order they are encountered in this file. They are applied
# to the path component of the request. For example in the request:
#
# http://localhost:8080/geoserver/wfs?request=getfeature&...
#
# The request path is "/wfs"
#

/rest/monitor/**
/web
/web/**
36 changes: 36 additions & 0 deletions monitoring/monitor.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# the storage mode, one of: memory, hibernate
# Note: hibernate mode requires the hibernate extension
storage=memory

# the monitor mode, one of: live, history
mode=live

# synchronization mode, one of: sync, async, async_update
#
# WARNING: this is an advanced configuration option. You probably do not want
# to change this unless instructed to by a developer
sync=async

# The maximum allowable length for a request body (in bytes). Longer bodies will be trimmed to
# this length.
#maxBodySize=1024

# Disable logging of bodies entirely
maxBodySize=0

# Allow unlimited body lengths. This could take up a lot of space quite rapidly.
# maxBodySize=-1

# If you increase or unbound the maximum body length, you must also change the hibernate mappings
# file.


# The CRS to log bounding boxes in
bboxLogCrs=EPSG:4326

# Bounding Box Log Level: controls when to record bounding boxes.
# 'none': Don't record bounding boxes
# 'no_wfs': Record bounding boxes for WMS and WCS requests, but not WFS. This is the default
# 'full': Record a bounding box for all requests for which one can be produced. WFS is not amenable
# to being logged this way so the boxes produced will be approximate at best.
bboxLogLevel=none

0 comments on commit 2011209

Please sign in to comment.