Syntax
function nrSendSummaryMetric(nr as Object, name as String, interval as Integer, counter as dynamic, m_sum as dynamic, m_min as dynamic, m_max as dynamic, attr = invalid as Object) as Void
Description
Record a summary metric. Used to report pre-aggregated data, or information on aggregated discrete events.
Arguments
Arguments | Description |
---|---|
| New Relic Agent object. |
| Metric name |
| Metric time interval in milliseconds. |
| Metric count. |
| Metric value summation. |
| Metric minimum value. |
| Metric maximum value. |
| (optional) Metric attributes. |
Return
Nothing.
Example
nrSendSummaryMetric(m.nr, "test", 2000, 5, 1000, 100, 200)