![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@emartech/aggregate-metric-logger
Advanced tools
Aggregate metrics in memory and log them every minute
Set METRIC_LOGGER_ENABLED
env variable to true
for aggregate-metric-logger to
start collecting and logging measurements.
To change the default aggregate-metric-logger
namespace used for logs, set
METRIC_LOGGER_NAMESPACE
to a custom value.
(currently only the metricLogger.count
and metricLogger.measureGcp
methods send metrics to GCP)
Set METRIC_LOGGER_ENABLED
just us for LaaS based metrics.
Set MONITORING_PROJECT_ID
and GCP_CREDENTIALS
env variables. HOSTNAME
env variable also has to be
set, but for a pod running on kubernetes this should already be set.
Add Monitoring Metrics Writer
Role to the service account in the GCP project.
The package exposes similar logging methods as the @emartech/json-logger
package:
trace
, debug
, info
, warn
, error
and fatal
.
When these are called, it will aggregate logs with the same parameters withing a minute, add
an extra count
property to the logs and log them at the end of the minute with
@emartech/json-logger
.
const metricLogger = require('@emartech/aggregate-metric-logger')
metricLogger.warn('etwas-went-wrong', { customer_id: 11 });
metricLogger.warn('etwas-went-wrong', { customer_id: 11 });
// will aggregate these to a single warning log
If you want aggregate measurements about something you need to simply call the measure
method
for each value:
const metricLogger = require('@emartech/aggregate-metric-logger')
metricLogger.measure('thing-to-measure', 14)
metricLogger.measure('thing-to-measure', 20)
Every minute metric logger will log min
, max
, sum
, count
and average
aggregated metrics
for each measured tags. (Uses @emartech/json-logger
behind the scenes for logging).
For duration measurements, there are two convenient methods: start
, and stop
;
You start the measurement with start
, the counted value for aggregation will be the duration
between this start
and the matching stop
call;
function exampleIOHeavyFunction() {
const measurement = metricLogger.start('tag-for-the-measuement');
const result = db.findItems();
metricLogger.stop(measurement);
return result;
}
If you want to group by additional parameters inside a tag, you can pass down these extra
params in an object to measure
and start
as the last optional argument:
metricLogger.measure('thing-to-count', 14, { customer_id: 12 });
const measurement = metricLogger.start(
'tag-for-the-measuement',
{ event_type: 'nyul', account: 3 }
);
A separate log entry will be created for each seen value combinations seen in the extra params and these extra params will be appended to the log entry.
Be very careful when using extra params, and only include information you really need. If you include too many parameters, you could lose the advantage you gain by aggregating your logs with this package.
FAQs
aggregate metrics in memory for logging
The npm package @emartech/aggregate-metric-logger receives a total of 128 weekly downloads. As such, @emartech/aggregate-metric-logger popularity was classified as not popular.
We found that @emartech/aggregate-metric-logger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.