How to find amount of customisation on a ServiceNow sub prod instance ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-03-2024 09:17 AM
- How to find amount of customisation on a ServiceNow sub prod instance ? Like while loading forms, or saving records etc. Not want to check every table and see the scripts on them, any better way to drill them at a instance level ?
- How to get the total consumption of worker nodes as per the running transactions on the instance ?
The objective is to infer amount of load on memory and workers due to long running jobs/transaction/queries etc ?
When checking slow queries, long running transactions, it does not provide details on the amount of memory they consume and how much they make other jobs wait.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-04-2024 07:43 AM
Great! Which table to report on ? My purpose is to take this report to management and show the amount of customisation done without any regard to OOB

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-04-2024 08:07 AM
The tables are literally mentioned in the solution I shared.
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-03-2024 10:57 PM
Hi @Snehal13 ,
You may use Update Version (sys_update_version) table for your analysis. It persists any change to existing object (table, field, script..etc) and new objects too.
For any existing object, it would have more than one record if it was customized.
New records many have only one entry too. But you may find out the new ones by checking the creation date and any reference between parent object (for example new field added in incident table).
Hope this helps. Mark the answer as correct/helpful based on impact.
Thanks & Regards,
Sumanth Meda
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-04-2024 07:40 AM
can I create a pie chart type report on categorisation on how much is custom scripts, custom tables, scheduled jobs etc