Statistics
| Branch: | Tag: | Revision:

root / doc / design-monitoring-agent.rst @ 310c246f

History | View | Annotate | Download (29.2 kB)

1 109e07c2 Guido Trotter
=======================
2 109e07c2 Guido Trotter
Ganeti monitoring agent
3 109e07c2 Guido Trotter
=======================
4 109e07c2 Guido Trotter
5 109e07c2 Guido Trotter
.. contents:: :depth: 4
6 109e07c2 Guido Trotter
7 109e07c2 Guido Trotter
This is a design document detailing the implementation of a Ganeti
8 109e07c2 Guido Trotter
monitoring agent report system, that can be queried by a monitoring
9 109e07c2 Guido Trotter
system to calculate health information for a Ganeti cluster.
10 109e07c2 Guido Trotter
11 109e07c2 Guido Trotter
Current state and shortcomings
12 109e07c2 Guido Trotter
==============================
13 109e07c2 Guido Trotter
14 109e07c2 Guido Trotter
There is currently no monitoring support in Ganeti. While we don't want
15 109e07c2 Guido Trotter
to build something like Nagios or Pacemaker as part of Ganeti, it would
16 109e07c2 Guido Trotter
be useful if such tools could easily extract information from a Ganeti
17 109e07c2 Guido Trotter
machine in order to take actions (example actions include logging an
18 109e07c2 Guido Trotter
outage for future reporting or alerting a person or system about it).
19 109e07c2 Guido Trotter
20 109e07c2 Guido Trotter
Proposed changes
21 109e07c2 Guido Trotter
================
22 109e07c2 Guido Trotter
23 109e07c2 Guido Trotter
Each Ganeti node should export a status page that can be queried by a
24 109e07c2 Guido Trotter
monitoring system. Such status page will be exported on a network port
25 109e07c2 Guido Trotter
and will be encoded in JSON (simple text) over HTTP.
26 109e07c2 Guido Trotter
27 3301805f Michele Tartara
The choice of JSON is obvious as we already depend on it in Ganeti and
28 109e07c2 Guido Trotter
thus we don't need to add extra libraries to use it, as opposed to what
29 109e07c2 Guido Trotter
would happen for XML or some other markup format.
30 109e07c2 Guido Trotter
31 109e07c2 Guido Trotter
Location of agent report
32 109e07c2 Guido Trotter
------------------------
33 109e07c2 Guido Trotter
34 109e07c2 Guido Trotter
The report will be available from all nodes, and be concerned for all
35 109e07c2 Guido Trotter
node-local resources. This allows more real-time information to be
36 109e07c2 Guido Trotter
available, at the cost of querying all nodes.
37 109e07c2 Guido Trotter
38 109e07c2 Guido Trotter
Information reported
39 109e07c2 Guido Trotter
--------------------
40 109e07c2 Guido Trotter
41 109e07c2 Guido Trotter
The monitoring agent system will report on the following basic information:
42 109e07c2 Guido Trotter
43 109e07c2 Guido Trotter
- Instance status
44 109e07c2 Guido Trotter
- Instance disk status
45 109e07c2 Guido Trotter
- Status of storage for instances
46 109e07c2 Guido Trotter
- Ganeti daemons status, CPU usage, memory footprint
47 109e07c2 Guido Trotter
- Hypervisor resources report (memory, CPU, network interfaces)
48 109e07c2 Guido Trotter
- Node OS resources report (memory, CPU, network interfaces)
49 99b67c35 Spyros Trigazis
- Node OS CPU load average report
50 109e07c2 Guido Trotter
- Information from a plugin system
51 109e07c2 Guido Trotter
52 3301805f Michele Tartara
Format of the report
53 3301805f Michele Tartara
--------------------
54 3301805f Michele Tartara
55 3301805f Michele Tartara
The report of the will be in JSON format, and it will present an array
56 3301805f Michele Tartara
of report objects.
57 3301805f Michele Tartara
Each report object will be produced by a specific data collector.
58 3301805f Michele Tartara
Each report object includes some mandatory fields, to be provided by all
59 3301805f Michele Tartara
the data collectors:
60 3301805f Michele Tartara
61 3301805f Michele Tartara
``name``
62 3301805f Michele Tartara
  The name of the data collector that produced this part of the report.
63 3301805f Michele Tartara
  It is supposed to be unique inside a report.
64 3301805f Michele Tartara
65 3301805f Michele Tartara
``version``
66 3301805f Michele Tartara
  The version of the data collector that produces this part of the
67 3301805f Michele Tartara
  report. Built-in data collectors (as opposed to those implemented as
68 3301805f Michele Tartara
  plugins) should have "B" as the version number.
69 3301805f Michele Tartara
70 834dc290 Michele Tartara
``format_version``
71 3301805f Michele Tartara
  The format of what is represented in the "data" field for each data
72 3301805f Michele Tartara
  collector might change over time. Every time this happens, the
73 3301805f Michele Tartara
  format_version should be changed, so that who reads the report knows
74 3301805f Michele Tartara
  what format to expect, and how to correctly interpret it.
75 3301805f Michele Tartara
76 3301805f Michele Tartara
``timestamp``
77 0e8d8384 Michele Tartara
  The time when the reported data were gathered. It has to be expressed
78 3301805f Michele Tartara
  in nanoseconds since the unix epoch (0:00:00 January 01, 1970). If not
79 3301805f Michele Tartara
  enough precision is available (or needed) it can be padded with
80 3301805f Michele Tartara
  zeroes. If a report object needs multiple timestamps, it can add more
81 3301805f Michele Tartara
  and/or override this one inside its own "data" section.
82 3301805f Michele Tartara
83 3301805f Michele Tartara
``category``
84 3301805f Michele Tartara
  A collector can belong to a given category of collectors (e.g.: storage
85 3301805f Michele Tartara
  collectors, daemon collector). This means that it will have to provide a
86 3301805f Michele Tartara
  minumum set of prescribed fields, as documented for each category.
87 3301805f Michele Tartara
  This field will contain the name of the category the collector belongs to,
88 3301805f Michele Tartara
  if any, or just the ``null`` value.
89 3301805f Michele Tartara
90 3301805f Michele Tartara
``kind``
91 3301805f Michele Tartara
  Two kinds of collectors are possible:
92 3301805f Michele Tartara
  `Performance reporting collectors`_ and `Status reporting collectors`_.
93 3301805f Michele Tartara
  The respective paragraphs will describe them and the value of this field.
94 3301805f Michele Tartara
95 3301805f Michele Tartara
``data``
96 3301805f Michele Tartara
  This field contains all the data generated by the specific data collector,
97 3301805f Michele Tartara
  in its own independently defined format. The monitoring agent could check
98 3301805f Michele Tartara
  this syntactically (according to the JSON specifications) but not
99 3301805f Michele Tartara
  semantically.
