gpt4 book ai didi

node.js - 从 Google Logging API 解码 protoPayload

转载 作者:搜寻专家 更新时间:2023-10-31 23:23:12 24 4
gpt4 key购买 nike

我想阅读 BigQuery 日志条目以进行一些分析。但我似乎无法对 protoPayload.value 进行解码。我试过弄乱 google-proto-filesprotocol-buffers 包,但我想我在这里遗漏了一些非常明显的东西......

const Logging = require('@google-cloud/logging');
const protobuf = require('protocol-buffers');
const protoFiles = require('google-proto-files');


const protoPath = './node_modules/google-proto-files/google/cloud/audit/audit_log.proto';
const root = protoFiles.loadSync(protoPath)
const AuditLog = root.lookup('google.cloud.audit.AuditLog');

const client = new Logging.v2.LoggingServiceV2Client({ projectId });
client.listLogEntriesStream({resourceNames, filter, pageSize})
.on('data', entry => {
console.log(entry); // Entry is of type AuditLog
console.log(AuditLog.decode(entry.protoPayload.value.buffer));
process.exit(1)
})
.on('error', e => console.error(e))
.on('end', () => console.info('END RECEIVED', arguments))

我确实收到了带有 protoPayloads 的消息,但是我在尝试解码消息时收到的错误是这样的:

Error: no such Type or Enum 'google.rpc.Status' in Type .google.cloud.audit.AuditLog

实际问题:解码 LogEntry 中的 protoPayload 字段的正确方法是什么?

谢谢!

最佳答案

由于 entry.protoPayload.value 是一个序列化的原型(prototype)(一条 AuditLog 消息),您应该能够使用记录在 https://developers.google.com/protocol-buffers/docs/reference/javascript-generated#message 中的 deserializeBinary() 方法来处理它‘protocol-buffers’ npm 似乎不是来自 Google,并且 proto 编译器将生成用于反序列化的代码。

我认为您不需要,但您也可以尝试显式加载“google/rpc/status.proto”定义。

关于node.js - 从 Google Logging API 解码 protoPayload,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50935252/

24 4 0
文章推荐: javascript - 修改文本长度 OnClick
文章推荐: PHP:文件到数组检查和替换
文章推荐: html - 如何在 flexbox 容器中放置两个
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com