
admin.taskserverGetQueueSize( config as element(configuration), group-id as (Number|String) ) as Number
This function returns the number queue size configured on the task server for the specified group.
  
  const admin = require('/MarkLogic/admin.xqy');
  const config = admin.getConfiguration()
  const groupId = admin.groupGetId(config, "Default")
  admin.taskserverGetQueueSize(config, groupId)
   //returns the queue size configured on the task server 
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.