Troubleshooting Metrics intermittently not workingIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms A metric definition setup on a task record was not triggered intermittently, for example lets consider a metric definition for field "Assignment Group" on incident table. When there is any change on the incident record with the "Assignment Group" field, the defined metric definition, should create a metric record as shown in the below screenshot. However, this was not happening intermittently during specific scenario, i.e when a work-flow sets the "Assignment Group" field after record creation, this article will detail on this specific scenario. Release Any supported release. Cause The metric events are triggered by the out of the box provided business rule "metrics events" ("uri=sys_script.do?sys_id=35f9861dc0a808ae00ecf631cc51888c"). Ideally, the metrics event business rule suppose to run after executing the "start workflow" out of the box business rule. So that, if there is any work flow activity which does update the record for which metric definition exists, system will trigger its metric definition. However, both the business rules has the same execution order of "10000". Thus task record gets updated by the work flow in couple of seconds from the creation time. Due to these reasons, there is a possibility that "metrics event" business rule execution might get missed and hence it will not create the metrics record. for that specific record update coming from work-flow. Resolution Set the order field value of "metrics event" business rule greater than "start workflow" business rule. Additional Information metrics Business Rules Workflow