choria-mcorpc-support 2.20.2 → 2.20.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d2b8648f472e338798775a0ce3d796f06265a503
4
- data.tar.gz: 5f529b0a312961f8f4fe5d8bc0f2722bfd5170f4
3
+ metadata.gz: d62fe592f222f86ab9be58dba46bf2e328558806
4
+ data.tar.gz: f18f3623e930fd5d71e5241dff3c8b80d261aa89
5
5
  SHA512:
6
- metadata.gz: f98520d7403ed78e5609882aec0b91bca68d158219528ea772771735969c126190bddeec4394af060f025c5150170600dd50ecd5db0284590a237079295eeac2
7
- data.tar.gz: 972d253fdc763e8b7a9aefaede8d02701d61da92ac9aefd6c83db37e579e40a7ce23c0ca1e7f68b119ce61ca116647d397fcc7c013af67408aced6e2b475c5f0
6
+ metadata.gz: '081312bf41443aaf3e70ad790bd294309d96d02d9e8aeb509fc52d81add8d92ab8509b4e695518479cf48937ba650d2e14679c7f6dd4985555e9e9f691f4db24'
7
+ data.tar.gz: cd63595156866613e99116174cc879e57ac47159f91aa23f422a386fb986cafdb5c2f33312e63f068b60db3904b59d29b459e169c0e8ce1fc97f385b699d8a59
@@ -55,7 +55,7 @@ module MCollective
55
55
  require "mcollective/util"
56
56
  require "mcollective/validator"
57
57
 
58
- VERSION="2.20.2"
58
+ VERSION="2.20.3"
59
59
 
60
60
  def self.version
61
61
  VERSION
