Documentation
¶
Index ¶
- func EachFile(libdirs []string, cb func(name string, path string) (br bool))
- type Action
- func (a *Action) AggregateResult(result map[string]interface{}) error
- func (a *Action) AggregateResultJSON(jres []byte) error
- func (a *Action) AggregateSummaryFormattedStrings() (map[string][]string, error)
- func (a *Action) AggregateSummaryJSON() ([]byte, error)
- func (a *Action) AggregateSummaryStrings() (map[string]map[string]string, error)
- type ActionAggregateItem
- type ActionOutputItem
- type DDL
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Action ¶
type Action struct { Name string `json:"action"` Input json.RawMessage `json:"input"` Output map[string]*ActionOutputItem `json:"output"` Display string `json:"display"` Description string `json:"description"` Aggregation []ActionAggregateItem `json:"aggregate"` sync.Mutex // contains filtered or unexported fields }
Action describes an individual action in an agent
func (*Action) AggregateResult ¶ added in v0.6.0
AggregateResult receives a result and aggregate all the data found in it, most errors are squashed since aggregation are called during processing of replies and we do not want to fail a reply just because aggregation failed, thus this is basically a best efforts kind of thing on purpose
func (*Action) AggregateResultJSON ¶ added in v0.6.0
AggregateResultJSON receives a JSON reply and aggregate all the data found in it
func (*Action) AggregateSummaryFormattedStrings ¶ added in v0.6.0
AggregateSummaryFormattedStrings produce a formatted string for each output item that has a aggregate summary defined
func (*Action) AggregateSummaryJSON ¶ added in v0.6.0
AggregateSummaryJSON produce a JSON representation of aggregate results for every output item that has a aggregate summary defined
type ActionAggregateItem ¶ added in v0.6.0
type ActionAggregateItem struct { Function string `json:"function"` Arguments json.RawMessage `json:"args"` }
ActionAggregateItem describes a aggregate function to summarize data
type ActionOutputItem ¶
type ActionOutputItem struct { Description string `json:"description"` DisplayAs string `json:"display_as"` Default interface{} `json:"default"` }
ActionOutputItem describes an individual output item
type DDL ¶
type DDL struct { Schema string `json:"$schema"` Metadata *agents.Metadata `json:"metadata"` Actions []*Action `json:"actions"` }
DDL represents the schema of a mcorpc agent and is at a basic level compatible with the mcollective agent ddl format
func (*DDL) ActionInterface ¶
ActionInterface looks up an Action by name
func (*DDL) ActionNames ¶
ActionNames is a list of known actions defined by a DDL
func (*DDL) HaveAction ¶
HaveAction determines if an action is known