mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-05-24 03:24:14 +00:00
This makes it possible for external services to subscribe (through Redis) for realtime events. E.g. a create, update or delete device event could trigger an external synchronization.
24 lines
498 B
Protocol Buffer
Vendored
24 lines
498 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
|
|
package api;
|
|
|
|
option go_package = "github.com/chirpstack/chirpstack/api/go/v4/api";
|
|
option java_package = "io.chirpstack.api";
|
|
option java_multiple_files = true;
|
|
option java_outer_classname = "RequestLog";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
import "common/common.proto";
|
|
import "gw/gw.proto";
|
|
|
|
message RequestLog {
|
|
// API service name.
|
|
string service = 1;
|
|
|
|
// API method name.
|
|
string method = 2;
|
|
|
|
// Metadata.
|
|
map<string, string> metadata = 3;
|
|
}
|