Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions proto/psh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ message ExportDataReq {
FileData file = 1;
LineProtocolData line_protocol = 2;
PerfDataProto perf_data = 3;
ElfSymbol symbol = 4;
}
}

Expand All @@ -74,3 +75,15 @@ message FileData {
message LineProtocolData {
bytes bytes = 1;
}

message ElfSymbol {
string filename = 1;
repeated Symbol symbols = 2;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

增加一个buildid字段,避免同名ELF文件,但是内容不一样。

}

message Symbol {
uint64 index = 1;
string name = 2;
uint64 address = 3;
uint64 size = 4;
}