Name

global.LDAPListenerDiagnostics

Description

Gathers diagnostic information regarding ldap listener

Script

var LDAPListenerDiagnostics = Class.create();

LDAPListenerDiagnostics.prototype = Object.extendsObject(AbstractAjaxProcessor, {
  process: function () {
  	if (this.getType() == "loadDiagnostics") {
  		var ldap_id = this.getParameter("sysparm_ldap_id");
  		return this.loadDiagnostics(ldap_id);
  	}
  },
  
  loadDiagnostics: function(ldap_id) {
  	var ldapDiag = new GlideLDAPDiagnostics(ldap_id);
  	return ldapDiag.loadDiagnostics();
  },
  
  type: 'LDAPListenerDiagnostics'
});

Sys ID

a71db05f8f30110036bf21ca47e79a43

Offical Documentation

Official Docs: