The Request Monitoring feature enables you to configure logging of information related to requests, including metrics collected during request execution. This feature lets you enable logging of internal preset metrics for requests on specific endpoints. You can also log custom request data by calling the provided Request Logging APIs. This logged information may help you evaluate server performance.
This chapter provides an overview of creating endpoint declarations and using them to monitor requests on MarkLogic Server. This chapter includes the following sections:
The Request Monitoring feature enables you to configure logging of information request-related information, including metrics collected during request execution. You can switch on logging of internal preset metrics for requests on specific endpoints, or you can choose to log additional custom request data by calling the request logging APIs. The custom request data might contain a query plan, traces, or whatever information you want to collect and log for a request. This logged information may help you spot offending requests and evaluate request history.
You can trigger request logging for an App Server through one or more of the following options:
To switch on monitoring for an endpoint, you must add a monitoring
section to the App Server Endpoint Declaration file and specify which metrics will be logged. Request monitoring is switched off by default for all metrics.
XDBC Server enables XCC and XDBC applications to communicate with MarkLogic Server. You can configure request monitoring for XDBC requests for specific endpoints and globally for the XDBC Server. There are two types of XDBC requests where request monitoring are enabled:
You can enable request monitoring at both the endpoint level and at the server level for XDBC invoke request. For a specific endpoint, you must add a monitoring
section to the XDBC Server Endpoint Declaration file and specify which metrics will be logged. To configure monitoring on a global level, you must add a default.api
file in the modules root directory for the XDBC Server. For the Task Server, as there is no port number, the output request log file will be logged into a new type of log file called TaskServer_RequestLog.txt
For XDBC eval requests, request monitoring is only available at the server level, as there are no real endpoints. To seperate the monitoring configuration between the invoke and eval request, and to add more control over the monitoring of the eval request, you can add an eval.api
file to the module root in addition to the default.api
file. The eval.api
file has the same format as the default.api
file, which contains only a monitoring section, but the settings in eval.api
override those in default.api
.
The Task Server processes request that has been spawned, such as from xdmp:spawn()
or from a post-commit trigger action. Since each task is handled as a module, you can configure request monitoring for both endpoint level and server level. To configure request monitoring for a specific endpoint, add a monitoring
section to the Task Server Endpoint Declaration file (*.api
) and specify which metrics are to be logged. For monitoring on a global level, add a monitoring
section to the default.api
file in the modules root directory for the Task Server. The configuration in a specific endpoint declaration file overrides the settings in the global default.api
.
An Endpoint Declaration is a JSON file with the extension .api
that resides in the module database or file directory of an HTTP server. The App Server uses the declarations in this file to dispatch requests to corresponding main modules. The declarations in this file also determine which requests are to be logged.
The name, parameters, and return value for each endpoint are declared in the *.api
file. The *.api
file contains a JSON data structure with the following properties:
When monitoring a module that is not defined as an endpoint, none of the properties defined in the preceding table are needed
The following is a list of meters that can be logged with the parameters that control them:
The following parameters may be included in a *.api
file:
To control the number of meters that are logged, you can put the following constraints on meters:
Operator | Description |
---|---|
lt |
Less than |
gt |
Greater than |
le |
Less than or equal to |
ge |
Greater than or equal to |
The declaration format of a constraint is:
meter_name: {
"operator":value,
"operator":value, ...}
"constraints": { "tripleCacheHits" : { "ge":1 } }
In this example, tripleCacheHits
is logged only if the the value of tripleCacheHits
is >= 1.
Meters with zero or empty values are not normally logged. This is done to minimize the size of the Request Log file. To log a zero or empty value, use the following code:
"constraints": { "meter_name" : { "ge":0 } }
The default constraint value on any meter is:
gt:0
You can add thresholds to specify that a request is logged only when the threshold conditions are satisfied. To declare a threshold, create a thresholds
section in your *.api
file as follows:
{ "monitoring":{ "thresholds" : { "elapsedTime": { "gt": 1.0 } } general: enabled: true } } |
The following operators are allowed in thresholds:
Operator | Description |
---|---|
lt |
Less than |
gt |
Greater than |
le |
Less than or equal to |
ge |
Greater than or equal to |
To disable threshold checks on custom meters so the meters can always be logged, set the boolean flag excludeCustom
to true in the thresholds
section, as follows:
{ "monitoring":{ "thresholds" : { "excludeCustom": true, "elapsedTime": { "gt": 1.0 } } general: enabled: true } } |
In the following example, the general
meters for the request are logged only when the total runtime of the request is greater than one second:
{ "monitoring":{ "thresholds" : { "elapsedTime": { "gt": 1.0 } } "general" : { "enabled": true } } } |
Request monitoring is enabled by default on the following default MarkLogic application servers:
If request monitoring is not already enabled, you can enable request monitoring by calling any server-side JavaScript (*.sjs
) or XQuery (*.xqy
) functions in files that reside in the modules directory as declared on the HTTP server via the Admin interface, and you can create other *.api
files in the same directory or, if using the file system, in the same subdirectory as the JavaScript or XQuery file being called. For more information on configuring HTTP servers and the modules directory, see the HTTP Servers chapter in the Administrator's Guide.
The following example enables request monitoring:
{ "monitoring":{ "general":{ "enabled":true }, "custom":true } } |
The following example logs tripleCacheHits
if the the value of tripleCacheHits
is >= 0:
"constraints": { "tripleCacheHits" : { "ge":0 } } |
The following code fragment logs up to 10 documents, 10 fragments, and 4 hosts:
"documents": 10, "fragments" : 10, "hosts" : 4 |
The following example is called countdocs.api
. The function getCount
is defined in a file called countdocs.sjs
that resides in the same directory. The general
object under the monitoring
section of the file has enable
and custom
set to true
; this enables request logging.
You can configure request monitoring globally for all requests on an App Server by adding a default.api
file where the modules root is configured for the App Server (either to the modules database or to the file system). The default.api
file only contains a monitoring section.
The following is a sample default.api
file:
{ "monitoring":{ "general": { "enabled": true, "constraints": { "tripleCacheHits" : { "ge":0 } } }, "custom": true, "documents": 10, "fragments" : 10, "hosts" : 5 } } |
When you make a request to an endpoint and do not specify an App Server Endpoint Declaration file, the default.api
file in the module database or file directory is used if it exists. If a module has a *.api
file associated with it, the monitoring settings in the *.api
file for that module are used instead of those in the default.api
file.
If you want to save the default.
api file, use JavaScript:
declareUpdate(); xdmp.documentInsert("/default.api",{ "monitoring":{ "general": { "enabled": true }, "custom": true, "documents": 10, "fragments" : 10, "hosts" : 5 } }); |
The logs for MarkLogic Server containing information about the requests you have chosen to log are stored in the Logs
directory under the MarkLogic Server data directory (typically c:\Program Files\MarkLogic\Data\Logs
on Windows, /var/opt/MarkLogic/Logs
on UNIX-based systems) in the file port_no_RequestLog.txt
. Each RequestLog.txt file will contain the meters from multiple monitored endpoints that:
The collected data is logged in JSON format at the rate of one line per request information. Even if monitoring is completely switched off on an endpoint, calls to xdmp:request-log-put(
key,
value)
during a request will result in data being logged for all the (
key,
value)
pairs that have been stored during the request.
The following is an example of a request log where different meters are logged for two endpoints:
This section describes the procedure to setup and enable request cancelling for an endpoint, a main module, or globally on an App Server or an XDBC Server. Request cancelling is disabled by default for all meters. You can enable request cancelling by adding a limits
section to the monitoring section in the endpoint declaration, as in the following example:
{ "monitoring": { "limits" : { "lockCount" : 100, "readSize" : 1000000 } } } |
The following limits are available:
You can update the limits
configuration while the server is running without having to restart the server.
The Request Monitoring APIs are XQuery and JavaScript functions enable you to log additional information in request logs. The following are the request monitoring functions available:
Whatever is logged with xdmp:request-log-put displays in the log files unless the custom
flag is set to false
. When the custom
flag is set to false
, all custom logging is muted.
For more details about syntax and usage of these functions, see the AppServer functions in the MarkLogic XQuery and XSLT Function Reference and the MarkLogic JavaScript Reference Guide.