admin:cluster-get-opsdirector-metering

admin:cluster-get-opsdirector-metering(
   $config as element(configuration)
) as xs:string

Summary

This function returns the current 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.

Usage Notes

The return value is the metering type, with possible values "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()
return
  admin:cluster-get-opsdirector-metering($config)
    
Powered by MarkLogic Server | Terms of Use | Privacy Policy