100 3301805f Michele Tartara
101 3301805f Michele Tartara
Here follows a minimal example of a report::
102 3301805f Michele Tartara
103 3301805f Michele Tartara
  [
104 3301805f Michele Tartara
  {
105 3301805f Michele Tartara
      "name" : "TheCollectorIdentifier",
106 3301805f Michele Tartara
      "version" : "1.2",
107 834dc290 Michele Tartara
      "format_version" : 1,
108 3301805f Michele Tartara
      "timestamp" : 1351607182000000000,
109 3301805f Michele Tartara
      "category" : null,
110 3301805f Michele Tartara
      "kind" : 0,
111 3301805f Michele Tartara
      "data" : { "plugin_specific_data" : "go_here" }
112 3301805f Michele Tartara
  },
113 3301805f Michele Tartara
  {
114 3301805f Michele Tartara
      "name" : "AnotherDataCollector",
115 3301805f Michele Tartara
      "version" : "B",
116 834dc290 Michele Tartara
      "format_version" : 7,
117 3301805f Michele Tartara
      "timestamp" : 1351609526123854000,
118 3301805f Michele Tartara
      "category" : "storage",
119 3301805f Michele Tartara
      "kind" : 1,
120 3301805f Michele Tartara
      "data" : { "status" : { "code" : 1,
121 3301805f Michele Tartara
                              "message" : "Error on disk 2"
122 3301805f Michele Tartara
                            },
123 3301805f Michele Tartara
                 "plugin_specific" : "data",
124 3301805f Michele Tartara
                 "some_late_data" : { "timestamp" : 1351609526123942720,
125 3301805f Michele Tartara
                                      ...
126 3301805f Michele Tartara
                                    }
127 3301805f Michele Tartara
               }
128 3301805f Michele Tartara
  }
129 3301805f Michele Tartara
  ]
130 3301805f Michele Tartara
131 3301805f Michele Tartara
Performance reporting collectors
132 3301805f Michele Tartara
++++++++++++++++++++++++++++++++
133 3301805f Michele Tartara
134 3301805f Michele Tartara
These collectors only provide data about some component of the system, without
135 3301805f Michele Tartara
giving any interpretation over their meaning.
136 3301805f Michele Tartara
137 3301805f Michele Tartara
The value of the ``kind`` field of the report will be ``0``.
138 3301805f Michele Tartara
139 3301805f Michele Tartara
Status reporting collectors
140 3301805f Michele Tartara
+++++++++++++++++++++++++++
141 3301805f Michele Tartara
142 3301805f Michele Tartara
These collectors will provide information about the status of some
143 3301805f Michele Tartara
component of ganeti, or managed by ganeti.
144 3301805f Michele Tartara
145 3301805f Michele Tartara
The value of their ``kind`` field will be ``1``.
146 3301805f Michele Tartara
147 3301805f Michele Tartara
The rationale behind this kind of collectors is that there are some situations
148 3301805f Michele Tartara
where exporting data about the underlying subsystems would expose potential
149 3301805f Michele Tartara
issues. But if Ganeti itself is able (and going) to fix the problem, conflicts
150 3301805f Michele Tartara
might arise between Ganeti and something/somebody else trying to fix the same
151 3301805f Michele Tartara
problem.
152 3301805f Michele Tartara
Also, some external monitoring systems might not be aware of the internals of a
153 3301805f Michele Tartara
particular subsystem (e.g.: DRBD) and might only exploit the high level
154 3301805f Michele Tartara
response of its data collector, alerting an administrator if anything is wrong.
155 3301805f Michele Tartara
Still, completely hiding the underlying data is not a good idea, as they might
156 3301805f Michele Tartara
still be of use in some cases. So status reporting plugins will provide two
157 3301805f Michele Tartara
output modes: one just exporting a high level information about the status,
158 3301805f Michele Tartara
and one also exporting all the data they gathered.
159 3301805f Michele Tartara
The default output mode will be the status-only one. Through a command line
160 3301805f Michele Tartara
parameter (for stand-alone data collectors) or through the HTTP request to the
161 3301805f Michele Tartara
monitoring agent
162 3301805f Michele Tartara
(when collectors are executed as part of it) the verbose output mode providing
163 3301805f Michele Tartara
all the data can be selected.
164 3301805f Michele Tartara
165 3301805f Michele Tartara
When exporting just the status each status reporting collector will provide,
166 3301805f Michele Tartara
in its ``data`` section, at least the following field:
167 3301805f Michele Tartara
168 3301805f Michele Tartara
``status``
169 3301805f Michele Tartara
  summarizes the status of the component being monitored and consists of two
170 3301805f Michele Tartara
  subfields:
171 3301805f Michele Tartara
172 3301805f Michele Tartara
  ``code``
173 3301805f Michele Tartara
    It assumes a numeric value, encoded in such a way to allow using a bitset
174 88e23508 Michele Tartara
    to easily distinguish which states are currently present in the whole
175 88e23508 Michele Tartara
    cluster. If the bitwise OR of all the ``status`` fields is 0, the cluster
176 88e23508 Michele Tartara
    is completely healty.
177 3301805f Michele Tartara
    The status codes are as follows:
178 3301805f Michele Tartara
179 3301805f Michele Tartara
    ``0``
180 3301805f Michele Tartara
      The collector can determine that everything is working as
181 3301805f Michele Tartara
      intended.
182 3301805f Michele Tartara
183 3301805f Michele Tartara
    ``1``
184 3301805f Michele Tartara
      Something is temporarily wrong but it is being automatically fixed by
185 3301805f Michele Tartara
      Ganeti.
186 3301805f Michele Tartara
      There is no need of external intervention.
187 3301805f Michele Tartara
188 3301805f Michele Tartara
    ``2``
189 3301805f Michele Tartara
      The collector has failed to understand whether the status is good or
190 3301805f Michele Tartara
      bad. Further analysis is required. Interpret this status as a
191 3301805f Michele Tartara
      potentially dangerous situation.
192 3301805f Michele Tartara
193 82437b28 Michele Tartara
    ``4``
194 82437b28 Michele Tartara
      The collector can determine that something is wrong and Ganeti has no
195 82437b28 Michele Tartara
      way to fix it autonomously. External intervention is required.
196 82437b28 Michele Tartara
197 3301805f Michele Tartara
  ``message``
198 3301805f Michele Tartara
    A message to better explain the reason of the status.
199 3301805f Michele Tartara
    The exact format of the message string is data collector dependent.
200 3301805f Michele Tartara
201 debfca88 Michele Tartara
    The field is mandatory, but the content can be an empty string if the
202 debfca88 Michele Tartara
    ``code`` is ``0`` (working as intended) or ``1`` (being fixed
203 debfca88 Michele Tartara
    automatically).
204 3301805f Michele Tartara
205 3301805f Michele Tartara
    If the status code is ``2``, the message should specify what has gone
206 3301805f Michele Tartara
    wrong.
207 3301805f Michele Tartara
    If the status code is ``4``, the message shoud explain why it was not
208 3301805f Michele Tartara
    possible to determine a proper status.
