212 lines
8.3 KiB
Go
212 lines
8.3 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} }
|
|
|
|
// 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) 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) 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{
|
|
// 372 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x8c, 0x91, 0xcf, 0x4b, 0xeb, 0x40,
|
|
0x10, 0xc7, 0x5f, 0xd2, 0x34, 0x69, 0xa6, 0x50, 0xca, 0x1e, 0xde, 0x0b, 0x85, 0x47, 0x25, 0x27,
|
|
0x41, 0xd9, 0x42, 0x7b, 0x50, 0x8f, 0x45, 0x8a, 0x17, 0x0b, 0xba, 0x56, 0xf0, 0x26, 0x69, 0x33,
|
|
0xb6, 0x81, 0xe6, 0x07, 0xc9, 0x44, 0xf4, 0xec, 0x7f, 0xe2, 0x5f, 0xea, 0x66, 0xb3, 0x89, 0x48,
|
|
0x0f, 0xf5, 0x94, 0x99, 0xcc, 0xe7, 0x3b, 0x33, 0xdf, 0x59, 0x18, 0x17, 0xd1, 0x1e, 0x93, 0x0d,
|
|
0x4e, 0xf4, 0x37, 0x5b, 0x37, 0x11, 0xcf, 0xf2, 0x94, 0x52, 0xe6, 0xb6, 0x85, 0xd1, 0x78, 0x9b,
|
|
0xa6, 0xdb, 0x3d, 0x4e, 0x54, 0x61, 0x5d, 0xbe, 0x4c, 0x28, 0x8a, 0xb1, 0xa0, 0x20, 0xce, 0x6a,
|
|
0xd6, 0xff, 0x30, 0xc0, 0x59, 0x06, 0xb4, 0xd9, 0x61, 0xce, 0xce, 0xc0, 0xa2, 0xf7, 0x0c, 0x3d,
|
|
0xe3, 0xc4, 0x38, 0x1d, 0x4c, 0xff, 0xf1, 0xb6, 0x0d, 0xd7, 0x04, 0x5f, 0xc9, 0xb2, 0x50, 0x10,
|
|
0x63, 0x60, 0x25, 0x41, 0x8c, 0x9e, 0x29, 0x61, 0x57, 0xa8, 0x98, 0x79, 0xe0, 0x64, 0x01, 0x11,
|
|
0xe6, 0x89, 0xd7, 0x51, 0xbf, 0x9b, 0xd4, 0xff, 0x0f, 0x56, 0xa5, 0x65, 0x2e, 0x74, 0x17, 0xf7,
|
|
0x8f, 0xf3, 0xdb, 0xe1, 0x1f, 0x06, 0x60, 0x8b, 0xc5, 0xcd, 0xe2, 0xe9, 0x6e, 0x68, 0xf8, 0x25,
|
|
0x38, 0xd7, 0x69, 0x1c, 0x63, 0x42, 0xec, 0x2f, 0xd8, 0x41, 0x49, 0xbb, 0x34, 0x57, 0x6b, 0xb8,
|
|
0x42, 0x67, 0x55, 0xef, 0x4d, 0x8d, 0xe8, 0x91, 0x4d, 0xca, 0x2e, 0xc1, 0x6d, 0x5d, 0xa9, 0xb9,
|
|
0xfd, 0xe9, 0x88, 0xd7, 0xbe, 0x79, 0xe3, 0x9b, 0xaf, 0x1a, 0x42, 0x7c, 0xc3, 0xfe, 0xa7, 0x09,
|
|
0xce, 0x43, 0x6d, 0x92, 0x0d, 0xc0, 0x8c, 0x42, 0x3d, 0x53, 0x46, 0x8c, 0x43, 0x2f, 0xae, 0x5d,
|
|
0x17, 0x72, 0x60, 0x47, 0x36, 0x65, 0x87, 0x07, 0x11, 0x2d, 0xc3, 0x2e, 0xc0, 0x95, 0x4d, 0x73,
|
|
0x2a, 0x9e, 0x03, 0xfa, 0xc5, 0x16, 0xbd, 0x1a, 0x9e, 0x13, 0x9b, 0x81, 0x83, 0x49, 0xa8, 0x64,
|
|
0xd6, 0x51, 0x99, 0x5d, 0xa1, 0x52, 0x74, 0x05, 0x50, 0x66, 0x61, 0x40, 0x18, 0x56, 0xba, 0xee,
|
|
0x71, 0xd3, 0x9a, 0x96, 0x52, 0x69, 0x4c, 0x5f, 0xae, 0xf0, 0x9c, 0x03, 0x63, 0xfa, 0x19, 0x44,
|
|
0xcb, 0xf8, 0xaf, 0xd0, 0x5f, 0x62, 0xb1, 0x6b, 0xee, 0x74, 0x0e, 0x8e, 0xa6, 0xd5, 0xb1, 0x7e,
|
|
0xaa, 0x35, 0x24, 0x1a, 0xa4, 0xda, 0x13, 0xdf, 0xb2, 0x28, 0x47, 0xe5, 0xcf, 0x3c, 0xbe, 0xa7,
|
|
0xa6, 0xe7, 0xb4, 0xb6, 0x55, 0x79, 0xf6, 0x15, 0x00, 0x00, 0xff, 0xff, 0x7d, 0xe9, 0xc3, 0x5f,
|
|
0xef, 0x02, 0x00, 0x00,
|
|
}
|