
admin:cluster-set-opsdirector-metering( $config as element(configuration), $value as xs:string ) as element(configuration)
This function sets the type of metering data the managed cluster sends to Ops Director.
| Parameters | |
|---|---|
| config | A configuration specification, typically as returned from one of the Admin module functions. | 
| value | The metering type: "disabled", "daily", "hourly", or "raw". | 
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-metering($config, "hour")
return
  $newcfg
    
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.