Skip to main content

Event Management with Dynatrace APM

1)  Find rules that were applied to events or alerts:

https://docs.servicenow.com/bundle/quebec-it-operations-management/page/product/event-management/task/t_EMViewRuleApply.html

Find rules that apply to an event
  1. Navigate to Event Management > All Events, and then click an event number.
  2. Under Related Links, click Check process of event.
  3. Review the information that appears above the Source field, and review all Processing Notes.
Find rules that apply to an alert
  1. Navigate to Event Management > All Alerts, and then click an alert number.
  2. In the processing notes, review information about the applied event rule.

Comments

  1. It is really a helpful blog to find some different source to add my knowledge. Party Decorations Hire Melbourne

    ReplyDelete
  2. You have worked nicely with your insights that makes our work easy. The information you have provided is really factual and significant for us. Keep sharing these types of article, Thank you. Welcome Home Baby Decorations Navan

    ReplyDelete
  3. You are providing good knowledge. It is really helpful and factual information for us and everyone to increase knowledge.about catering cyprus. Continue sharing your data. Thank you.

    ReplyDelete
  4. Nice info, I am very thankful to you for sharing this important knowledge. This information is helpful for everyone. Read more info about Event Planner Nairobi. So please always share this kind of information. Thanks.

    ReplyDelete

Post a Comment

Popular posts from this blog

Get URL Parameter - server side script (portal or classic UI)

Classic UI : var sURL_editparam = gs . action . getGlideURI (). getMap (). get ( ' sysparm_aparameter ' ); if ( sURL_editparam == 'true' ) { gs . addInfoMessage ( 'parameter passed ); } Portal : var sURL_editparam = $sp . getParameter ( " sysparm_aparameter " ); if ( sURL_editparam == 'true' ) { gs . addInfoMessage ( 'parameter passed ); }

ServiceNow check for null or nil or empty (or not)

Haven't tested these all recently within global/local scopes, so feel free to have a play! option 1 use an encoded query embedded in the GlideRecord , e.g.  var grProf = new GlideRecord ( 'x_cls_clear_skye_i_profile' ); grProf . addQuery ( 'status=1^ owner=NULL ' ); grProf . query (); even better use the glideRecord  addNotNullQuery or addNullQuery option 2 JSUtil.nil / notNil (this might be the most powerful. See this link ) example: if ( current . operation () == 'insert' && JSUtil . notNil ( current . parent ) && ! current . work_effort . nil ())  option 3 there might be times when you need to get inside the GlideRecord and perform the check there, for example if the code goes down 2 optional routes depending on null / not null can use gs.nil : var grAppr = new GlideRecord ( 'sysapproval_approver' ); var grUser = new GlideRecord ( 'sys_user' ); if ( grUser . get ( 'sys_id' , current . approver )){