209 3301805f Michele Tartara
210 3301805f Michele Tartara
The ``data`` section will also contain all the fields describing the gathered
211 3301805f Michele Tartara
data, according to a collector-specific format.
212 3301805f Michele Tartara
213 109e07c2 Guido Trotter
Instance status
214 109e07c2 Guido Trotter
+++++++++++++++
215 109e07c2 Guido Trotter
216 109e07c2 Guido Trotter
At the moment each node knows which instances are running on it, which
217 109e07c2 Guido Trotter
instances it is primary for, but not the cause why an instance might not
218 109e07c2 Guido Trotter
be running. On the other hand we don't want to distribute full instance
219 109e07c2 Guido Trotter
"admin" status information to all nodes, because of the performance
220 109e07c2 Guido Trotter
impact this would have.
221 109e07c2 Guido Trotter
222 109e07c2 Guido Trotter
As such we propose that:
223 109e07c2 Guido Trotter
224 109e07c2 Guido Trotter
- Any operation that can affect instance status will have an optional
225 109e07c2 Guido Trotter
  "reason" attached to it (at opcode level). This can be used for
226 109e07c2 Guido Trotter
  example to distinguish an admin request, from a scheduled maintenance
227 109e07c2 Guido Trotter
  or an automated tool's work. If this reason is not passed, Ganeti will
228 2bd9ec7c Michele Tartara
  just use the information it has about the source of the request.
229 2bd9ec7c Michele Tartara
  This reason information will be structured according to the
230 2bd9ec7c Michele Tartara
  :doc:`Ganeti reason trail <design-reason-trail>` design document.
231 109e07c2 Guido Trotter
- RPCs that affect the instance status will be changed so that the
232 109e07c2 Guido Trotter
  "reason" and the version of the config object they ran on is passed to
233 109e07c2 Guido Trotter
  them. They will then export the new expected instance status, together
234 109e07c2 Guido Trotter
  with the associated reason and object version to the status report
235 109e07c2 Guido Trotter
  system, which then will export those themselves.
236 109e07c2 Guido Trotter
237 109e07c2 Guido Trotter
Monitoring and auditing systems can then use the reason to understand
238 3301805f Michele Tartara
the cause of an instance status, and they can use the timestamp to
239 109e07c2 Guido Trotter
understand the freshness of their data even in the absence of an atomic
240 109e07c2 Guido Trotter
cross-node reporting: for example if they see an instance "up" on a node
241 109e07c2 Guido Trotter
after seeing it running on a previous one, they can compare these values
242 109e07c2 Guido Trotter
to understand which data is freshest, and repoll the "older" node. Of
243 109e07c2 Guido Trotter
course if they keep seeing this status this represents an error (either
244 109e07c2 Guido Trotter
an instance continuously "flapping" between nodes, or an instance is
245 109e07c2 Guido Trotter
constantly up on more than one), which should be reported and acted
246 109e07c2 Guido Trotter
upon.
247 109e07c2 Guido Trotter
248 109e07c2 Guido Trotter
The instance status will be on each node, for the instances it is
249 3301805f Michele Tartara
primary for, and its ``data`` section of the report will contain a list
250 42b50796 Michele Tartara
of instances, named ``instances``, with at least the following fields for
251 42b50796 Michele Tartara
each instance:
252 3301805f Michele Tartara
253 3301805f Michele Tartara
``name``
254 3301805f Michele Tartara
  The name of the instance.
255 3301805f Michele Tartara
256 3301805f Michele Tartara
``uuid``
257 3301805f Michele Tartara
  The UUID of the instance (stable on name change).
258 3301805f Michele Tartara
259 3301805f Michele Tartara
``admin_state``
260 3301805f Michele Tartara
  The status of the instance (up/down/offline) as requested by the admin.
261 3301805f Michele Tartara
262 3301805f Michele Tartara
``actual_state``
263 3301805f Michele Tartara
  The actual status of the instance. It can be ``up``, ``down``, or
264 3301805f Michele Tartara
  ``hung`` if the instance is up but it appears to be completely stuck.
265 3301805f Michele Tartara
266 3301805f Michele Tartara
``uptime``
267 3301805f Michele Tartara
  The uptime of the instance (if it is up, "null" otherwise).
268 3301805f Michele Tartara
269 3301805f Michele Tartara
``mtime``
270 3301805f Michele Tartara
  The timestamp of the last known change to the instance state.
271 3301805f Michele Tartara
272 3301805f Michele Tartara
``state_reason``
273 2bd9ec7c Michele Tartara
  The last known reason for state change of the instance, described according
274 42b50796 Michele Tartara
  to the JSON representation of a reason trail, as detailed in the :doc:`reason
275 42b50796 Michele Tartara
  trail design document <design-reason-trail>`.
276 109e07c2 Guido Trotter
277 3301805f Michele Tartara
``status``
278 3301805f Michele Tartara
  It represents the status of the instance, and its format is the same as that
279 3301805f Michele Tartara
  of the ``status`` field of `Status reporting collectors`_.
280 3301805f Michele Tartara
281 3301805f Michele Tartara
Each hypervisor should provide its own instance status data collector, possibly
282 3301805f Michele Tartara
with the addition of more, specific, fields.
283 3301805f Michele Tartara
The ``category`` field of all of them will be ``instance``.
284 3301805f Michele Tartara
The ``kind`` field will be ``1``.
285 109e07c2 Guido Trotter
286 109e07c2 Guido Trotter
Note that as soon as a node knows it's not the primary anymore for an
287 109e07c2 Guido Trotter
instance it will stop reporting status for it: this means the instance
288 109e07c2 Guido Trotter
will either disappear, if it has been deleted, or appear on another
289 109e07c2 Guido Trotter
node, if it's been moved.
290 109e07c2 Guido Trotter
291 3301805f Michele Tartara
The ``code`` of the ``status`` field of the report of the Instance status data
292 3301805f Michele Tartara
collector will be:
293 109e07c2 Guido Trotter
294 3301805f Michele Tartara
``0``
295 3301805f Michele Tartara
  if ``status`` is ``0`` for all the instances it is reporting about.
296 109e07c2 Guido Trotter
297 3301805f Michele Tartara
``1``
298 3301805f Michele Tartara
  otherwise.
