Documentation ¶
Index ¶
- func ChoriaPlugin() plugin.Pluggable
- type ActivationCheck
- type ActivationReply
- type Provider
- func (p *Provider) Agents() []*agent.DDL
- func (p *Provider) Initialize(cfg *config.Config, log *logrus.Entry)
- func (p *Provider) PluginInstance() interface{}
- func (p *Provider) PluginName() string
- func (p *Provider) PluginType() inter.PluginType
- func (p *Provider) PluginVersion() string
- func (p *Provider) RegisterAgents(ctx context.Context, mgr server.AgentManager, connector inter.AgentConnector, ...) error
- func (p *Provider) Version() string
- type Request
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ChoriaPlugin ¶
ChoriaPlugin produces the plugin for choria
Types ¶
type ActivationCheck ¶
type ActivationCheck struct { Schema string `json:"$schema"` Protocol string `json:"protocol"` Agent string `json:"agent"` }
ActivationCheck is the request to determine if an agent should activate
type ActivationReply ¶
type ActivationReply struct {
ShouldActivate bool `json:"activate"`
}
ActivationReply is the reply from the activation check message
type Provider ¶
type Provider struct {
// contains filtered or unexported fields
}
Provider is a Choria Agent Provider that supports calling agents external to the choria process written in any language
func (*Provider) Initialize ¶
Initialize configures the agent provider
func (*Provider) PluginInstance ¶
func (p *Provider) PluginInstance() interface{}
PluginInstance implements plugin.Pluggable
func (*Provider) PluginName ¶
PluginName implements plugin.Pluggable
func (*Provider) PluginType ¶
func (p *Provider) PluginType() inter.PluginType
PluginType implements plugin.Pluggable
func (*Provider) PluginVersion ¶
PluginVersion implements plugin.Pluggable
func (*Provider) RegisterAgents ¶
func (p *Provider) RegisterAgents(ctx context.Context, mgr server.AgentManager, connector inter.AgentConnector, log *logrus.Entry) error
RegisterAgents registers known ruby agents using a shimm agent
type Request ¶
type Request struct { Schema string `json:"$schema"` Protocol string `json:"protocol"` Agent string `json:"agent"` Action string `json:"action"` RequestID string `json:"requestid"` SenderID string `json:"senderid"` CallerID string `json:"callerid"` Collective string `json:"collective"` TTL int `json:"ttl"` Time int64 `json:"msgtime"` Data json.RawMessage `json:"data"` }
Request is the request being published to the shim runner
Click to show internal directories.
Click to hide internal directories.