Documentation ¶
Index ¶
- Constants
- Variables
- func ConvertToDataStoreSeries(s ApiSeries, precision TimePrecision) (*protocol.Series, error)
- func CurrentTime() int64
- func GetFileSize(path string) (int64, error)
- func MergeSeries(s1, s2 *protocol.Series) *protocol.Series
- func ParseTimeDuration(value string) (int64, error)
- func RecoverFunc(database, query string, cleanup func(err interface{}))
- func SortSerializedSeries(s []*SerializedSeries)
- func StringToSeriesArray(seriesString string, args ...interface{}) ([]*protocol.Series, error)
- func TimeToMicroseconds(t time.Time) int64
- type ApiSeries
- type AuthenticationError
- type AuthorizationError
- type BySerializedSeriesNameAsc
- type DatabaseExistsError
- type EnhancedTime
- type ErrorWithStacktrace
- type QueryError
- type SerializedSeries
- type SerializedSeriesCollection
- type TimePrecision
- type Type
- type User
Constants ¶
const ( TYPE_INT = iota TYPE_STRING TYPE_BOOL TYPE_DOUBLE TYPE_UNKNOWN )
const ( WrongNumberOfArguments = iota InvalidArgument InternalError )
Variables ¶
var ( TRUE = true FALSE = false )
Functions ¶
func ConvertToDataStoreSeries ¶
func ConvertToDataStoreSeries(s ApiSeries, precision TimePrecision) (*protocol.Series, error)
func CurrentTime ¶
func CurrentTime() int64
func GetFileSize ¶
func MergeSeries ¶
merges two time series making sure that the resulting series has the union of the two series columns and the values set properly. will panic if the two series don't have the same name
func ParseTimeDuration ¶
Returns the parsed duration in nanoseconds, support 'u', 's', 'm', 'h', 'd' and 'w' suffixes.
func RecoverFunc ¶
func RecoverFunc(database, query string, cleanup func(err interface{}))
func SortSerializedSeries ¶
func SortSerializedSeries(s []*SerializedSeries)
func StringToSeriesArray ¶
func TimeToMicroseconds ¶
Types ¶
type AuthenticationError ¶
type AuthenticationError string
func NewAuthenticationError ¶
func NewAuthenticationError(formatStr string, args ...interface{}) AuthenticationError
func (AuthenticationError) Error ¶
func (self AuthenticationError) Error() string
type AuthorizationError ¶
type AuthorizationError string
func NewAuthorizationError ¶
func NewAuthorizationError(formatStr string, args ...interface{}) AuthorizationError
func (AuthorizationError) Error ¶
func (self AuthorizationError) Error() string
type BySerializedSeriesNameAsc ¶
type BySerializedSeriesNameAsc struct{ SerializedSeriesCollection }
func (BySerializedSeriesNameAsc) Less ¶
func (s BySerializedSeriesNameAsc) Less(i, j int) bool
type DatabaseExistsError ¶
type DatabaseExistsError string
func NewDatabaseExistsError ¶
func NewDatabaseExistsError(db string) DatabaseExistsError
func (DatabaseExistsError) Error ¶
func (self DatabaseExistsError) Error() string
type EnhancedTime ¶
type ErrorWithStacktrace ¶
type ErrorWithStacktrace struct {
// contains filtered or unexported fields
}
An error that remembers where it was thrown from
func NewErrorWithStacktrace ¶
func NewErrorWithStacktrace(cause error, msg ...interface{}) *ErrorWithStacktrace
if msg is provided, msg is treated as the error message and the error is treated as the original cause of this error. Otherwise the error is used as the error message. This is useful for chaining multiple errors to trace what was the original error that triggered the subsequent errors
func (*ErrorWithStacktrace) Error ¶
func (self *ErrorWithStacktrace) Error() string
type QueryError ¶
func NewQueryError ¶
func NewQueryError(code int, msg string, args ...interface{}) *QueryError
func (*QueryError) Error ¶
func (self *QueryError) Error() string
type SerializedSeries ¶
type SerializedSeries struct { Name string `json:"name"` Columns []string `json:"columns"` Points [][]interface{} `json:"points"` }
func SerializeSeries ¶
func SerializeSeries(memSeries map[string]*protocol.Series, precision TimePrecision) []*SerializedSeries
takes a slice of protobuf series and convert them to the format that the http api expect
func (*SerializedSeries) GetColumns ¶
func (self *SerializedSeries) GetColumns() []string
func (*SerializedSeries) GetName ¶
func (self *SerializedSeries) GetName() string
func (*SerializedSeries) GetPoints ¶
func (self *SerializedSeries) GetPoints() [][]interface{}
type SerializedSeriesCollection ¶
type SerializedSeriesCollection []*SerializedSeries
func (SerializedSeriesCollection) Len ¶
func (s SerializedSeriesCollection) Len() int
func (SerializedSeriesCollection) Swap ¶
func (s SerializedSeriesCollection) Swap(i, j int)
type TimePrecision ¶
type TimePrecision int
const ( MicrosecondPrecision TimePrecision = iota MillisecondPrecision SecondPrecision )
type Type ¶
type Type int
func CoerceValues ¶
func CoerceValues(leftValue, rightValue *protocol.FieldValue) (interface{}, interface{}, Type)