254 lines
8.8 KiB
Go
254 lines
8.8 KiB
Go
// Code generated by protoc-gen-go.
|
|
// source: silence/silencepb/silence.proto
|
|
// DO NOT EDIT!
|
|
|
|
/*
|
|
Package silencepb is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
silence/silencepb/silence.proto
|
|
|
|
It has these top-level messages:
|
|
Matcher
|
|
Comment
|
|
Silence
|
|
MeshSilence
|
|
*/
|
|
package silencepb
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
import google_protobuf "github.com/golang/protobuf/ptypes/timestamp"
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
// Type specifies how the given name and pattern are matched
|
|
// against a label set.
|
|
type Matcher_Type int32
|
|
|
|
const (
|
|
Matcher_EQUAL Matcher_Type = 0
|
|
Matcher_REGEXP Matcher_Type = 1
|
|
)
|
|
|
|
var Matcher_Type_name = map[int32]string{
|
|
0: "EQUAL",
|
|
1: "REGEXP",
|
|
}
|
|
var Matcher_Type_value = map[string]int32{
|
|
"EQUAL": 0,
|
|
"REGEXP": 1,
|
|
}
|
|
|
|
func (x Matcher_Type) String() string {
|
|
return proto.EnumName(Matcher_Type_name, int32(x))
|
|
}
|
|
func (Matcher_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0, 0} }
|
|
|
|
// Matcher specifies a rule, which can match or set of labels or not.
|
|
type Matcher struct {
|
|
Type Matcher_Type `protobuf:"varint,1,opt,name=type,enum=silencepb.Matcher_Type" json:"type,omitempty"`
|
|
// The label name in a label set to against which the matcher
|
|
// checks the pattern.
|
|
Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
|
|
// The pattern being checked according to the matcher's type.
|
|
Pattern string `protobuf:"bytes,3,opt,name=pattern" json:"pattern,omitempty"`
|
|
}
|
|
|
|
func (m *Matcher) Reset() { *m = Matcher{} }
|
|
func (m *Matcher) String() string { return proto.CompactTextString(m) }
|
|
func (*Matcher) ProtoMessage() {}
|
|
func (*Matcher) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
func (m *Matcher) GetType() Matcher_Type {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return Matcher_EQUAL
|
|
}
|
|
|
|
func (m *Matcher) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Matcher) GetPattern() string {
|
|
if m != nil {
|
|
return m.Pattern
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// A comment can be attached to a silence.
|
|
type Comment struct {
|
|
Author string `protobuf:"bytes,1,opt,name=author" json:"author,omitempty"`
|
|
Comment string `protobuf:"bytes,2,opt,name=comment" json:"comment,omitempty"`
|
|
Timestamp *google_protobuf.Timestamp `protobuf:"bytes,3,opt,name=timestamp" json:"timestamp,omitempty"`
|
|
}
|
|
|
|
func (m *Comment) Reset() { *m = Comment{} }
|
|
func (m *Comment) String() string { return proto.CompactTextString(m) }
|
|
func (*Comment) ProtoMessage() {}
|
|
func (*Comment) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
func (m *Comment) GetAuthor() string {
|
|
if m != nil {
|
|
return m.Author
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Comment) GetComment() string {
|
|
if m != nil {
|
|
return m.Comment
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Comment) GetTimestamp() *google_protobuf.Timestamp {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Silence specifies an object that ignores alerts based
|
|
// on a set of matchers during a given time frame.
|
|
type Silence struct {
|
|
// A globally unique identifier.
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
// A set of matchers all of which have to be true for a silence
|
|
// to affect a given label set.
|
|
Matchers []*Matcher `protobuf:"bytes,2,rep,name=matchers" json:"matchers,omitempty"`
|
|
// The time range during which the silence is active.
|
|
StartsAt *google_protobuf.Timestamp `protobuf:"bytes,3,opt,name=starts_at,json=startsAt" json:"starts_at,omitempty"`
|
|
EndsAt *google_protobuf.Timestamp `protobuf:"bytes,4,opt,name=ends_at,json=endsAt" json:"ends_at,omitempty"`
|
|
// The last motification made to the silence.
|
|
UpdatedAt *google_protobuf.Timestamp `protobuf:"bytes,5,opt,name=updated_at,json=updatedAt" json:"updated_at,omitempty"`
|
|
// A set of comments made on the silence.
|
|
Comments []*Comment `protobuf:"bytes,7,rep,name=comments" json:"comments,omitempty"`
|
|
}
|
|
|
|
func (m *Silence) Reset() { *m = Silence{} }
|
|
func (m *Silence) String() string { return proto.CompactTextString(m) }
|
|
func (*Silence) ProtoMessage() {}
|
|
func (*Silence) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
func (m *Silence) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Silence) GetMatchers() []*Matcher {
|
|
if m != nil {
|
|
return m.Matchers
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Silence) GetStartsAt() *google_protobuf.Timestamp {
|
|
if m != nil {
|
|
return m.StartsAt
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Silence) GetEndsAt() *google_protobuf.Timestamp {
|
|
if m != nil {
|
|
return m.EndsAt
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Silence) GetUpdatedAt() *google_protobuf.Timestamp {
|
|
if m != nil {
|
|
return m.UpdatedAt
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Silence) GetComments() []*Comment {
|
|
if m != nil {
|
|
return m.Comments
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// MeshSilence wraps a regular silence with an expiration timestamp
|
|
// after which the silence may be garbage collected.
|
|
type MeshSilence struct {
|
|
Silence *Silence `protobuf:"bytes,1,opt,name=silence" json:"silence,omitempty"`
|
|
ExpiresAt *google_protobuf.Timestamp `protobuf:"bytes,2,opt,name=expires_at,json=expiresAt" json:"expires_at,omitempty"`
|
|
}
|
|
|
|
func (m *MeshSilence) Reset() { *m = MeshSilence{} }
|
|
func (m *MeshSilence) String() string { return proto.CompactTextString(m) }
|
|
func (*MeshSilence) ProtoMessage() {}
|
|
func (*MeshSilence) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
func (m *MeshSilence) GetSilence() *Silence {
|
|
if m != nil {
|
|
return m.Silence
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *MeshSilence) GetExpiresAt() *google_protobuf.Timestamp {
|
|
if m != nil {
|
|
return m.ExpiresAt
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Matcher)(nil), "silencepb.Matcher")
|
|
proto.RegisterType((*Comment)(nil), "silencepb.Comment")
|
|
proto.RegisterType((*Silence)(nil), "silencepb.Silence")
|
|
proto.RegisterType((*MeshSilence)(nil), "silencepb.MeshSilence")
|
|
proto.RegisterEnum("silencepb.Matcher_Type", Matcher_Type_name, Matcher_Type_value)
|
|
}
|
|
|
|
func init() { proto.RegisterFile("silence/silencepb/silence.proto", fileDescriptor0) }
|
|
|
|
var fileDescriptor0 = []byte{
|
|
// 376 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0xc1, 0x6a, 0xdb, 0x40,
|
|
0x10, 0x40, 0x2b, 0x59, 0x96, 0xac, 0x31, 0x18, 0xb3, 0x87, 0x56, 0x18, 0x8a, 0x8d, 0x4e, 0x86,
|
|
0x96, 0x35, 0xd8, 0x87, 0xb6, 0x47, 0x51, 0x4c, 0x2f, 0x35, 0xb4, 0x1b, 0x07, 0x72, 0x0b, 0x6b,
|
|
0x6b, 0x62, 0x0b, 0x2c, 0x69, 0x91, 0x46, 0x21, 0x3e, 0xe7, 0x4f, 0xf2, 0xa5, 0x41, 0xab, 0x95,
|
|
0x42, 0xf0, 0xc1, 0x39, 0x69, 0x47, 0xf3, 0x66, 0x67, 0xde, 0x2c, 0x4c, 0xcb, 0xe4, 0x84, 0xd9,
|
|
0x1e, 0x17, 0xe6, 0xab, 0x76, 0xed, 0x89, 0xab, 0x22, 0xa7, 0x9c, 0xf9, 0x5d, 0x62, 0x32, 0x3d,
|
|
0xe4, 0xf9, 0xe1, 0x84, 0x0b, 0x9d, 0xd8, 0x55, 0x0f, 0x0b, 0x4a, 0x52, 0x2c, 0x49, 0xa6, 0xaa,
|
|
0x61, 0xc3, 0x67, 0x0b, 0xbc, 0x8d, 0xa4, 0xfd, 0x11, 0x0b, 0xf6, 0x0d, 0x1c, 0x3a, 0x2b, 0x0c,
|
|
0xac, 0x99, 0x35, 0x1f, 0x2d, 0xbf, 0xf0, 0xee, 0x1a, 0x6e, 0x08, 0xbe, 0x3d, 0x2b, 0x14, 0x1a,
|
|
0x62, 0x0c, 0x9c, 0x4c, 0xa6, 0x18, 0xd8, 0x33, 0x6b, 0xee, 0x0b, 0x7d, 0x66, 0x01, 0x78, 0x4a,
|
|
0x12, 0x61, 0x91, 0x05, 0x3d, 0xfd, 0xbb, 0x0d, 0xc3, 0xaf, 0xe0, 0xd4, 0xb5, 0xcc, 0x87, 0xfe,
|
|
0xfa, 0xff, 0x6d, 0xf4, 0x77, 0xfc, 0x89, 0x01, 0xb8, 0x62, 0xfd, 0x67, 0x7d, 0xf7, 0x6f, 0x6c,
|
|
0x85, 0x15, 0x78, 0xbf, 0xf3, 0x34, 0xc5, 0x8c, 0xd8, 0x67, 0x70, 0x65, 0x45, 0xc7, 0xbc, 0xd0,
|
|
0x63, 0xf8, 0xc2, 0x44, 0xf5, 0xdd, 0xfb, 0x06, 0x31, 0x2d, 0xdb, 0x90, 0xfd, 0x04, 0xbf, 0xb3,
|
|
0xd2, 0x7d, 0x87, 0xcb, 0x09, 0x6f, 0xbc, 0x79, 0xeb, 0xcd, 0xb7, 0x2d, 0x21, 0xde, 0xe0, 0xf0,
|
|
0xc5, 0x06, 0xef, 0xa6, 0x91, 0x64, 0x23, 0xb0, 0x93, 0xd8, 0xf4, 0xb4, 0x93, 0x98, 0x71, 0x18,
|
|
0xa4, 0x8d, 0x75, 0x19, 0xd8, 0xb3, 0xde, 0x7c, 0xb8, 0x64, 0x97, 0x0b, 0x11, 0x1d, 0xc3, 0x7e,
|
|
0x80, 0x5f, 0x92, 0x2c, 0xa8, 0xbc, 0x97, 0xf4, 0x81, 0x29, 0x06, 0x0d, 0x1c, 0x11, 0x5b, 0x81,
|
|
0x87, 0x59, 0xac, 0xcb, 0x9c, 0xab, 0x65, 0x6e, 0x8d, 0x46, 0xc4, 0x7e, 0x01, 0x54, 0x2a, 0x96,
|
|
0x84, 0x71, 0x5d, 0xd7, 0xbf, 0x2e, 0x6d, 0xe8, 0x88, 0x6a, 0x31, 0xb3, 0xb9, 0x32, 0xf0, 0x2e,
|
|
0xc4, 0xcc, 0x33, 0x88, 0x8e, 0x09, 0x1f, 0x61, 0xb8, 0xc1, 0xf2, 0xd8, 0xee, 0xe9, 0x3b, 0x78,
|
|
0x86, 0xd6, 0xcb, 0x7a, 0x5f, 0x6d, 0x20, 0xd1, 0x22, 0xf5, 0x9c, 0xf8, 0xa4, 0x92, 0x02, 0xb5,
|
|
0x9f, 0x7d, 0x7d, 0x4e, 0x43, 0x47, 0xb4, 0x73, 0x75, 0x7a, 0xf5, 0x1a, 0x00, 0x00, 0xff, 0xff,
|
|
0x7d, 0xe9, 0xc3, 0x5f, 0xef, 0x02, 0x00, 0x00,
|
|
}
|