forked from logrhythm/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request logrhythm#83 from Logrhythm/master
update proto buffers from master
- Loading branch information
Showing
5 changed files
with
48 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package protoMsg; | ||
|
||
option java_package = "com.logrhythm.nm.message"; | ||
option java_outer_classname = "DriveInfoMsg"; | ||
|
||
message DrivesInfo { | ||
message DriveInfo { | ||
|
||
message Partition { | ||
optional uint32 number = 1 [default = 0]; | ||
optional uint64 startInB = 2 [default = 0]; | ||
optional uint64 endInB = 3 [default = 0]; | ||
optional uint64 sizeInB = 4 [default = 0]; | ||
optional string type = 5; | ||
optional string fileSystem = 6; | ||
optional string flags = 7; | ||
} | ||
optional string model = 1; | ||
optional string device = 2; | ||
optional uint64 capacityInB = 3 [default = 0]; | ||
repeated Partition partitions = 4; | ||
optional string table = 5; | ||
|
||
} | ||
|
||
repeated DriveInfo drives = 1; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters