Loading TOC...

admin.clusterSetOpsdirectorMetering

admin.clusterSetOpsdirectorMetering(
   config as element(configuration),
   value as 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

 
const admin = require('/MarkLogic/admin.xqy');
 
var config = admin.getConfiguration()
var newcfg = admin.clusterSetOpsdirectorMetering(config, "hour")
  newcfg

    

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