299 3301805f Michele Tartara
300 05f88ad6 Michele Tartara
Storage collectors
301 05f88ad6 Michele Tartara
++++++++++++++++++
302 3301805f Michele Tartara
303 05f88ad6 Michele Tartara
The storage collectors will be a series of data collectors
304 05f88ad6 Michele Tartara
that will gather data about storage for the current node. The collection
305 05f88ad6 Michele Tartara
will be performed at different granularity and abstraction levels, from
306 05f88ad6 Michele Tartara
the physical disks, to partitions, logical volumes and to the specific
307 05f88ad6 Michele Tartara
storage types used by Ganeti itself (drbd, rbd, plain, file).
308 3301805f Michele Tartara
309 3301805f Michele Tartara
The ``name`` of each of these collector will reflect what storage type each of
310 3301805f Michele Tartara
them refers to.
311 3301805f Michele Tartara
312 3301805f Michele Tartara
The ``category`` field of these collector will be ``storage``.
313 3301805f Michele Tartara
314 05f88ad6 Michele Tartara
The ``kind`` field will depend on the specific collector.
315 3301805f Michele Tartara
316 05f88ad6 Michele Tartara
Each ``storage`` collector's ``data`` section will provide collector-specific
317 05f88ad6 Michele Tartara
fields.
318 3301805f Michele Tartara
319 fae96b7c Michele Tartara
The various storage collectors will provide keys to join the data they provide,
320 fae96b7c Michele Tartara
in order to allow the user to get a better understanding of the system. E.g.:
321 fae96b7c Michele Tartara
through device names, or instance names.
322 3301805f Michele Tartara
323 777a3109 Michele Tartara
Diskstats collector
324 777a3109 Michele Tartara
*******************
325 777a3109 Michele Tartara
326 777a3109 Michele Tartara
This storage data collector will gather information about the status of the
327 777a3109 Michele Tartara
disks installed in the system, as listed in the /proc/diskstats file. This means
328 777a3109 Michele Tartara
that not only physical hard drives, but also ramdisks and loopback devices will
329 777a3109 Michele Tartara
be listed.
330 777a3109 Michele Tartara
331 777a3109 Michele Tartara
Its ``kind`` in the report will be ``0`` (`Performance reporting collectors`_).
332 777a3109 Michele Tartara
333 777a3109 Michele Tartara
Its ``category`` field in the report will contain the value ``storage``.
334 777a3109 Michele Tartara
335 777a3109 Michele Tartara
When executed in verbose mode, the ``data`` section of the report of this
336 777a3109 Michele Tartara
collector will be a list of items, each representing one disk, each providing
337 777a3109 Michele Tartara
the following fields:
338 777a3109 Michele Tartara
339 777a3109 Michele Tartara
``major``
340 777a3109 Michele Tartara
  The major number of the device.
341 777a3109 Michele Tartara
342 777a3109 Michele Tartara
``minor``
343 777a3109 Michele Tartara
  The minor number of the device.
344 777a3109 Michele Tartara
345 777a3109 Michele Tartara
``name``
346 777a3109 Michele Tartara
  The name of the device.
347 777a3109 Michele Tartara
348 92070017 Michele Tartara
``readsNum``
349 777a3109 Michele Tartara
  This is the total number of reads completed successfully.
350 777a3109 Michele Tartara
351 777a3109 Michele Tartara
``mergedReads``
352 777a3109 Michele Tartara
  Reads which are adjacent to each other may be merged for efficiency. Thus
353 777a3109 Michele Tartara
  two 4K reads may become one 8K read before it is ultimately handed to the
354 777a3109 Michele Tartara
  disk, and so it will be counted (and queued) as only one I/O. This field
355 777a3109 Michele Tartara
  specifies how often this was done.
356 777a3109 Michele Tartara
357 777a3109 Michele Tartara
``secRead``
358 777a3109 Michele Tartara
  This is the total number of sectors read successfully.
359 777a3109 Michele Tartara
360 777a3109 Michele Tartara
``timeRead``
361 777a3109 Michele Tartara
  This is the total number of milliseconds spent by all reads.
362 777a3109 Michele Tartara
363 777a3109 Michele Tartara
``writes``
364 777a3109 Michele Tartara
  This is the total number of writes completed successfully.
365 777a3109 Michele Tartara
366 777a3109 Michele Tartara
``mergedWrites``
367 777a3109 Michele Tartara
  Writes which are adjacent to each other may be merged for efficiency. Thus
368 777a3109 Michele Tartara
  two 4K writes may become one 8K read before it is ultimately handed to the
369 777a3109 Michele Tartara
  disk, and so it will be counted (and queued) as only one I/O. This field
370 777a3109 Michele Tartara
  specifies how often this was done.
371 777a3109 Michele Tartara
372 777a3109 Michele Tartara
``secWritten``
373 777a3109 Michele Tartara
  This is the total number of sectors written successfully.
374 777a3109 Michele Tartara
375 777a3109 Michele Tartara
``timeWrite``
376 fae96b7c Michele Tartara
  This is the total number of milliseconds spent by all writes.
377 777a3109 Michele Tartara
378 777a3109 Michele Tartara
``ios``
379 777a3109 Michele Tartara
  The number of I/Os currently in progress.
380 777a3109 Michele Tartara
  The only field that should go to zero, it is incremented as requests are
381 777a3109 Michele Tartara
  given to appropriate struct request_queue and decremented as they finish.
382 777a3109 Michele Tartara
383 777a3109 Michele Tartara
``timeIO``
384 777a3109 Michele Tartara
  The number of milliseconds spent doing I/Os. This field increases so long
385 777a3109 Michele Tartara
  as field ``IOs`` is nonzero.
386 777a3109 Michele Tartara
387 777a3109 Michele Tartara
``wIOmillis``
388 777a3109 Michele Tartara
  The weighted number of milliseconds spent doing I/Os.
389 777a3109 Michele Tartara
  This field is incremented at each I/O start, I/O completion, I/O merge,
390 777a3109 Michele Tartara
  or read of these stats by the number of I/Os in progress (field ``IOs``)
391 777a3109 Michele Tartara
  times the number of milliseconds spent doing I/O since the last update of
392 777a3109 Michele Tartara
  this field. This can provide an easy measure of both I/O completion time
393 777a3109 Michele Tartara
  and the backlog that may be accumulating.
394 777a3109 Michele Tartara
395 a1f2fb58 Michele Tartara
Logical Volume collector
396 a1f2fb58 Michele Tartara
************************
397 a1f2fb58 Michele Tartara
398 a1f2fb58 Michele Tartara
This data collector will gather information about the attributes of logical
399 a1f2fb58 Michele Tartara
volumes present in the system.
400 a1f2fb58 Michele Tartara
401 a1f2fb58 Michele Tartara
Its ``kind`` in the report will be ``0`` (`Performance reporting collectors`_).
402 a1f2fb58 Michele Tartara
403 a1f2fb58 Michele Tartara
Its ``category`` field in the report will contain the value ``storage``.
404 a1f2fb58 Michele Tartara
405 a1f2fb58 Michele Tartara
The ``data`` section of the report of this collector will be a list of items,
406 a1f2fb58 Michele Tartara
each representing one logical volume and providing the following fields:
407 a1f2fb58 Michele Tartara
408 a1f2fb58 Michele Tartara
``uuid``
409 a1f2fb58 Michele Tartara
  The UUID of the logical volume.
410 a1f2fb58 Michele Tartara
411 a1f2fb58 Michele Tartara
``name``
412 a1f2fb58 Michele Tartara
  The name of the logical volume.
413 a1f2fb58 Michele Tartara
414 a1f2fb58 Michele Tartara
``attr``
415 a1f2fb58 Michele Tartara
  The attributes of the logical volume.
416 a1f2fb58 Michele Tartara
417 a1f2fb58 Michele Tartara
``major``
418 a1f2fb58 Michele Tartara
  Persistent major number or -1 if not persistent.
419 a1f2fb58 Michele Tartara
420 a1f2fb58 Michele Tartara
``minor``
421 a1f2fb58 Michele Tartara
  Persistent minor number or -1 if not persistent.
422 a1f2fb58 Michele Tartara
423 a1f2fb58 Michele Tartara
``kernel_major``
424 a1f2fb58 Michele Tartara
  Currently assigned major number or -1 if LV is not active.
