com.volcengine.model.tls.PutLogRequest.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
syntax = "proto3";
package pb;
option go_package = "./;pb";
message LogContent
{
string Key = 1;
string Value = 2;
}
message Log
{
int64 Time = 1;// UNIX Time Format
repeated LogContent Contents = 2;
}
message LogTag
{
string Key = 1;
string Value = 2;
}
message LogGroup
{
repeated Log Logs = 1;
string Source = 2;
repeated LogTag LogTags = 3;
string FileName = 4;
string ContextFlow = 5; //该字段暂无效用
}
message LogGroupList
{
repeated LogGroup LogGroups = 1;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy