If you want to execute an analytics search repeatedly to monitor its value, you can create a metric from the search. The search will execute once per minute and report the results as a metric. You can create alerts on the metric in the usual way using Health Rules to trigger Policies and Actions. The analytics metric list is searchable.

You can create metrics for all Analytics event types - Browser, Mobile, Transaction, Log, and Custom.

Although the metrics calculated by scheduled queries may have decimal point precision, we only save and report whole numbers.


You can create a metric from an analytics search for the functions shown in the following table. For a discussion of metric rollup types see Metric Data Resolution over Time.

FunctionMetric Rollup TypeExample
count(* | field_name)sumSELECT count( activeMacUsers) FROM dummyTransactions

distinctcount(field_name)

averageSELECT distinctcount(activeMacUsers) FROM dummyTransactions

sum(numeric_field_name)

sumSELECT sum(responseTime)where userExperience = "NORMAL" FROM transactions

avg(numeric_field_name)

average

SELECT avg(responseTime) FROM transactions
min(numeric_field_name)

average

SELECT min(responseTime) FROM transactions

max(numeric_field_name)

average

SELECT max(responseTime) FROM transactions
(exp1)/(exp2)average

SELECT (count(activeMacUsers)) / (avg(activeWindowsUsers)) FROM dummyTransactions
SELECT (avg(responseTime)*2)/((avg(segments.transactionTime)+3)/2) FROM transactions
SELECT (sum(responseTime)*2)/(filter(sum(responseTime), where userExperience = "NORMAL") + 0.5) FROM transactions

Each side of the expression must be enclosed in parenthesis.

Permissions

To create metrics from analytics searches, you need the following permissions:

  • Manage Metrics permission 
  • View access to the default Analytics Application

For more information, see:

Creating an Analytics Metric

  1. Working in the Analytics > Search editor, set the search criteria to select the appropriate data.
  2. Click Actions > Create Metric in the search action toolbar.
  3. In the pop-up window, give your metric a name and a description.
    The name determines how the metric appears in the Metrics screen and the Metric Browser. Keep in mind:
    • Metrics are truncated to whole values. So values less than one are truncated to zero. To work around this, you can multiply a numeric_field_name by a factor of 10, 100, 1000 and so on, depending on the level of decimal accuracy you need. We recommend that you add this factor into the metric display name so other users can understand what the metric represents, for example, Display Name = Metric (Factor 1000). In cases where the value is a percentage, and you convert by multiplying by 100, you probably don't need to put the factor in the metric name because it would be implicit (Metric %). 
    • Math operations are only supported inside the aggregation function. For example, count(numeric_field_name * 10) from transactions.

Metric Timestamps

Timestamp metrics always aggregate events from the current minute because metrics are created for events published in the last minute. 

If you have specified a value for the eventTimestamp field, the timestamp value in the new metric uses an aggregation of events from the pickupTimestamp field. 

For example, you set an eventTimestamp for an event on a previous day. You then create a metric for the event today. The metric does not use your explicit eventTimestamp because it is no longer from the current minute. The metric aggregates events using pickupTimestamp. This ensures that the metric timestamp is based on the current minute because pickupTimestamp cannot be explicity changed.

Learn more about timestamps in Analytics Events API.

Monitoring Analytics Metrics

For performance reasons, the scheduled queries used in analytics metrics can be disabled as follows:

  • Queries are disabled if calling the Events Service results in any errors for ten consecutive times.
  • Queries are not disabled if the Events Service is not reachable from the controller, such as during maintenance and upgrade windows.
  • When the Controller is restarted, the queries which were previously disabled by the system due to consecutive failures are re-enabled.
  • User-disabled queries remain disabled even after the system is restarted.
To monitor the metric:
  1. Click Metrics in the left navigation bar. 
    The Metrics list appears. 
  2. Search, edit, enable, disable, or delete metrics from here. 
    You can edit only the description of the selected metric.

    To enable or disable metrics in a batch, select the corresponding rows in the grid and click the Enable or Disable button in the toolbar. Use Shift+ click or Command + click rows to select multiple rows.

    If you see a status that says "Disabled due to repetitive failures", you can re-enable it by clicking Enable.
  3. To see the metric in the Metric Browser, click the Metric Browser. For more details, see the section "Metric Data Point Details" in Metric Browser.