admin:cluster-set-opsdirector-log-level

admin:cluster-set-opsdirector-log-level(
   $config as element(configuration),
   $value as xs:string
) as element(configuration)

Summary

This function sets Ops Director log level of the managed cluster.

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.
value The logging level: "emergency", "alert", "critical", "error", "warning", "notice", etc.

Example



xquery version "1.0-ml"; 
 
import module namespace admin = "http://marklogic.com/xdmp/admin" 
      at "/MarkLogic/admin.xqy";

let $config := admin:get-configuration()
let $newcfg := admin:cluster-set-opsdirector-log-level($config, "error")
return
  $newcfg
    
Powered by MarkLogic Server | Terms of Use | Privacy Policy