425 a1f2fb58 Michele Tartara
426 a1f2fb58 Michele Tartara
``kernel_minor``
427 a1f2fb58 Michele Tartara
  Currently assigned minor number or -1 if LV is not active.
428 a1f2fb58 Michele Tartara
429 a1f2fb58 Michele Tartara
``size``
430 a1f2fb58 Michele Tartara
  Size of LV in bytes.
431 a1f2fb58 Michele Tartara
432 a1f2fb58 Michele Tartara
``seg_count``
433 a1f2fb58 Michele Tartara
  Number of segments in LV.
434 a1f2fb58 Michele Tartara
435 a1f2fb58 Michele Tartara
``tags``
436 a1f2fb58 Michele Tartara
  Tags, if any.
437 a1f2fb58 Michele Tartara
438 a1f2fb58 Michele Tartara
``modules``
439 a1f2fb58 Michele Tartara
  Kernel device-mapper modules required for this LV, if any.
440 a1f2fb58 Michele Tartara
441 a1f2fb58 Michele Tartara
``vg_uuid``
442 a1f2fb58 Michele Tartara
  Unique identifier of the volume group.
443 a1f2fb58 Michele Tartara
444 a1f2fb58 Michele Tartara
``vg_name``
445 a1f2fb58 Michele Tartara
  Name of the volume group.
446 a1f2fb58 Michele Tartara
447 a1f2fb58 Michele Tartara
``segtype``
448 a1f2fb58 Michele Tartara
  Type of LV segment.
449 a1f2fb58 Michele Tartara
450 a1f2fb58 Michele Tartara
``seg_start``
451 a1f2fb58 Michele Tartara
  Offset within the LVto the start of the segment in bytes.
452 a1f2fb58 Michele Tartara
453 a1f2fb58 Michele Tartara
``seg_start_pe``
454 a1f2fb58 Michele Tartara
  Offset within the LV to the start of the segment in physical extents.
455 a1f2fb58 Michele Tartara
456 a1f2fb58 Michele Tartara
``seg_size``
457 a1f2fb58 Michele Tartara
  Size of the segment in bytes.
458 a1f2fb58 Michele Tartara
459 a1f2fb58 Michele Tartara
``seg_tags``
460 a1f2fb58 Michele Tartara
  Tags for the segment, if any.
461 a1f2fb58 Michele Tartara
462 a1f2fb58 Michele Tartara
``seg_pe_ranges``
463 a1f2fb58 Michele Tartara
  Ranges of Physical Extents of underlying devices in lvs command line format.
464 a1f2fb58 Michele Tartara
465 a1f2fb58 Michele Tartara
``devices``
466 a1f2fb58 Michele Tartara
  Underlying devices used with starting extent numbers.
467 a1f2fb58 Michele Tartara
468 a1f2fb58 Michele Tartara
``instance``
469 fbfa1d19 Michele Tartara
  The name of the instance this LV is used by, or ``null`` if it was not
470 fbfa1d19 Michele Tartara
  possible to determine it.
471 a1f2fb58 Michele Tartara
472 3301805f Michele Tartara
DRBD status
473 3301805f Michele Tartara
***********
474 3301805f Michele Tartara
475 3301805f Michele Tartara
This data collector will run only on nodes where DRBD is actually
476 3301805f Michele Tartara
present and it will gather information about DRBD devices.
477 3301805f Michele Tartara
478 3301805f Michele Tartara
Its ``kind`` in the report will be ``1`` (`Status reporting collectors`_).
479 3301805f Michele Tartara
480 3301805f Michele Tartara
Its ``category`` field in the report will contain the value ``storage``.
481 3301805f Michele Tartara
482 3301805f Michele Tartara
When executed in verbose mode, the ``data`` section of the report of this
483 3301805f Michele Tartara
collector will provide the following fields:
484 3301805f Michele Tartara
485 3301805f Michele Tartara
``versionInfo``
486 3301805f Michele Tartara
  Information about the DRBD version number, given by a combination of
487 3301805f Michele Tartara
  any (but at least one) of the following fields:
488 3301805f Michele Tartara
489 3301805f Michele Tartara
  ``version``
490 3301805f Michele Tartara
    The DRBD driver version.
491 3301805f Michele Tartara
492 3301805f Michele Tartara
  ``api``
493 3301805f Michele Tartara
    The API version number.
494 3301805f Michele Tartara
495 3301805f Michele Tartara
  ``proto``
496 3301805f Michele Tartara
    The protocol version.
497 3301805f Michele Tartara
498 3301805f Michele Tartara
  ``srcversion``
499 3301805f Michele Tartara
    The version of the source files.
500 3301805f Michele Tartara
501 3301805f Michele Tartara
  ``gitHash``
502 3301805f Michele Tartara
    Git hash of the source files.
503 3301805f Michele Tartara
504 3301805f Michele Tartara
  ``buildBy``
505 3301805f Michele Tartara
    Who built the binary, and, optionally, when.
506 3301805f Michele Tartara
507 3301805f Michele Tartara
``device``
508 3301805f Michele Tartara
  A list of structures, each describing a DRBD device (a minor) and containing
509 3301805f Michele Tartara
  the following fields:
510 3301805f Michele Tartara
511 3301805f Michele Tartara
  ``minor``
512 3301805f Michele Tartara
    The device minor number.
513 3301805f Michele Tartara
514 3301805f Michele Tartara
  ``connectionState``
515 3301805f Michele Tartara
    The state of the connection. If it is "Unconfigured", all the following
516 3301805f Michele Tartara
    fields are not present.
517 3301805f Michele Tartara
518 3301805f Michele Tartara
  ``localRole``
519 3301805f Michele Tartara
    The role of the local resource.
520 3301805f Michele Tartara
521 3301805f Michele Tartara
  ``remoteRole``
522 3301805f Michele Tartara
    The role of the remote resource.
523 3301805f Michele Tartara
524 3301805f Michele Tartara
  ``localState``
525 3301805f Michele Tartara
    The status of the local disk.
526 3301805f Michele Tartara
527 3301805f Michele Tartara
  ``remoteState``
528 3301805f Michele Tartara
    The status of the remote disk.
529 3301805f Michele Tartara
530 3301805f Michele Tartara
  ``replicationProtocol``
531 3301805f Michele Tartara
    The replication protocol being used.
532 3301805f Michele Tartara
533 3301805f Michele Tartara
  ``ioFlags``
534 3301805f Michele Tartara
    The input/output flags.
535 3301805f Michele Tartara
536 3301805f Michele Tartara
  ``perfIndicators``
537 3301805f Michele Tartara
    The performance indicators. This field will contain the following
538 3301805f Michele Tartara
    sub-fields:
539 3301805f Michele Tartara
540 3301805f Michele Tartara
    ``networkSend``
541 3301805f Michele Tartara
      KiB of data sent on the network.
542 3301805f Michele Tartara
543 3301805f Michele Tartara
    ``networkReceive``
544 3301805f Michele Tartara
      KiB of data received from the network.
545 3301805f Michele Tartara
546 3301805f Michele Tartara
    ``diskWrite``
547 3301805f Michele Tartara
      KiB of data written on local disk.
