v0.5.0
This introduces New Relic metric reporting.
The following metrics will be reported:
Custom/WebReplicas/service
Custom/WorkerReplicas/service
Custom/WebMetric/service
Custom/WorkerMetric/service
Custom/Scaltainer/ticks
Where service
is a placeholder for each service defined in your scaltainer.yaml
.
To enable New Relic reporting, append --enable-newrelic-reporting
to the command line.
Must set NEW_RELIC_LICENSE_KEY
and NEW_RELIC_APP_NAME
to get it to work.
Here is an example NRQL to query the metrics:
FROM Metric
SELECT max(newrelic.timeslice.value)
WHERE appName = 'YOUR APP NAME'
WITH METRIC_FORMAT 'Custom/WebReplicas/{web}'
FACET web
SINCE 1 day ago TIMESERIES MAX