mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-13 04:58:09 +00:00
Move deduplication_id in LogEvent to context field.
This commit is contained in:
15
api/proto/integration/integration.proto
vendored
15
api/proto/integration/integration.proto
vendored
@ -191,26 +191,23 @@ message TxAckEvent {
|
||||
|
||||
// LogEvent is the message sent when a device-related log was sent.
|
||||
message LogEvent {
|
||||
// Deduplication ID (UUID).
|
||||
string deduplication_id = 1;
|
||||
|
||||
// Timestamp.
|
||||
google.protobuf.Timestamp time = 2;
|
||||
google.protobuf.Timestamp time = 1;
|
||||
|
||||
// Device info.
|
||||
DeviceInfo device_info = 3;
|
||||
DeviceInfo device_info = 2;
|
||||
|
||||
// Log level.
|
||||
LogLevel level = 4;
|
||||
LogLevel level = 3;
|
||||
|
||||
// Log code.
|
||||
LogCode code = 5;
|
||||
LogCode code = 4;
|
||||
|
||||
// Description message.
|
||||
string description = 6;
|
||||
string description = 5;
|
||||
|
||||
// Context map.
|
||||
map<string, string> context = 7;
|
||||
map<string, string> context = 6;
|
||||
}
|
||||
|
||||
// StatusEvent is the message sent when a device-status mac-command was sent
|
||||
|
Reference in New Issue
Block a user