548 3301805f Michele Tartara
549 3301805f Michele Tartara
    ``diskRead``
550 3301805f Michele Tartara
      KiB of date read from the local disk.
551 3301805f Michele Tartara
552 3301805f Michele Tartara
    ``activityLog``
553 3301805f Michele Tartara
      Number of updates of the activity log.
554 3301805f Michele Tartara
555 3301805f Michele Tartara
    ``bitMap``
556 3301805f Michele Tartara
      Number of updates to the bitmap area of the metadata.
557 3301805f Michele Tartara
558 3301805f Michele Tartara
    ``localCount``
559 3301805f Michele Tartara
      Number of open requests to the local I/O subsystem.
560 3301805f Michele Tartara
561 3301805f Michele Tartara
    ``pending``
562 3301805f Michele Tartara
      Number of requests sent to the partner but not yet answered.
563 3301805f Michele Tartara
564 3301805f Michele Tartara
    ``unacknowledged``
565 3301805f Michele Tartara
      Number of requests received by the partner but still to be answered.
566 3301805f Michele Tartara
567 3301805f Michele Tartara
    ``applicationPending``
568 3301805f Michele Tartara
      Num of block input/output requests forwarded to DRBD but that have not yet
569 3301805f Michele Tartara
      been answered.
570 3301805f Michele Tartara
571 3301805f Michele Tartara
    ``epochs``
572 3301805f Michele Tartara
      (Optional) Number of epoch objects. Not provided by all DRBD versions.
573 3301805f Michele Tartara
574 3301805f Michele Tartara
    ``writeOrder``
575 3301805f Michele Tartara
      (Optional) Currently used write ordering method. Not provided by all DRBD
576 3301805f Michele Tartara
      versions.
577 3301805f Michele Tartara
578 3301805f Michele Tartara
    ``outOfSync``
579 3301805f Michele Tartara
      (Optional) KiB of storage currently out of sync. Not provided by all DRBD
580 3301805f Michele Tartara
      versions.
581 3301805f Michele Tartara
582 3301805f Michele Tartara
  ``syncStatus``
583 3301805f Michele Tartara
    (Optional) The status of the synchronization of the disk. This is present
584 3301805f Michele Tartara
    only if the disk is being synchronized, and includes the following fields:
585 3301805f Michele Tartara
586 3301805f Michele Tartara
    ``percentage``
587 3301805f Michele Tartara
      The percentage of synchronized data.
588 3301805f Michele Tartara
589 3301805f Michele Tartara
    ``progress``
590 3301805f Michele Tartara
      How far the synchronization is. Written as "x/y", where x and y are
591 3301805f Michele Tartara
      integer numbers expressed in the measurement unit stated in
592 3301805f Michele Tartara
      ``progressUnit``
593 3301805f Michele Tartara
594 3301805f Michele Tartara
    ``progressUnit``
595 3301805f Michele Tartara
      The measurement unit for the progress indicator.
596 3301805f Michele Tartara
597 3301805f Michele Tartara
    ``timeToFinish``
598 3301805f Michele Tartara
      The expected time before finishing the synchronization.
599 3301805f Michele Tartara
600 3301805f Michele Tartara
    ``speed``
601 3301805f Michele Tartara
      The speed of the synchronization.
602 3301805f Michele Tartara
603 3301805f Michele Tartara
    ``want``
604 3301805f Michele Tartara
      The desiderd speed of the synchronization.
605 3301805f Michele Tartara
606 3301805f Michele Tartara
    ``speedUnit``
607 3301805f Michele Tartara
      The measurement unit of the ``speed`` and ``want`` values. Expressed
608 3301805f Michele Tartara
      as "size/time".
609 3301805f Michele Tartara
610 3301805f Michele Tartara
  ``instance``
611 3301805f Michele Tartara
    The name of the Ganeti instance this disk is associated to.
612 109e07c2 Guido Trotter
613 109e07c2 Guido Trotter
614 109e07c2 Guido Trotter
Ganeti daemons status
615 109e07c2 Guido Trotter
+++++++++++++++++++++
616 109e07c2 Guido Trotter
617 3301805f Michele Tartara
Ganeti will report what information it has about its own daemons.
618 3301805f Michele Tartara
This should allow identifying possible problems with the Ganeti system itself:
619 3301805f Michele Tartara
for example memory leaks, crashes and high resource utilization should be
620 3301805f Michele Tartara
evident by analyzing this information.
621 3301805f Michele Tartara
622 3301805f Michele Tartara
The ``kind`` field will be ``1`` (`Status reporting collectors`_).
623 3301805f Michele Tartara
624 3301805f Michele Tartara
Each daemon will have its own data collector, and each of them will have
625 3301805f Michele Tartara
a ``category`` field valued ``daemon``.
626 3301805f Michele Tartara
627 3301805f Michele Tartara
When executed in verbose mode, their data section will include at least:
628 3301805f Michele Tartara
629 3301805f Michele Tartara
``memory``
630 3301805f Michele Tartara
  The amount of used memory.
631 3301805f Michele Tartara
632 3301805f Michele Tartara
``size_unit``
633 3301805f Michele Tartara
  The measurement unit used for the memory.
634 109e07c2 Guido Trotter
635 3301805f Michele Tartara
``uptime``
636 3301805f Michele Tartara
  The uptime of the daemon.
637 3301805f Michele Tartara
638 3301805f Michele Tartara
``CPU usage``
639 3301805f Michele Tartara
  How much cpu the daemon is using (percentage).
640 3301805f Michele Tartara
641 3301805f Michele Tartara
Any other daemon-specific information can be included as well in the ``data``
642 3301805f Michele Tartara
section.
643 109e07c2 Guido Trotter
644 109e07c2 Guido Trotter
Hypervisor resources report
645 109e07c2 Guido Trotter
+++++++++++++++++++++++++++
646 109e07c2 Guido Trotter
647 109e07c2 Guido Trotter
Each hypervisor has a view of system resources that sometimes is
648 109e07c2 Guido Trotter
different than the one the OS sees (for example in Xen the Node OS,
649 109e07c2 Guido Trotter
running as Dom0, has access to only part of those resources). In this
650 109e07c2 Guido Trotter
section we'll report all information we can in a "non hypervisor
651 109e07c2 Guido Trotter
specific" way. Each hypervisor can then add extra specific information
652 109e07c2 Guido Trotter
that is not generic enough be abstracted.
653 109e07c2 Guido Trotter
654 3301805f Michele Tartara
The ``kind`` field will be ``0`` (`Performance reporting collectors`_).
655 3301805f Michele Tartara
656 3301805f Michele Tartara
Each of the hypervisor data collectory will be of ``category``: ``hypervisor``.
657 3301805f Michele Tartara
658 109e07c2 Guido Trotter
Node OS resources report
659 109e07c2 Guido Trotter
++++++++++++++++++++++++
660 109e07c2 Guido Trotter
661 109e07c2 Guido Trotter
Since Ganeti assumes it's running on Linux, it's useful to export some
662 3301805f Michele Tartara
basic information as seen by the host system.
663 109e07c2 Guido Trotter
664 3301805f Michele Tartara
The ``category`` field of the report will be ``null``.
665 109e07c2 Guido Trotter
666 3301805f Michele Tartara
The ``kind`` field will be ``0`` (`Performance reporting collectors`_).
667 109e07c2 Guido Trotter
668 3301805f Michele Tartara
The ``data`` section will include:
669 109e07c2 Guido Trotter
670 3301805f Michele Tartara
``cpu_number``
671 3301805f Michele Tartara
  The number of available cpus.
