github moleculerjs/moleculer v0.14.6

latest releases: v0.14.33, v0.14.32, v0.14.31...
4 years ago

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

Don't miss a new moleculer release

NewReleases is sending notifications on new releases.