Loading TOC...

admin:cluster-set-opsdirector-metering

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

Summary

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".

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-metering($config, "hour")
return
  $newcfg
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.