672 109e07c2 Guido Trotter
673 3301805f Michele Tartara
``cpus``
674 3301805f Michele Tartara
  A list with one element per cpu, showing its average load.
675 109e07c2 Guido Trotter
676 3301805f Michele Tartara
``memory``
677 3301805f Michele Tartara
  The current view of memory (free, used, cached, etc.)
678 109e07c2 Guido Trotter
679 3301805f Michele Tartara
``filesystem``
680 3301805f Michele Tartara
  A list with one element per filesystem, showing a summary of the
681 3301805f Michele Tartara
  total/available space.
682 109e07c2 Guido Trotter
683 3301805f Michele Tartara
``NICs``
684 3301805f Michele Tartara
  A list with one element per network interface, showing the amount of
685 3301805f Michele Tartara
  sent/received data, error rate, IP address of the interface, etc.
686 109e07c2 Guido Trotter
687 3301805f Michele Tartara
``versions``
688 3301805f Michele Tartara
  A map using the name of a component Ganeti interacts (Linux, drbd,
689 3301805f Michele Tartara
  hypervisor, etc) as the key and its version number as the value.
690 109e07c2 Guido Trotter
691 3301805f Michele Tartara
Note that we won't go into any hardware specific details (e.g. querying a
692 3301805f Michele Tartara
node RAID is outside the scope of this, and can be implemented as a
693 3301805f Michele Tartara
plugin) but we can easily just report the information above, since it's
694 3301805f Michele Tartara
standard enough across all systems.
695 9ef3e121 Michele Tartara
696 99b67c35 Spyros Trigazis
Node OS CPU load average report
697 99b67c35 Spyros Trigazis
+++++++++++++++++++++++++++++++
698 99b67c35 Spyros Trigazis
699 99b67c35 Spyros Trigazis
This data collector will export CPU load statistics as seen by the host
700 99b67c35 Spyros Trigazis
system. Apart from using the data from an external monitoring system we
701 99b67c35 Spyros Trigazis
can also use the data to improve instance allocation and/or the Ganeti
702 99b67c35 Spyros Trigazis
cluster balance. To compute the CPU load average we will use a number of
703 99b67c35 Spyros Trigazis
values collected inside a time window. The collection process will be
704 99b67c35 Spyros Trigazis
done by an independent thread (see `Mode of Operation`_).
705 99b67c35 Spyros Trigazis
706 99b67c35 Spyros Trigazis
This report is a subset of the previous report (`Node OS resources
707 99b67c35 Spyros Trigazis
report`_) and they might eventually get merged, once reporting for the
708 99b67c35 Spyros Trigazis
other fields (memory, filesystem, NICs) gets implemented too.
709 99b67c35 Spyros Trigazis
710 99b67c35 Spyros Trigazis
Specifically:
711 99b67c35 Spyros Trigazis
712 99b67c35 Spyros Trigazis
The ``category`` field of the report will be ``null``.
713 99b67c35 Spyros Trigazis
714 99b67c35 Spyros Trigazis
The ``kind`` field will be ``0`` (`Performance reporting collectors`_).
715 99b67c35 Spyros Trigazis
716 99b67c35 Spyros Trigazis
The ``data`` section will include:
717 99b67c35 Spyros Trigazis
718 99b67c35 Spyros Trigazis
``cpu_number``
719 99b67c35 Spyros Trigazis
  The number of available cpus.
720 99b67c35 Spyros Trigazis
721 99b67c35 Spyros Trigazis
``cpus``
722 99b67c35 Spyros Trigazis
  A list with one element per cpu, showing its average load.
723 99b67c35 Spyros Trigazis
724 99b67c35 Spyros Trigazis
``cpu_total``
725 99b67c35 Spyros Trigazis
  The total CPU load average as a sum of the all separate cpus.
