2

我们如何在 NodeJS 中使用 google-cloud/logging 包传递 protopayload 联合标签?

到目前为止,我能够在日志中写入 textPayload 和 jsonPayload。

尝试使用 google-protobuf 和 protobufjs 创建协议缓冲区,甚至尝试了协议缓冲区包,但是当我执行 log.entry 和 log.write 时,在日志中看不到有效负载。

这是写日志的代码
//writelogs.js

function writeLogEntryAdvanced (logName, options, callback) {
  var logging = Logging();
  var log = logging.log(logName);
var protobuf = require('protocol-buffers');
var fs = require('file-system');
// pass a proto file as a buffer/string or pass a parsed protobuf-schema object
var messages = protobuf(fs.readFileSync('test.proto'));
var buf = messages.Test.encode({
  num: 42,
  payload: 'hello world'
});
console.log(buf);
var entry = log.entry({ resource: options.resource }, buf);
  // See https://googlecloudplatform.github.io/google-cloud-node/#/docs/logging/latest/logging/log?method=write
  log.write(entry, function (err, apiResponse) {
    if (err) {
      return callback(err);
    }
    console.log('Wrote entry to log: %s', logName);
    return callback(null, apiResponse);
});
}

//test.proto

message Test {
  required float num  = 1;
  required string payload = 2;
}

编写代码是从 github 的 nodejs-doc-samples 复制的,我自己对 protopayload 的更改很少。示例日志写入仅适用于 jsonPayload 和 textPayload。

4

2 回答 2

4

不允许对 Logging API 中的 protoPayload 字段使用任意协议缓冲区。该领域只允许使用少数具有众所周知的描述符的 Google Cloud Platform 服务。

对于任意结构化日志记录,您应该使用 jsonPayload 字段。

有关这些字段的更多信息记录在:https ://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry 。

于 2018-01-29T03:44:24.423 回答
2

为了完整起见,我发布了我的最后一条评论作为答案。

使用Stackdriver Logs Viewer时,请确保您查看的“logName”和“resource.type”是您写入日志的正确位置。

还要确保您的“test.proto”遵循Google 协议缓冲区语言指南。如果您看到的是日志,但没有看到有效负载,则问题很可能是由于您的编码器造成的。您可以尝试使用google-protobuf作为 'protocol-buffers' 的替代品。

于 2018-01-26T19:43:13.973 回答