Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/vendor/github.com/fluent/fluent-bit-go/output/decoder.go

109 lines
2.4 KiB

// Fluent Bit Go!
// ==============
// Copyright (C) 2015-2017 Treasure Data Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package output
import (
"C"
"encoding/binary"
"reflect"
"time"
"unsafe"
"github.com/ugorji/go/codec"
)
type FLBDecoder struct {
handle *codec.MsgpackHandle
mpdec *codec.Decoder
}
type FLBTime struct {
time.Time
}
func (f FLBTime) WriteExt(interface{}) []byte {
panic("unsupported")
}
func (f FLBTime) ReadExt(i interface{}, b []byte) {
out := i.(*FLBTime)
sec := binary.BigEndian.Uint32(b)
usec := binary.BigEndian.Uint32(b[4:])
out.Time = time.Unix(int64(sec), int64(usec))
}
func (f FLBTime) ConvertExt(v interface{}) interface{} {
return nil
}
func (f FLBTime) UpdateExt(dest interface{}, v interface{}) {
panic("unsupported")
}
func NewDecoder(data unsafe.Pointer, length int) *FLBDecoder {
var b []byte
dec := new(FLBDecoder)
dec.handle = new(codec.MsgpackHandle)
dec.handle.SetBytesExt(reflect.TypeOf(FLBTime{}), 0, &FLBTime{})
b = C.GoBytes(data, C.int(length))
dec.mpdec = codec.NewDecoderBytes(b, dec.handle)
return dec
}
func GetRecord(dec *FLBDecoder) (ret int, ts interface{}, rec map[interface{}]interface{}) {
var check error
var m interface{}
check = dec.mpdec.Decode(&m)
if check != nil {
return -1, 0, nil
}
slice := reflect.ValueOf(m)
if slice.Kind() != reflect.Slice || slice.Len() != 2 {
return -2, 0, nil
}
var t interface{}
ts = slice.Index(0).Interface()
switch ty := ts.(type) {
case FLBTime:
t = ty
case uint64:
t = ty
case []interface{}: // for Fluent Bit V2 metadata type of format
s := reflect.ValueOf(ty)
if s.Kind() != reflect.Slice || s.Len() < 2 {
return -4, 0, nil
}
t = s.Index(0).Interface()
default:
return -5, 0, nil
}
data := slice.Index(1)
map_data, ok := data.Interface().(map[interface{}]interface{})
if !ok {
return -3, 0, nil
}
return 0, t, map_data
}