726 99b67c35 Spyros Trigazis
727 99b67c35 Spyros Trigazis
The CPU load report function will get N values, collected by the
728 99b67c35 Spyros Trigazis
CPU load collection function and calculate the above averages. Please
729 99b67c35 Spyros Trigazis
see the section `Mode of Operation`_  for more information one how the
730 99b67c35 Spyros Trigazis
two functions of the data collector interact.
731 99b67c35 Spyros Trigazis
732 b166dcfc Michele Tartara
Format of the query
733 b166dcfc Michele Tartara
-------------------
734 b166dcfc Michele Tartara
735 431ff2c1 Michele Tartara
.. include:: monitoring-query-format.rst
736 b166dcfc Michele Tartara
737 3301805f Michele Tartara
Instance disk status propagation
738 3301805f Michele Tartara
--------------------------------
739 9ef3e121 Michele Tartara
740 3301805f Michele Tartara
As for the instance status Ganeti has now only partial information about
741 3301805f Michele Tartara
its instance disks: in particular each node is unaware of the disk to
742 3301805f Michele Tartara
instance mapping, that exists only on the master.
743 9ef3e121 Michele Tartara
744 3301805f Michele Tartara
For this design doc we plan to fix this by changing all RPCs that create
745 3301805f Michele Tartara
a backend storage or that put an already existing one in use and passing
746 3301805f Michele Tartara
the relevant instance to the node. The node can then export these to the
747 3301805f Michele Tartara
status reporting tool.
748 9ef3e121 Michele Tartara
749 3301805f Michele Tartara
While we haven't implemented these RPC changes yet, we'll use Confd to
750 3301805f Michele Tartara
fetch this information in the data collectors.
751 9ef3e121 Michele Tartara
752 3301805f Michele Tartara
Plugin system
753 3301805f Michele Tartara
-------------
754 9ef3e121 Michele Tartara
755 3301805f Michele Tartara
The monitoring system will be equipped with a plugin system that can
756 3301805f Michele Tartara
export specific local information through it.
757 9ef3e121 Michele Tartara
758 3301805f Michele Tartara
The plugin system is expected to be used by local installations to
759 3301805f Michele Tartara
export any installation specific information that they want to be
760 3301805f Michele Tartara
monitored, about either hardware or software on their systems.
761 9ef3e121 Michele Tartara
762 3301805f Michele Tartara
The plugin system will be in the form of either scripts or binaries whose output
763 3301805f Michele Tartara
will be inserted in the report.
764 109e07c2 Guido Trotter
765 3301805f Michele Tartara
Eventually support for other kinds of plugins might be added as well, such as
766 3301805f Michele Tartara
plain text files which will be inserted into the report, or local unix or
767 3301805f Michele Tartara
network sockets from which the information has to be read.  This should allow
768 3301805f Michele Tartara
most flexibility for implementing an efficient system, while being able to keep
769 3301805f Michele Tartara
it as simple as possible.
770 109e07c2 Guido Trotter
771 109e07c2 Guido Trotter
Data collectors
772 109e07c2 Guido Trotter
---------------
773 109e07c2 Guido Trotter
774 109e07c2 Guido Trotter
In order to ease testing as well as to make it simple to reuse this
775 109e07c2 Guido Trotter
subsystem it will be possible to run just the "data collectors" on each
776 3301805f Michele Tartara
node without passing through the agent daemon.
777 109e07c2 Guido Trotter
778 9ef3e121 Michele Tartara
If a data collector is run independently, it should print on stdout its
779 9ef3e121 Michele Tartara
report, according to the format corresponding to a single data collector
780 3301805f Michele Tartara
report object, as described in the previous paragraphs.
781 109e07c2 Guido Trotter
782 109e07c2 Guido Trotter
Mode of operation
783 109e07c2 Guido Trotter
-----------------
784 109e07c2 Guido Trotter
785 109e07c2 Guido Trotter
In order to be able to report information fast the monitoring agent
786 109e07c2 Guido Trotter
daemon will keep an in-memory or on-disk cache of the status, which will
787 109e07c2 Guido Trotter
be returned when queries are made. The status system will then
788 109e07c2 Guido Trotter
periodically check resources to make sure the status is up to date.
789 109e07c2 Guido Trotter
790 109e07c2 Guido Trotter
Different parts of the report will be queried at different speeds. These
791 109e07c2 Guido Trotter
will depend on:
792 109e07c2 Guido Trotter
- how often they vary (or we expect them to vary)
793 109e07c2 Guido Trotter
- how fast they are to query
794 109e07c2 Guido Trotter
- how important their freshness is
795 109e07c2 Guido Trotter
796 109e07c2 Guido Trotter
Of course the last parameter is installation specific, and while we'll
797 109e07c2 Guido Trotter
try to have defaults, it will be configurable. The first two instead we
798 109e07c2 Guido Trotter
can use adaptively to query a certain resource faster or slower
799 109e07c2 Guido Trotter
depending on those two parameters.
800 109e07c2 Guido Trotter
801 3301805f Michele Tartara
When run as stand-alone binaries, the data collector will not using any
802 3301805f Michele Tartara
caching system, and just fetch and return the data immediately.
803 109e07c2 Guido Trotter
804 99b67c35 Spyros Trigazis
Since some performance collectors have to operate on a number of values
805 99b67c35 Spyros Trigazis
collected in previous times, we need a mechanism independent of the data
806 99b67c35 Spyros Trigazis
collector which will trigger the collection of those values and also
807 99b67c35 Spyros Trigazis
store them, so that they are available for calculation by the data
808 99b67c35 Spyros Trigazis
collectors.
809 99b67c35 Spyros Trigazis
810 99b67c35 Spyros Trigazis
To collect data periodically, a thread will be created by the monitoring
811 99b67c35 Spyros Trigazis
agent which will run the collection function of every data collector
812 99b67c35 Spyros Trigazis
that provides one. The values returned by the collection function of
813 99b67c35 Spyros Trigazis
the data collector will be saved in an appropriate map, associating each
814 99b67c35 Spyros Trigazis
value to the corresponding collector, using the collector's name as the
815 99b67c35 Spyros Trigazis
key of the map. This map will be stored in mond's memory.
816 99b67c35 Spyros Trigazis
817 99b67c35 Spyros Trigazis
For example: the collection function of the CPU load collector will
818 99b67c35 Spyros Trigazis
collect a CPU load value and save it in the map mentioned above. The
819 99b67c35 Spyros Trigazis
collection function will be called by the collector thread every t
820 99b67c35 Spyros Trigazis
milliseconds. When the report function of the collector is called, it
821 99b67c35 Spyros Trigazis
will process the last N values of the map and calculate the
822 99b67c35 Spyros Trigazis
corresponding average.
823 99b67c35 Spyros Trigazis
824 109e07c2 Guido Trotter
Implementation place
825 109e07c2 Guido Trotter
--------------------
826 109e07c2 Guido Trotter
827 109e07c2 Guido Trotter
The status daemon will be implemented as a standalone Haskell daemon. In
828 109e07c2 Guido Trotter
the future it should be easy to merge multiple daemons into one with
829 109e07c2 Guido Trotter
multiple entry points, should we find out it saves resources and doesn't
830 109e07c2 Guido Trotter
impact functionality.
831 109e07c2 Guido Trotter
832 109e07c2 Guido Trotter
The libekg library should be looked at for easily providing metrics in
833 109e07c2 Guido Trotter
json format.
834 109e07c2 Guido Trotter
835 109e07c2 Guido Trotter
Implementation order
836 109e07c2 Guido Trotter
--------------------
837 109e07c2 Guido Trotter
838 109e07c2 Guido Trotter
We will implement the agent system in this order:
839 109e07c2 Guido Trotter
840 3301805f Michele Tartara
- initial example data collectors (eg. for drbd and instance status).
841 3301805f Michele Tartara
- initial daemon for exporting data, integrating the existing collectors
842 3301805f Michele Tartara
- plugin system
843 109e07c2 Guido Trotter
- RPC updates for instance status reasons and disk to instance mapping
844 3301805f Michele Tartara
- cache layer for the daemon
845 109e07c2 Guido Trotter
- more data collectors
846 109e07c2 Guido Trotter
847 109e07c2 Guido Trotter
848 109e07c2 Guido Trotter
Future work
849 109e07c2 Guido Trotter
===========
850 109e07c2 Guido Trotter
851 109e07c2 Guido Trotter
As a future step it can be useful to "centralize" all this reporting
852 109e07c2 Guido Trotter
data on a single place. This for example can be just the master node, or
853 109e07c2 Guido Trotter
all the master candidates. We will evaluate doing this after the first
854 109e07c2 Guido Trotter
node-local version has been developed and tested.
855 109e07c2 Guido Trotter
856 109e07c2 Guido Trotter
Another possible change is replacing the "read-only" RPCs with queries
857 109e07c2 Guido Trotter
to the agent system, thus having only one way of collecting information
858 109e07c2 Guido Trotter
from the nodes from a monitoring system and for Ganeti itself.
859 109e07c2 Guido Trotter
860 109e07c2 Guido Trotter
One extra feature we may need is a way to query for only sub-parts of
861 109e07c2 Guido Trotter
the report (eg. instances status only). This can be done by passing
862 109e07c2 Guido Trotter
arguments to the HTTP GET, which will be defined when we get to this
863 109e07c2 Guido Trotter
funtionality.
864 109e07c2 Guido Trotter
865 109e07c2 Guido Trotter
Finally the :doc:`autorepair system design <design-autorepair>`. system
866 109e07c2 Guido Trotter
(see its design) can be expanded to use the monitoring agent system as a
867 109e07c2 Guido Trotter
source of information to decide which repairs it can perform.
868 109e07c2 Guido Trotter
869 109e07c2 Guido Trotter
.. vim: set textwidth=72 :
870 109e07c2 Guido Trotter
.. Local Variables:
871 109e07c2 Guido Trotter
.. mode: rst
872 109e07c2 Guido Trotter
.. fill-column: 72
873 109e07c2 Guido Trotter
.. End: