Skip to main content

ServiceNow Application Insights - SUPPORT

 You need to install the MetricBase plugin first but its within ServiceNow's datacenter and not something that the client can do > speak to the ServiceNow Account Manager

App Insights

You would need MetricBase for the dashboard data which works with:

  • An instance that stores machine-generated data
  • A server that has the MetricBase application and database

https://docs.servicenow.com/bundle/sandiego-servicenow-platform/page/administer/metricbase/concept/metricbase.html 

Without this connection we get a warning message to say: 500 : Internal Server Error: Metricbase unavailable. Contact support if the issue persists The dashboard then doesn't display any data

 update from ServiceNow:

You need to install the MetricBase plugin first but its within our datacenter and not something the client can do

You will need to follow the steps as per the docs site, and install the MetricBase plugin first.
  • When used with Application Insights there is no charge for MB.  Access to MB as part of Application Insights does not entitle the customer to use MB with other applications.
  • MetricBase is a data store that is tied to the instance in the same was as MariaDB.  This means that the data store is tied to the instance and resides in the same datacenter and supports high availability and failover.
The above is from our BU, you can use MetricBase at no additional cost and as you can see the MB DB is treated in exactly the same way as your main DB with the same level of security. I hope that this answers your query - please dont hesitate to let me know if you have any issues.

 

(ServiceNow )

Comments

Popular posts from this blog

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 )){

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 ); }