Sha256: 0deef97b851fe27b1acd7771d10f5a6b41951f97cf5ca4bd08cbe5c3bf91c289
Contents?: true
Size: 1.33 KB
Versions: 28
Compression:
Stored size: 1.33 KB
Contents
<table> <tr> <th>@timeseries</th> <td>Is the main collection of data retrieved from Graphite. The form is a json array of arrays of objects.</td> </tr> <tr> <th>@a,@b,@c,...</th> <td>Are convenience variables extracted from @timeline, by position. @a is the first entry, @b the second and so on. Note: These are not predictable when using wildcard metrics.</td> </tr> <tr> <th>with_metrics { |a,b| .. }</th> <td>Iterates over each metric in the timeseries aligning the timestamp for each metric across iterations. Block args are the variables you want to map to the metrics by position.</td> </tr> <tr> <th>graph_value[label, timestamp, value]</th> <td>Plots an x/y for the given label on the graph.</td> </tr> <tr> <th>Array.mean</th> <td>Calculates the mean of the Array of Numeric. e.g. @a.values.mean</td> </tr> <tr> <th>Array.median</th> <td>Calculates the median of the Array of Numeric. e.g. @a.values.median</td> </tr> <tr> <th>Array.sum</th> <td>Calculates the sum of the Array of Numeric. e.g. @a.values.sum</td> </tr> <tr> <th>Array.percentile(n)</th> <td>Calculates the n-th percentile of the Array of Numeric. e.g. @a.values.percentile(90)</td> </tr> </table>
Version data entries
28 entries across 23 versions & 1 rubygems