v0.5.0
This introduces New Relic metric reporting.
The following metrics will be reported:
Custom/WebReplicas/serviceCustom/WorkerReplicas/serviceCustom/WebMetric/serviceCustom/WorkerMetric/serviceCustom/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