@@ -0,0 +1,220 @@
1
+ metadata :name => "rpcutil",
2
+ :description => "General helpful actions that expose stats and internals to SimpleRPC clients",
3
+ :author => "R.I.Pienaar <rip@devco.net>",
4
+ :license => "Apache License, Version 2.0",
5
+ :version => "1.0.0",
6
+ :url => "https://choria.io/",
7
+ :timeout => 10
8
+
9
+ action "collective_info", :description => "Info about the main and sub collectives" do
10
+ display :always
11
+
12
+ output :main_collective,
13
+ :description => "The main Collective",
14
+ :display_as => "Main Collective"
15
+
16
+ output :collectives,
17
+ :description => "All Collectives",
18
+ :display_as => "All Collectives"
19
+
20
+ summarize do
21
+ aggregate summary(:collectives)
22
+ end
23
+ end
24
+
25
+ action "inventory", :description => "System Inventory" do
26
+ display :always
27
+
28
+ output :agents,
29
+ :description => "List of agent names",
30
+ :display_as => "Agents"
31
+
32
+ output :facts,
33
+ :description => "List of facts and values",
34
+ :display_as => "Facts"
35
+
36
+ output :classes,
37
+ :description => "List of classes on the system",
38
+ :display_as => "Classes"
39
+
40
+ output :version,
41
+ :description => "MCollective Version",
42
+ :display_as => "Version"
43
+
44
+ output :main_collective,
45
+ :description => "The main Collective",
46
+ :display_as => "Main Collective"
47
+
48
+ output :collectives,
49
+ :description => "All Collectives",
50
+ :display_as => "All Collectives"
51
+
52
+ output :data_plugins,
53
+ :description => "List of data plugin names",
54
+ :display_as => "Data Plugins"
55
+ end
56
+
57
+ action "get_fact", :description => "Retrieve a single fact from the fact store" do
58
+ display :always
59
+
60
+ input :fact,
61
+ :prompt => "The name of the fact",
62
+ :description => "The fact to retrieve",
63
+ :type => :string,
64
+ :validation => '^[\w\-\.]+$',
65
+ :optional => false,
66
+ :maxlength => 40
67
+
68
+ output :fact,
69
+ :description => "The name of the fact being returned",
70
+ :display_as => "Fact"
71
+
72
+ output :value,
73
+ :description => "The value of the fact",
74
+ :display_as => "Value"
75
+
76
+ summarize do
77
+ aggregate summary(:value)
78
+ end
79
+ end
80
+
81
+ action "get_facts", :description => "Retrieve multiple facts from the fact store" do
82
+ display :always
83
+
84
+ input :facts,
85
+ :prompt => "Comma-separated list of facts",
86
+ :description => "Facts to retrieve",
87
+ :type => :string,
88
+ :validation => '^\s*[\w\.\-]+(\s*,\s*[\w\.\-]+)*$',
89
+ :optional => false,
90
+ :maxlength => 200
91
+
92
+ output :values,
93
+ :description => "List of values of the facts",
94
+ :display_as => "Values"
95
+ end
96
+
97
+ action "daemon_stats", :description => "Get statistics from the running daemon" do
98
+ display :always
99
+
100
+ output :threads,
101
+ :description => "List of threads active in the daemon",
102
+ :display_as => "Threads"
103
+
104
+ output :agents,
105
+ :description => "List of agents loaded",
106
+ :display_as => "Agents"
107
+
108
+ output :pid,
109
+ :description => "Process ID of the daemon",
110
+ :display_as => "PID"
111
+
112
+ output :times,
113
+ :description => "Processor time consumed by the daemon",
114
+ :display_as => "Times"
115
+
116
+ output :validated,
117
+ :description => "Messages that passed security validation",
118
+ :display_as => "Security Validated"
119
+
120
+ output :unvalidated,
121
+ :description => "Messages that failed security validation",
122
+ :display_as => "Failed Security"
123
+
124
+ output :passed,
125
+ :description => "Passed filter checks",
126
+ :display_as => "Passed Filter"
127
+
128
+ output :filtered,
129
+ :description => "Didn't pass filter checks",
130
+ :display_as => "Failed Filter"
131
+
132
+ output :starttime,
133
+ :description => "Time the server started",
134
+ :display_as => "Start Time"
135
+
136
+ output :total,
137
+ :description => "Total messages received",
138
+ :display_as => "Total Messages"
139
+
140
+ output :replies,
141
+ :description => "Replies sent back to clients",
142
+ :display_as => "Replies"
143
+
144
+ output :configfile,
145
+ :description => "Config file used to start the daemon",
146
+ :display_as => "Config File"
147
+
148
+ output :version,
149
+ :description => "MCollective Version",
150
+ :display_as => "Version"
151
+
152
+ output :ttlexpired,
153
+ :description => "Messages that did pass TTL checks",
154
+ :display_as => "TTL Expired"
155
+
156
+ summarize do
157
+ aggregate summary(:version)
158
+ aggregate summary(:agents)
159
+ end
160
+ end
161
+
162
+ action "agent_inventory", :description => "Inventory of all agents on the server" do
163
+ display :always
164
+
165
+ output :agents,
166
+ :description => "List of agents on the server",
167
+ :display_as => "Agents"
168
+ end
169
+
170
+ action "get_config_item", :description => "Get the active value of a specific config property" do
171
+ display :always
172
+
173
+ input :item,
174
+ :prompt => "Configuration Item",
175
+ :description => "The item to retrieve from the server",
176
+ :type => :string,
177
+ :validation => '^.+$',
178
+ :optional => false,
179
+ :maxlength => 50
180
+
181
+ output :item,
182
+ :description => "The config property being retrieved",
183
+ :display_as => "Property"
184
+
185
+ output :value,
186
+ :description => "The value that is in use",
187
+ :display_as => "Value"
188
+
189
+ summarize do
190
+ aggregate summary(:value)
191
+ end
192
+ end
193
+
194
+ action "get_data", :description => "Get data from a data plugin" do
195
+ display :always
196
+
197
+ input :source,
198
+ :prompt => "Data Source",
199
+ :description => "The data plugin to retrieve information from",
200
+ :type => :string,
201
+ :validation => '^\w+$',
202
+ :optional => false,
203
+ :maxlength => 50
204
+
205
+ input :query,
206
+ :prompt => "Query",
207
+ :description => "The query argument to supply to the data plugin",
208
+ :type => :string,
209
+ :validation => '^.+$',
210
+ :optional => true,
211
+ :maxlength => 200
212
+ end
213
+
214
+ action "ping", :description => "Responds to requests for PING with PONG" do
215
+ display :always
216
+
217
+ output :pong,
218
+ :description => "The local timestamp",
219
+ :display_as => "Timestamp"
220
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: choria-mcorpc-support
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.20.2
4
+ version: 2.20.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - R.I.Pienaar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-23 00:00:00.000000000 Z
11
+ date: 2018-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: systemu
@@ -54,6 +54,7 @@ files:
54
54
  - bin/mco
55
55
  - lib/mcollective.rb
56
56
  - lib/mcollective/agent.rb
57
+ - lib/mcollective/agent/rpcutil.ddl
57
58
  - lib/mcollective/agents.rb
58
59
  - lib/mcollective/aggregate.rb
59
60
  - lib/mcollective/aggregate/average.ddl