2.3.0, you can enable or disable minutely probes entirely with the enableMinutelyProbes config option.
Creating probes
If you need to track custom metrics from your app, you can add your own probe(s). To register a probe, you must call theprobes.register() method with two arguments: a probe name, and an anonymous function to be called once every minute.
Overriding default probes
By default,@appsignal/nodejs configures a minutely probe which keeps track of Node.js V8 heap statistics. To disable this probe, use probes.unregister():
2.3.0, probes.unregister() is not available. In versions before 2.3.0, you can use the enableMinutelyProbes config option to disable the default probe.