Documentation ¶
Index ¶
- Constants
- Variables
- func FormatDate(input time.Time) string
- func InitFormatFlags(app *kingpin.Application)
- type ByEndAt
- type ByStartsAt
- type Config
- type ExtendedFormatter
- func (formatter *ExtendedFormatter) FormatAlerts(alerts []*dispatch.APIAlert) error
- func (formatter *ExtendedFormatter) FormatConfig(config Config) error
- func (formatter *ExtendedFormatter) FormatSilences(silences []types.Silence) error
- func (formatter *ExtendedFormatter) SetOutput(writer io.Writer)
- type Formatter
- type JSONFormatter
- type MeshStatus
- type PeerStatus
- type SimpleFormatter
Constants ¶
View Source
const DefaultDateFormat = "2006-01-02 15:04:05 MST"
Variables ¶
View Source
var Formatters = map[string]Formatter{}
Formatters is a map of cli argument name to formatter inferface object
Functions ¶
func FormatDate ¶
func InitFormatFlags ¶ added in v0.13.0
func InitFormatFlags(app *kingpin.Application)
Types ¶
type ByStartsAt ¶
func (ByStartsAt) Len ¶
func (s ByStartsAt) Len() int
func (ByStartsAt) Less ¶
func (s ByStartsAt) Less(i, j int) bool
func (ByStartsAt) Swap ¶
func (s ByStartsAt) Swap(i, j int)
type Config ¶
type Config struct { ConfigYAML string `json:"configYAML"` ConfigJSON config.Config `json:"configJSON"` MeshStatus map[string]interface{} `json:"meshStatus"` VersionInfo map[string]string `json:"versionInfo"` Uptime time.Time `json:"uptime"` }
Config representation Need to get this moved to the prometheus/common/model repo having is duplicated here is smelly
type ExtendedFormatter ¶
type ExtendedFormatter struct {
// contains filtered or unexported fields
}
func (*ExtendedFormatter) FormatAlerts ¶
func (formatter *ExtendedFormatter) FormatAlerts(alerts []*dispatch.APIAlert) error
func (*ExtendedFormatter) FormatConfig ¶
func (formatter *ExtendedFormatter) FormatConfig(config Config) error
func (*ExtendedFormatter) FormatSilences ¶
func (formatter *ExtendedFormatter) FormatSilences(silences []types.Silence) error
func (*ExtendedFormatter) SetOutput ¶
func (formatter *ExtendedFormatter) SetOutput(writer io.Writer)
type Formatter ¶
type Formatter interface { SetOutput(io.Writer) FormatSilences([]types.Silence) error FormatAlerts([]*dispatch.APIAlert) error FormatConfig(Config) error }
Formatter needs to be implemented for each new output formatter
type JSONFormatter ¶ added in v0.10.0
type JSONFormatter struct {
// contains filtered or unexported fields
}
func (*JSONFormatter) FormatAlerts ¶ added in v0.10.0
func (formatter *JSONFormatter) FormatAlerts(alerts []*dispatch.APIAlert) error
func (*JSONFormatter) FormatConfig ¶ added in v0.10.0
func (formatter *JSONFormatter) FormatConfig(config Config) error
func (*JSONFormatter) FormatSilences ¶ added in v0.10.0
func (formatter *JSONFormatter) FormatSilences(silences []types.Silence) error
func (*JSONFormatter) SetOutput ¶ added in v0.10.0
func (formatter *JSONFormatter) SetOutput(writer io.Writer)
type MeshStatus ¶
type MeshStatus struct { Name string `json:"name"` NickName string `json:"nickName"` Peers []PeerStatus `json:"peerStatus"` }
type PeerStatus ¶
type SimpleFormatter ¶
type SimpleFormatter struct {
// contains filtered or unexported fields
}
func (*SimpleFormatter) FormatAlerts ¶
func (formatter *SimpleFormatter) FormatAlerts(alerts []*dispatch.APIAlert) error
func (*SimpleFormatter) FormatConfig ¶
func (formatter *SimpleFormatter) FormatConfig(config Config) error
func (*SimpleFormatter) FormatSilences ¶
func (formatter *SimpleFormatter) FormatSilences(silences []types.Silence) error
func (*SimpleFormatter) SetOutput ¶
func (formatter *SimpleFormatter) SetOutput(writer io.Writer)
Click to show internal directories.
Click to hide internal directories.