Skip to content

Commit

Permalink
Specify package name in version string (#335)
Browse files Browse the repository at this point in the history
PR-URL: #335
  • Loading branch information
matthewloring committed Dec 14, 2016
1 parent 8e46d5f commit 60cf051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/trace-writer.js
Expand Up @@ -67,7 +67,7 @@ function TraceWriter(logger, config) {
that.getHostname(function(hostname) {
that.getInstanceId(function(instanceId) {
var labels = {};
labels[traceLabels.AGENT_DATA] = 'node ' + pjson.version;
labels[traceLabels.AGENT_DATA] = 'node ' + pjson.name + ' v' + pjson.version;
labels[traceLabels.GCE_HOSTNAME] = hostname;
if (instanceId) {
labels[traceLabels.GCE_INSTANCE_ID] = instanceId;
Expand Down

0 comments on commit 60cf051

Please sign in to comment.