celp-sdk 0.1.13

This package has been created to provide a rust SDK containing common functionality
// CELP System Event protobufs
syntax = "proto3";
package celp.protobuf;
import "google/protobuf/any.proto";
option optimize_for = SPEED;

//
// System Event message
//

message SystemEvent {
    enum Severity {
        SEVERITY_INFO = 0;
        SEVERITY_WARNING = 1;
        SEVERITY_ERROR = 2;
        SEVERITY_FATAL = 3;
    };

    // The source of the event
    string source = 1;

    // The severity of the event
    Severity severity = 3;

    // The details associated with the event, see below
    google.protobuf.Any details = 7;
}