moleculerjs/moleculer - v0.14.6

moleculerjs/moleculer - v0.14.6

Moleculer

New NewRelic zipkin tracing exporter

Thanks for @jalerg, there is a NewRelic tracing exporter. PR #713

// moleculer.config.js
{
tracing: {
enabled: true,
events: true,
exporter: [
{
type: 'NewRelic',
options: {
// NewRelic Insert Key
insertKey: process.env.NEW_RELIC_INSERT_KEY,
// Sending time interval in seconds.
interval: 5,
// Additional payload options.
payloadOptions: {
// Set `debug` property in payload.
debug: false,
// Set `shared` property in payload.
shared: false,
},
// Default tags. They will be added into all span tags.
defaultTags: null,
},
},
],
},
}

Other changes

  • fix stream chunking issue. PR #712

  • fix INFO packet sending issue after reconnecting

  • safely handling disconnected state for transporters (heartbeat queuing issue). PR #715

  • fix orphan response issue in case of streaming with disabled balancer. #709

  • update dependencies, audit fix

Report Page