├── .editorconfig
├── .gitignore
├── LICENSE
├── README.md
├── etc
└── zabbix
│ └── zabbix_agentd.d
│ └── ic_azure.conf
└── python
├── Makefile
├── ic_azure
├── __init__.py
├── azure_client.py
├── azure_discover_dimensions.py
├── azure_discover_metrics.py
├── azure_discover_resources.py
├── azure_discover_webapp_instances.py
├── azure_logic_apps.py
├── azure_metric.py
└── azure_query.py
├── requirements.txt
├── setup.py
└── tests
└── __init__.py
/.editorconfig:
--------------------------------------------------------------------------------
1 | # http://editorconfig.org
2 |
3 | # A special property that should be specified at the top of the file outside of
4 | # any sections. Set to true to stop .editor config file search on current file
5 | root = true
6 |
7 | [*]
8 | # Indentation style
9 | # Possible values - tab, space
10 | indent_style = space
11 |
12 | # Indentation size in single-spaced characters
13 | # Possible values - an integer, tab
14 | indent_size = 4
15 |
16 | # Line ending file format
17 | # Possible values - lf, crlf, cr
18 | end_of_line = lf
19 |
20 | # File character encoding
21 | # Possible values - latin1, utf-8, utf-16be, utf-16le
22 | charset = utf-8
23 |
24 | # Denotes whether to trim whitespace at the end of lines
25 | # Possible values - true, false
26 | trim_trailing_whitespace = true
27 |
28 | # Denotes whether file should end with a newline
29 | # Possible values - true, false
30 | insert_final_newline = true
31 |
32 | [Makefile]
33 | indent_style = tab
34 | indent_size = 4
35 | end_of_line = lf
36 | charset = latin1
37 | trim_trailing_whitespace = true
38 | insert_final_newline = true
39 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.pyc
2 | *.egg-info
3 | .coverage
4 | .vscode
5 | checkstyle
6 | dist
7 | htmlcov
8 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # zabbix-azure-monitoring
2 |
3 | This python module provides Zabbix monitoring support for Azure resources.
4 |
5 |
6 |
7 | ## Requirements
8 |
9 | - Zabbix agent
10 | - pip3
11 | - azure-identity (installed automatically as dependency)
12 | - azure-mgmt-monitor (installed automatically as dependency)
13 | - azure-mgmt-resource (installed automatically as dependency)
14 | - msal (installed automatically as dependency)
15 | - msrest (installed automatically as dependency)
16 | - pyOpenSSL (installed automatically as dependency)
17 | - requests (installed automatically as dependency)
18 |
19 | ### VirtualEnv for development and building packages
20 | Creating and activating a VirtualEnv used for development and building new releases, activating said VirtualEnv and installing required dependencies.
21 | ```
22 | mkdir -p ~/virtualenv
23 | python3 -m venv ~/virtualenv/zabbix-azure-monitoring
24 | source ~/virtualenv/zabbix-azure-monitoring/bin/activate
25 | pip install -r python/requirements.txt
26 | pip install coverage
27 | pip install pycodestyle
28 | ```
29 |
30 | ### Linter errors
31 |
32 | Checking linter errors from source code (you should strive to fix these):
33 | ```
34 | source ~/virtualenv/zabbix-azure-monitoring/bin/activate
35 | make checkstyle
36 | ```
37 |
38 | ### Building a New Release
39 |
40 | - Update new version number to `setup.py`
41 | - Commit version number change to git
42 | - Run
43 | ```
44 | cd ~/.virtualenv/zabbix-azure-monitoring/python
45 | make clean
46 | make dist
47 | ```
48 | - Open explorer and pick up tar.gz file from python/dist folder
49 | - Create a new release in Github and upload tar.gz for it; tag `master` with the version number
50 |
51 | ## Installation
52 |
53 | 1. Install the python module using pip.
54 |
55 | ```
56 | pip3 install https://github.com/digiaiiris/zabbix-azure-monitoring/releases/download/1.23/azure-monitoring-1.23.tar.gz
57 | ```
58 |
59 | 2. Copy the [Zabbix agent configuration](etc/zabbix/zabbix_agent.d/ic_azure.conf) to /etc/zabbix/zabbix_agent.d directory.
60 |
61 | 3. Restart the Zabbix agent.
62 |
63 |
64 | ---
65 |
66 |
67 | ## Usage
68 |
69 | ### Resource discovery
70 |
71 | Item Syntax | Description | Units |
72 | ----------- | ----------- | ----- |
73 | azure.discover.resources[configuration_file] | Discover resources from Azure's services | {#RESOURCE} |
74 |
75 |
76 |
77 | ### Metric discovery
78 |
79 | Item Syntax | Description | Units |
80 | ----------- | ----------- | ----- |
81 | azure.discover.metrics[configuration_file, resource] | Discover metrics from Azure's resources | {#METRIC_CATEGORY}, {#METRIC_NAME} |
82 | azure.discover.metrics.namespace[configuration_file, resource, metric namespace] | Discover metrics from Azure's resources using metric namespace. | {#METRIC_CATEGORY}, {#METRIC_NAME} |
83 |
84 |
85 |
86 | ### Dimension discovery
87 |
88 | Item Syntax | Description | Units |
89 | ----------- | ----------- | ----- |
90 | azure.discover.dimensions[configuration_file, resource, metric_category/metric_name, dimension] | Discover dimensions from Azure's resources | {#DIMENSION} |
91 | azure.discover.dimensions.namespace[configuration_file, resource, metric_category/metric_name, dimension, metric namespace] | Discover dimensions from Azure's resources using metric namespace | {#DIMENSION} |
92 |
93 |
94 | Some examples of dimensions are:
95 |
96 | - request/performanceBucket
97 | - request/resultCode
98 | - operation/synthetic
99 | - cloud/roleInstance
100 | - request/success
101 | - cloud/roleName
102 |
103 | * Read more about metric dimensions here: https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/metrics-custom-overview?toc=%2Fazure%2Fazure-monitor%2Ftoc.json#dimension-keys
104 |
105 |
106 | Some examples of namespaces are:
107 |
108 | - azure.applicationinsights
109 | - insights.container/containers
110 | - insights.container/nodes
111 | - insights.container/pods
112 | - insights.container/persistentvolumes
113 |
114 | * Read more about metric namespaces here: https://aka.ms/metricnamespaces
115 |
116 |
117 |
118 | ### roleInstance and roleName discovery
119 |
120 | Item Syntax | Description | Units |
121 | ----------- | ----------- | ----- |
122 | azure.discover.roles[configuration_file, resource, metric_category/metric_name, dimension] | Discover roles from Azure's resources | {#ROLE_NAME} |
123 |
124 |
125 |
126 | ### Azure metrics
127 |
128 | Item Syntax | Description | Units |
129 | ----------- | ----------- | ----- |
130 | azure.metric[configuration_file, resource, metric_category/metric_name, statistic, timegrain, timeshift (optional)] | Retrieve metrics from Azure's resources | Count, Percent, Milliseconds, Seconds, etc.
131 | azure.metric.filter[configuration_file, resource, metric_category/metric_name, statistic, timegrain, timeshift, filter, timeshift (optional)] | Retrieve metrics from Azure's resources using a filter. | Count, Percent, Milliseconds, Seconds, etc.
132 | azure.metric.instance[configuration_file, resource, metric_category/metric_name, statistic, timegrain, timeshift, filter, timeshift (optional)] | Retrieve metrics from Azure's resources using a filter for "Instance" dimension. | Count, Percent, Milliseconds, Seconds, etc.
133 | azure.metric.roleinstance[configuration_file, resource, metric_category/metric_name, statistic, timegrain, timeshift, filter, timeshift (optional)] | Retrieve metrics from Azure's resources using a filter for "cloud/roleInstance" dimension. | Count, Percent, Milliseconds, Seconds, etc.
134 | azure.metric.rolename[configuration_file, resource, metric_category/metric_name, statistic, timegrain, timeshift, filter, timeshift (optional)] | Retrieve metrics from Azure's resources using a filter for "cloud/roleName" dimension. | Count, Percent, Milliseconds, Seconds, etc.
135 | azure.metric.phase[configuration_file, resource, metric_category/metric_name, statistic, timegrain, timeshift, filter, timeshift (optional)] | Retrieve metrics from Azure's resources using a filter for "phase" dimension. | Count, Percent, Milliseconds, Seconds, etc.
136 | azure.metric.status[configuration_file, resource, metric_category/metric_name, statistic, timegrain, timeshift, filter, timeshift (optional)] | Retrieve metrics from Azure's resources using a filter for "Status" dimension. | Count, Percent, Milliseconds, Seconds, etc.
137 | azure.metric.namespace[configuration_file, resource, metric_category/metric_name, statistic, timegrain, timeshift, namespace, timeshift (optional)] | Retrieve metrics from Azure's resources using a namespace. | Count, Percent, Milliseconds, Seconds, etc.
138 | azure.metric.namespace.controllername[configuration_file, resource, metric_category/metric_name, statistic, timegrain, metric namespace, controller name filter, timeshift (optional)] | Retrieve metrics from Azure's resources using a namespace and a filter for "controllerName" dimension. | Count, Percent, Milliseconds, Seconds, etc.
139 | azure.metric.namespace.phase[configuration_file, resource, metric_category/metric_name, statistic, timegrain, metric namespace, phase filter, timeshift (optional)] | Retrieve metrics from Azure's resources using a namespace and a filter for "phase" dimension. | Count, Percent, Milliseconds, Seconds, etc.
140 | azure.metric.namespace.status[configuration_file, resource, metric_category/metric_name, statistic, timegrain, metric namespace, status filter, timeshift (optional)] | Retrieve metrics from Azure's resources using a namespace and a filter for "Status" dimension. | Count, Percent, Milliseconds, Seconds, etc.
141 | azure.metric.namespace.filter[configuration_file, resource, metric_category/metric_name, statistic, timegrain, metric namespace, namespace filter, timeshift (optional)] | Retrieve metrics from Azure's resources using a namespace and filter. | Count, Percent, Milliseconds, Seconds, etc.
142 |
143 | * Filter parameter can be used to filter out using dimensions, e.g. "cloud/roleName eq ''".
144 | * Namespace parameter can be used to filter out using namespaces, e.g. "insights.container/nodes".
145 |
146 |
147 |
148 | ### Azure Kusto queries
149 |
150 | Item Syntax | Description | Response |
151 | ----------- | ----------- | -------- |
152 | azure.application.insights[configuration_file, application ID, query] | Run Kusto query to Application Insights REST API | JSON
153 | azure.log.analytics[configuration_file, workspace ID, query] | Run Kusto query to Log Analytics REST API | JSON
154 |
155 | * The first parameter should be the path to the configuration file.
156 | * Application Insights queries need application ID as second parameter or a matching key to locate an ID from the configuration file. This can be obtained from "Azure Portal > Application Insights > API Access".
157 | * Log Analytics queries need workspace ID as second parameter or a matching key to locate an ID from the configuration file. This can be obtained from "Azure Portal > Log Analytics workspace > Overview".
158 | * The last parameter can either be a matching key to locate the query from the configuration file or the Kusto query itself.
159 |
160 |
161 |
162 | ### Azure Logic App queries
163 |
164 | Item Syntax | Description | Response |
165 | ----------- | ----------- | -------- |
166 | azure.logic.apps[configuration_file, resource_group] | Discover Azure Logic App workflows | {#WORKFLOW_ID}, {#WORKFLOW_NAME}
167 | azure.logic.apps[configuration_file, resource_group, workflow_name] | Discover Azure Logic App workflow triggers | {#TRIGGER_ID}, {#TRIGGER_NAME}
168 | azure.logic.apps[configuration_file, resource_group, workflow_name, trigger_name ] | Discover Azure Logic App workflow trigger history | {#HISTORY_ID}, {#HISTORY_NAME}, {#HISTORY_STATUS}
169 | azure.metric.standard.succeed[configuration_file, resource_group, metric, statistic, timegrain, filter, status, (optional:timeshift)] | Logic Apps Standard workflow completed Runs/Triggers with given status | Count
170 | azure.metric.standard.other[configuration_file, resource_group, metric, statistic, timegrain, filter, status, (optional:timeshift)] | Logic Apps Standard workflow completed Runs/Triggers without given status | Count
171 |
172 | ### Azure Web App instance discovery
173 |
174 | Item Syntax | Description | Response |
175 | ----------- | ----------- | -------- |
176 | azure.webapp.discover.instances[configuration_file, resource_group, webapp_name] | Discover Web App Scale-Out Instances | {#MACHINE_NAME}, {#STATE}, {#STATUS_URL}, {#HEALTHCHECK_URL}
177 |
178 |
179 | ---
180 |
181 |
182 |
183 | ## Examples
184 |
185 | ### Example configuration file
186 | ```
187 | {
188 | "client_id": "",
189 | "subscription_id": "",
190 | "pemfile": "",
191 | "tenant_id": "",
192 | "application_ids": {
193 | "": "",
194 | "": "",
195 | "": ""
196 | },
197 | "workspace_ids": {
198 | "": "",
199 | "": "",
200 | "": ""
201 | },
202 | "kusto_queries": {
203 | "": "",
204 | "": "",
205 | "": ""
206 | },
207 | "resources": {
208 | "": "",
209 | "": "",
210 | "": ""
211 | }
212 | }
213 | ```
214 |
215 |
216 |
217 | ### CLI example, list available resources from Azure's services
218 | ```
219 | azure_discover_resources
220 | ```
221 |
222 |
223 |
224 | ### CLI example, list available metrics from resource
225 | ```
226 | azure_discover_metrics
227 | ```
228 |
229 |
230 |
231 | ### CLI example, list available dimensions from resource
232 | ```
233 | azure_discover_dimensions
234 | azure_discover_dimensions --metric-namespace
235 | ```
236 |
237 |
238 |
239 | ### CLI example, list available roleInstances and roleNames from resource
240 | ```
241 | azure_discover_roles
242 | ```
243 |
244 |
245 |
246 | ### CLI example, retrieve metric from resource
247 | ```
248 | azure_metric --timeshift
249 | ```
250 |
251 |
252 |
253 | ### Possible values for statistic-argument
254 |
255 | Average, Count, Minimum, Maximum, Total
256 |
257 |
258 |
259 | ### Possible values for timegrain-argument
260 |
261 | Value | Description |
262 | ----- | ------------ |
263 | PT1M | One minute |
264 | PT5M | Five minutes |
265 | PT1H | One hour |
266 | PT3H | Three hours |
267 | P1D | One day |
268 |
269 |
270 |
271 | ### Timeshift-argument
272 |
273 | Timeshift argument expects the number of minutes to delay the query. In some cases the data is not
274 | available instantly so it's advisable to delay the data retrieval. A good starting point is to
275 | delay all metric queries for 5 minutes.
276 |
277 |
278 |
279 | ### CLI example, Kusto queries
280 | ```
281 | source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate
282 | azure_query --id application_insights
283 | azure_query --id log_analytics
284 | ```
285 |
--------------------------------------------------------------------------------
/etc/zabbix/zabbix_agentd.d/ic_azure.conf:
--------------------------------------------------------------------------------
1 | # Azure metric retrieval. Parameters: configuration file, resource, metric, statistic, timegrain (optional: filter, metric-namespace, timeshift)
2 | UserParameter=azure.metric[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" $([ -n "$6" ] && echo "--timeshift $6")
3 | UserParameter=azure.metric.filter[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --filter "$6" $([ -n "$7" ] && echo "--timeshift $7")
4 | UserParameter=azure.metric.namespace[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --metric-namespace "$6" $([ -n "$7" ] && echo "--timeshift $7")
5 | UserParameter=azure.metric.namespace.filter[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --metric-namespace "$6" --filter "$7" $([ -n "$8" ] && echo "--timeshift $8")
6 |
7 | # Azure metric retrieval using eq filter for a string value. Parameters: configuration file, resource, metric, statistic, timegrain, filter field, filter value (string), (optional: timeshift)
8 | UserParameter=azure.metric.filter.eq[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --filter "$6 eq '$7'" $([ -n "$8" ] && echo "--timeshift $8")
9 |
10 | # Azure metric retrieval from a specified metric namespace using eq filter for a string value. Parameters: configuration file, resource, metric, statistic, timegrain, namespace, filter field, filter value (string), (optional: timeshift)
11 | UserParameter=azure.metric.namespace.filter.eq[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --metric-namespace "$6" --filter "$7 eq '$8'" $([ -n "$9" ] && echo "--timeshift $9")
12 |
13 | # Azure metric retrieval using pre-defined filters. Parameters: configuration file, resource, metric, statistic, timegrain, filter, (optional: timeshift)
14 | UserParameter=azure.metric.instance[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --filter "Instance eq '$6'" $([ -n "$7" ] && echo "--timeshift $7")
15 | UserParameter=azure.metric.roleinstance[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --filter "cloud/roleInstance eq '$6'" $([ -n "$7" ] && echo "--timeshift $7")
16 | UserParameter=azure.metric.rolename[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --filter "cloud/roleName eq '$6'" $([ -n "$7" ] && echo "--timeshift $7")
17 | UserParameter=azure.metric.phase[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --filter "phase eq '$6'" $([ -n "$7" ] && echo "--timeshift $7")
18 | UserParameter=azure.metric.status[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --filter "Status eq '$6'" $([ -n "$7" ] && echo "--timeshift $7")
19 |
20 | # Azure metric retrieval for completed Runs/Triggers with status info in Logic App Standard workflows.
21 | # Parameters: configuration file, resource, metric, statistic, timegrain, filter, status, (optional: timeshift)
22 | UserParameter=azure.metric.standard.succeed[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --filter "workflowName eq '$6' and status eq '$7'" $([ -n "$8" ] && echo "--timeshift $8")
23 | UserParameter=azure.metric.standard.other[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --filter "workflowName eq '$6' and status ne '$7'" $([ -n "$8" ] && echo "--timeshift $8")
24 |
25 | # Azure metric retrieval using node and device dimensions
26 | # Parameters: configuration file, resource, metric, statistic, timegrain, node name, device name, (optional: timeshift)
27 | UserParameter=azure.metric.node_device[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --filter "node eq '$6' and device eq '$7'" $([ -n "$8" ] && echo "--timeshift $8")
28 |
29 | # Azure metric retrieval using metric namespace and pre-defined filters. Parameters: configuration file, resource, metric, statistic, timegrain, metric-namespace, filter, (optional: timeshift)
30 | UserParameter=azure.metric.namespace.controllername[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --metric-namespace "$6" --filter "controllerName eq '$7'" $([ -n "$8" ] && echo "--timeshift $8")
31 | UserParameter=azure.metric.namespace.phase[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --metric-namespace "$6" --filter "phase eq '$7'" $([ -n "$8" ] && echo "--timeshift $8")
32 | UserParameter=azure.metric.namespace.status[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_metric "$1" "$2" "$3" "$4" "$5" --metric-namespace "$6" --filter "Status eq '$7'" $([ -n "$8" ] && echo "--timeshift $8")
33 |
34 | # Azure metric discovery. Parameters: configuration file, resource (optional: metric-namespace)
35 | UserParameter=azure.discover.metrics[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_discover_metrics "$1" "$2"
36 | UserParameter=azure.discover.metrics.namespace[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_discover_metrics "$1" "$2" --metric-namespace "$3"
37 |
38 | # Azure dimension discovery. Parameters: configuration file, resource, metric, dimension
39 | UserParameter=azure.discover.dimensions[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_discover_dimensions "$1" "$2" "$3" "$4"
40 | UserParameter=azure.discover.roles[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_discover_dimensions "$1" "$2" "$3" "$4"
41 |
42 | # Azure multidimension discovery. Parameters: configuration file, resource, metric, dimension, second dimension (extent)
43 | UserParameter=azure.discover.multidimensions[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_discover_dimensions "$1" "$2" "$3" "$4" --extent "$5"
44 |
45 | # Azure dimension discovery using metric namespace. Parameters: configuration file, resource, metric, dimension, metric-namespace
46 | UserParameter=azure.discover.dimensions.namespace[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_discover_dimensions "$1" "$2" "$3" "$4" --metric-namespace "$5"
47 |
48 | # Azure multidimension discovery using metric namespace. Parameters: configuration file, resource, metric, dimension, second dimension (extent), metric-namespace
49 | UserParameter=azure.discover.multidimensions.namespace[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_discover_dimensions "$1" "$2" "$3" "$4" --extent "$5" --metric-namespace "$6"
50 |
51 | # Azure resource discovery. Parameters: configuration file
52 | UserParameter=azure.discover.resources[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_discover_resources "$1"
53 |
54 | # Azure Kusto or Log Analytics query. Parameters: configuration file, application ID or workspace ID, query
55 | UserParameter=azure.kusto[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_query "application_insights" "$1" "$3" --id "$2"
56 | UserParameter=azure.application.insights[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_query "application_insights" "$1" "$3" --id "$2"
57 | UserParameter=azure.log.analytics[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_query "log_analytics" "$1" "$3" --id "$2"
58 | UserParameter=azure.resource.graph[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_query "resource_graph" "$1" "$2"
59 |
60 | # Azure Logic App query. Parameters: configuration file, resource_group, workflow_name, trigger_name
61 | UserParameter=azure.logic.apps.discover.workflows[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_logic_apps "$1" "$2"
62 | UserParameter=azure.logic.apps.discover.workflow.triggers[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_logic_apps "$1" "$2" --workflow "$3"
63 | UserParameter=azure.logic.apps.discover.workflow.trigger.history[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_logic_apps "$1" "$2" --workflow "$3" --trigger "$4"
64 |
65 | # Discover Web App scale-out instances. Parameters: configuration file, resource group, webapp name
66 | UserParameter=azure.webapp.discover.instances[*],source /opt/digiaiiris/virtualenv/zabbix-azure-monitoring/bin/activate && azure_discover_webapp_instances "$1" "$2" "$3"
67 |
--------------------------------------------------------------------------------
/python/Makefile:
--------------------------------------------------------------------------------
1 | scripts := $(wildcard ic_azure/*.py)
2 | tests := $(wildcard tests/*.py)
3 |
4 | all: clean checkstyle htmlcov dist
5 |
6 | checkstyle: $(scripts) $(tests) setup.py
7 | find . -name "*.py" -exec pycodestyle --max-line-length=100 \{\} \; | tee checkstyle
8 |
9 | .coverage: $(scripts) $(tests)
10 | coverage run --source ic_azure -m unittest discover -s tests/
11 |
12 | test: .coverage
13 | coverage report -m
14 |
15 | htmlcov: .coverage
16 | coverage html
17 |
18 | dist: $(scripts) $(tests) setup.py
19 | python3 setup.py sdist --format=gztar
20 |
21 | clean:
22 | find . -name "*.pyc" -delete
23 | rm -rf *.egg-info
24 | rm -rf dist
25 | rm -rf htmlcov
26 | rm -f .coverage
27 | rm -f checkstyle
28 |
--------------------------------------------------------------------------------
/python/ic_azure/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digiaiiris/zabbix-azure-monitoring/7eb408de76c9b9eec5a7ad32c43a966394726384/python/ic_azure/__init__.py
--------------------------------------------------------------------------------
/python/ic_azure/azure_client.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | # Python imports
4 | import json as jsonlib
5 | import os
6 | import requests
7 | import sys
8 |
9 | # 3rd-party imports
10 | import msal
11 | import OpenSSL
12 |
13 | from azure.identity import CertificateCredential
14 | from azure.mgmt.monitor import MonitorManagementClient
15 | from azure.mgmt.resource import ResourceManagementClient
16 |
17 |
18 | class AzureClient:
19 | """ Azure API client class. """
20 |
21 | def __init__(self, args: dict, api: str = None, queries: bool = False) -> None:
22 |
23 | """ Initializes connection to Azure service. """
24 |
25 | # Reset configuration file path
26 | config_file = ""
27 |
28 | # Retrieve configuration file path
29 | if args.config.startswith("/"):
30 | config_file = args.config
31 | elif os.getenv("AZURE_CONFIG_PATH") is not None:
32 | config_file = os.path.join(
33 | os.getenv("AZURE_CONFIG_PATH"),
34 | args.config
35 | )
36 | else:
37 | config_file = os.path.join(
38 | "/opt/digiaiiris/zabbix-agent/scripts-config/zabbix-azure-monitoring",
39 | args.config
40 | )
41 |
42 | # Check if configuration file exists
43 | if not os.path.exists(config_file):
44 | raise ValueError("Configuration file not found: {}".format(
45 | config_file
46 | ))
47 |
48 | # Read configuration file
49 | try:
50 | with open(config_file) as fh:
51 | config = jsonlib.load(fh)
52 | except IOError:
53 | raise IOError("I/O error while reading configuration: {}".format(
54 | config_file
55 | ))
56 |
57 | # Azure specific settings
58 | self.api = "https://management.core.windows.net/"
59 | self.login_endpoint = "https://login.microsoftonline.com"
60 |
61 | # Set instance variables
62 | self.application_ids = {} # Application IDs for Kusto queries.
63 | self.queries = {} # Kusto or Log Analytics queries
64 | self.resources = {} # Resources for easier access
65 | self.subscription_id = "" # Azure Subscription ID
66 | self.timeout = 5 # Default timeout for queries
67 | self.workspace_ids = {} # Workspace IDs for Log Analytics queries
68 |
69 | # Check configurations for necessary fields
70 | for item in ["client_id", "pemfile", "subscription_id", "tenant_id"]:
71 | if not config[item]:
72 | raise Exception("Configurations are missing {}.".format(item))
73 |
74 | # Check if PEM-file exists
75 | if not os.path.exists(config["pemfile"]):
76 | raise Exception("PEM-file not found: {}".format(config["pemfile"]))
77 |
78 | # Read PEM-file
79 | try:
80 | with open(config["pemfile"], "r") as file:
81 | config["key"] = file.read()
82 | except IOError:
83 | raise Exception("I/O error while reading PEM-file: {}".format(
84 | config["pemfile"]
85 | ))
86 |
87 | # Retrieve necessary configurations
88 | self.subscription_id = config["subscription_id"]
89 |
90 | # Azure API URL for Kusto or Log Analytics queries
91 | if api:
92 | self.api = api
93 |
94 | # Retrieve application/workspace IDs and queries
95 | if queries:
96 | if config.get("application_ids"):
97 | self.application_ids = config.get("application_ids")
98 | if config.get("workspace_ids"):
99 | self.workspace_ids = config.get("workspace_ids")
100 | if config.get("kusto_queries"):
101 | self.queries = config.get("kusto_queries")
102 |
103 | # Check configuration for resources
104 | if config.get("resources"):
105 | self.resources = config.get("resources")
106 |
107 | # Check configuration for timeout
108 | if config.get("timeout"):
109 | self.timeout = config["timeout"]
110 |
111 | # Check if certificate file exists
112 | if not os.path.exists(config["pemfile"]):
113 | sys.exit("Certificate file does not exist.")
114 |
115 | # Read certificate file
116 | with open(config["pemfile"], "rb") as fh:
117 | certificate_str = fh.read()
118 |
119 | # Load certificate and generate thumbprint
120 | certificate = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, certificate_str)
121 | thumbprint = certificate.digest("sha1").decode("utf-8")
122 |
123 | # Load private key
124 | private_key = OpenSSL.crypto.load_privatekey(OpenSSL.crypto.FILETYPE_PEM, certificate_str)
125 |
126 | # Create confidential client app instance
127 | app = msal.ConfidentialClientApplication(
128 | config["client_id"],
129 | authority=f'{self.login_endpoint}/{config["tenant_id"]}',
130 | client_credential={
131 | "thumbprint": thumbprint.replace(":", ""),
132 | "private_key": private_key.to_cryptography_key()
133 | }
134 | )
135 |
136 | # Acquire token
137 | response = app.acquire_token_for_client(
138 | scopes=[f"{self.api}/.default"]
139 | )
140 |
141 | # Check if response has token
142 | if "access_token" in response:
143 | self.access_token = response["access_token"]
144 | else:
145 | sys.exit("Token missing from response.")
146 |
147 | # Create credentials object
148 | self.credentials = CertificateCredential(
149 | config["tenant_id"],
150 | config["client_id"],
151 | config["pemfile"]
152 | )
153 |
154 | def client(self):
155 | """ Initializes new monitoring client for Azure services. """
156 |
157 | self._client = None
158 |
159 | # Instantiate new monitoring client
160 | self._client = MonitorManagementClient(
161 | self.credentials,
162 | self.subscription_id
163 | )
164 |
165 | return self._client
166 |
167 | def resource_client(self):
168 | """ Initializes new resource client for Azure services. """
169 |
170 | self._resource_client = None
171 |
172 | # Instantiate new resource client
173 | self._resource_client = ResourceManagementClient(
174 | self.credentials,
175 | self.subscription_id
176 | )
177 |
178 | return self._resource_client
179 |
180 | def query(self, method="GET", json=None, url=""):
181 | """ Run query to Azure REST APIs. """
182 |
183 | # Define request headers
184 | headers = {
185 | "Authorization": f"Bearer {self.access_token}",
186 | "Content-Type": "application/json"
187 | }
188 |
189 | # Declare variables
190 | response = None
191 |
192 | # Try to run request
193 | try:
194 | if method == "GET":
195 | response = requests.get(
196 | headers=headers,
197 | json=json,
198 | timeout=self.timeout,
199 | url=url
200 | )
201 | elif method == "POST":
202 | response = requests.post(
203 | headers=headers,
204 | json=json,
205 | timeout=self.timeout,
206 | url=url
207 | )
208 | else:
209 | raise Exception("Invalid method. {}".format(method))
210 | except requests.exceptions.ConnectTimeout as ex:
211 | sys.exit(f"The request timed out while trying to connect to the remote server. {ex}")
212 | except requests.exceptions.ReadTimeout as ex:
213 | sys.exit(f"The server did not send any data in the allotted amount of time. {ex}")
214 | except requests.exceptions.ConnectionError as ex:
215 | sys.exit(f"A Connection error occurred: {ex}")
216 | except requests.exceptions.HTTPError as ex:
217 | sys.exit(f"An HTTP error occurred. {ex}")
218 | except requests.exceptions.Timeout as ex:
219 | sys.exit(f"The request timed out. {ex}")
220 | except requests.exceptions.TooManyRedirects as ex:
221 | sys.exit(f"Too many redirects. {ex}")
222 | except requests.exceptions.URLRequired as ex:
223 | sys.exit(f"A valid URL is required to make a request. {ex}")
224 | except requests.exceptions.RequestException as ex:
225 | sys.exit(
226 | f"There was an ambiguous exception that occurred while handling your request. {ex}"
227 | )
228 | except Exception as ex:
229 | sys.exit(f"Unknown exception occured: {ex}")
230 |
231 | # Check status code
232 | if hasattr(response, "status_code"):
233 | if response.status_code != 200:
234 | raise Exception("Status code error: {}, status code: {}".format(
235 | response.text,
236 | response.status_code
237 | ))
238 |
239 | # Check response before proceeding
240 | if not response:
241 | sys.exit("Unable to retrieve response.")
242 |
243 | # Return JSON response
244 | return response.json()
245 |
246 |
247 | if __name__ == "__main__":
248 | pass
249 |
--------------------------------------------------------------------------------
/python/ic_azure/azure_discover_dimensions.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | # Python imports
4 | from datetime import datetime, timedelta, timezone
5 | from argparse import ArgumentParser
6 | import json
7 | import sys
8 |
9 | # Azure client imports
10 | from ic_azure.azure_client import AzureClient
11 |
12 |
13 | class AzureDiscoverDimensions(object):
14 | """Retrieve dimensions from Azure's resource"""
15 |
16 | def __init__(self, azure_client):
17 | self._client = azure_client.client()
18 | self.subscription_id = azure_client.subscription_id
19 | self.resources = azure_client.resources
20 |
21 | def get_data(self, resource, metric, queryfilter, metric_namespace):
22 |
23 | # Calculate start/end times
24 | end_time = datetime.now(timezone.utc) - timedelta(minutes=5)
25 | start_time = end_time - timedelta(hours=1)
26 |
27 | try:
28 | # Retrieve instance data
29 | metrics_data = self._client.metrics.list(
30 | resource,
31 | timespan="{}/{}".format(
32 | start_time.strftime('%Y-%m-%dT%H:%M:%SZ'),
33 | end_time.strftime('%Y-%m-%dT%H:%M:%SZ')
34 | ),
35 | interval="PT1H",
36 | metricnames=metric,
37 | aggregation="Total",
38 | result_type="Metadata",
39 | filter=queryfilter,
40 | metricnamespace=metric_namespace
41 | )
42 | except Exception as error:
43 | sys.exit(f"Client request failed. {error}")
44 |
45 | return metrics_data
46 |
47 | # Method to retrieve dimensions from Azure's resource
48 | def get_dimensions(self, resource, metric, dimension, extent, metric_namespace):
49 |
50 | # Declare variables
51 | dimensions_list = []
52 |
53 | # Read resource from config using key
54 | if not resource.startswith("/subscriptions"):
55 | resource = self.resources.get(resource)
56 |
57 | filter = f"{dimension} eq '*'"
58 | result = self.get_data(resource, metric, filter, metric_namespace)
59 |
60 | # Loop through metric data and retrieve instances
61 | for item in result.value:
62 | for timeserie in item.timeseries:
63 | for data in timeserie.metadatavalues:
64 | name = data.__dict__.get("value")
65 |
66 | # Don't add duplicates into dimensions list
67 | if any(obj['{#DIMENSION}'] == name for obj in dimensions_list):
68 | continue
69 |
70 | # Get second dimensions (extents) for the discovered resource
71 | if extent:
72 | extent_filter = f"{dimension} eq '{name}' and {extent} eq '*'"
73 | extent_data = self.get_data(
74 | resource,
75 | metric,
76 | extent_filter,
77 | metric_namespace
78 | )
79 |
80 | # Loop through metric data and retrieve instances
81 | for property in extent_data.value:
82 | for serie in property.timeseries:
83 | for info in serie.metadatavalues:
84 | name2 = info.__dict__.get("value")
85 | dimensions_list.append({
86 | "{#DIMENSION}": name,
87 | "{#EXTENT}": name2
88 | })
89 |
90 | # Add only first dimension names to list if no second dimension used
91 | else:
92 | dimensions_list.append({"{#DIMENSION}": name, "{#ROLE_NAME}": name})
93 |
94 | return dimensions_list
95 |
96 |
97 | def main(args=None):
98 | parser = ArgumentParser(
99 | description="Retrieve dimensions from Azure's resource"
100 | )
101 |
102 | parser.add_argument("config", type=str, help="Path to configuration file")
103 | parser.add_argument("resource", type=str, help="Azure resource to use")
104 | parser.add_argument("metric", type=str, help="Metric to obtain")
105 | parser.add_argument("dimension", type=str, help="Primary dimension to use, i.e. node")
106 | parser.add_argument("--extent", default=None, type=str,
107 | help="Second dimension (extent) to use, i.e. device")
108 | parser.add_argument("-m", "--metric-namespace", default=None, type=str,
109 | dest="metric_namespace",
110 | help="Metric namespace for Azure resource query.")
111 |
112 | args = parser.parse_args(args)
113 |
114 | # Instantiate Azure client
115 | azure_client = AzureClient(args)
116 |
117 | # Instantiate role discovery
118 | client = AzureDiscoverDimensions(azure_client)
119 |
120 | # Find dimensions using discovery
121 | dimension_data = client.get_dimensions(
122 | args.resource,
123 | args.metric,
124 | args.dimension,
125 | args.extent,
126 | args.metric_namespace
127 | )
128 |
129 | # Output dimensions
130 | discovery = {"data": dimension_data}
131 | print(json.dumps(discovery))
132 |
133 |
134 | if __name__ == "__main__":
135 | main()
136 |
--------------------------------------------------------------------------------
/python/ic_azure/azure_discover_metrics.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | # Python imports
4 | import json
5 | from argparse import ArgumentParser
6 |
7 | # Azure client imports
8 | from ic_azure.azure_client import AzureClient
9 |
10 |
11 | class AzureDiscoverMetrics(object):
12 | """Discover metrics from Azure's resources."""
13 |
14 | def __init__(self, azure_client):
15 | self._client = azure_client.client()
16 | self.subscription_id = azure_client.subscription_id
17 | self.resources = azure_client.resources
18 |
19 | def find_services(self, resource, metric_namespace):
20 | servicesList = []
21 |
22 | # Read resource from config using key
23 | if not resource.startswith("/subscriptions"):
24 | resource = self.resources.get(resource)
25 |
26 | # List metrics from resource
27 | for metric in self._client.metric_definitions.list(
28 | resource,
29 | metricnamespace=metric_namespace
30 | ):
31 | servicesList.append(metric.name.value)
32 |
33 | return servicesList
34 |
35 |
36 | def main(args=None):
37 | parser = ArgumentParser(
38 | description="Discover metrics from Azure's resources."
39 | )
40 |
41 | parser.add_argument("config", type=str, help="Path to configuration file")
42 | parser.add_argument("resource", type=str, help="Azure resource to use")
43 | parser.add_argument("-m", "--metric-namespace", default=None, type=str,
44 | dest="metric_namespace",
45 | help="Metric namespace for Azure resource query.")
46 |
47 | args = parser.parse_args(args)
48 |
49 | # Instantiate Azure client
50 | azure_client = AzureClient(args)
51 |
52 | # Instantiate metric discovery
53 | client = AzureDiscoverMetrics(azure_client)
54 |
55 | # Find metric services using discovery
56 | servicesList = client.find_services(
57 | args.resource,
58 | args.metric_namespace
59 | )
60 |
61 | # Create dictionary from metrics data
62 | names = []
63 | for item in servicesList:
64 | names.append({
65 | "{#METRIC_CATEGORY}": item.split("/")[0],
66 | "{#METRIC_NAME}": item.split("/")[-1]
67 | })
68 |
69 | # Output metric services
70 | discovery = {"data": names}
71 | print(json.dumps(discovery))
72 |
73 |
74 | if __name__ == "__main__":
75 | main()
76 |
--------------------------------------------------------------------------------
/python/ic_azure/azure_discover_resources.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | # Python imports
4 | import json
5 | from argparse import ArgumentParser
6 |
7 | # Azure client imports
8 | from ic_azure.azure_client import AzureClient
9 |
10 |
11 | class AzureDiscoverResources(object):
12 | """Discover resources from Azure's services."""
13 |
14 | def __init__(self, azure_client):
15 | self._client = azure_client.resource_client()
16 |
17 | def find_resources(self):
18 |
19 | # Declare variables
20 | resources = []
21 |
22 | # List resources and tags using client
23 | for resource in self._client.resources.list():
24 |
25 | id_splitted = resource.id.split("/")
26 |
27 | # Apply resource data
28 | resource_data = {
29 | "{#RESOURCE}": resource.id,
30 | "{#RESOURCE_GROUP}": id_splitted[4],
31 | "{#RESOURCE_TYPE}": id_splitted[6] + "/" + id_splitted[7],
32 | "{#RESOURCE_NAME}": id_splitted[-1]
33 | }
34 |
35 | if len(id_splitted) > 9:
36 | resource_data["{#RESOURCE_TYPE}"] += "/" + id_splitted[9]
37 |
38 | # Additionally return possible tags
39 | if resource.tags:
40 | for tag in resource.tags:
41 | resource_data["{#TAG_" + tag.upper() + "}"] = resource.tags[tag]
42 |
43 | # Set resource data into resources list
44 | resources.append(resource_data)
45 |
46 | return resources
47 |
48 |
49 | def main(args=None):
50 | parser = ArgumentParser(
51 | description="Discover resources from Azure's services"
52 | )
53 |
54 | parser.add_argument("config", type=str, help="Path to configuration file")
55 |
56 | args = parser.parse_args(args)
57 |
58 | # Instantiate Azure resource client
59 | azure_resource_client = AzureClient(args)
60 |
61 | # Instantiate resource discovery
62 | resource_client = AzureDiscoverResources(azure_resource_client)
63 |
64 | # Find resources using discovery
65 | resources = resource_client.find_resources()
66 |
67 | # Output resources
68 | print(json.dumps({"data": resources}))
69 |
70 |
71 | if __name__ == "__main__":
72 | main()
73 |
--------------------------------------------------------------------------------
/python/ic_azure/azure_discover_webapp_instances.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | # Python imports
4 | import json
5 | from argparse import ArgumentParser
6 |
7 | # Azure client imports
8 | from ic_azure.azure_client import AzureClient
9 |
10 |
11 | def main(args=None):
12 | """Discover Web App scale-out instances.
13 | Uses the following REST API:
14 | https://learn.microsoft.com/en-us/rest/api/appservice/web-apps/list-instance-identifiers?view=rest-appservice-2022-03-01 # noqa
15 | """
16 |
17 | parser = ArgumentParser(
18 | description="Discover WebApp scale-out instances"
19 | )
20 |
21 | parser.add_argument("config", type=str, help="Path to configuration file")
22 | parser.add_argument("resource_group", type=str,
23 | help="Resource group name.")
24 | parser.add_argument("webapp", type=str, help="Web App name")
25 | args = parser.parse_args(args)
26 |
27 | # Instantiate Azure client
28 | azure_client = AzureClient(args)
29 |
30 | # Generate query base URL
31 | url = "https://management.azure.com"
32 | url += "/subscriptions/{}".format(azure_client.subscription_id)
33 | url += "/resourceGroups/{}".format(args.resource_group)
34 | url += "/providers/Microsoft.Web/sites"
35 | url += "/{}".format(args.webapp)
36 | url += "/instances?api-version=2022-03-01"
37 |
38 | # Run query to API
39 | response = azure_client.query(method="GET", url=url)
40 |
41 | # Print results depending on arguments
42 | discovery = []
43 | for item in response.get("value"):
44 | props = item.get("properties")
45 | discovery.append({
46 | "{#MACHINE_NAME}": props.get("machineName"),
47 | "{#STATE}": props.get("state"),
48 | "{#STATUS_URL}": props.get("statusUrl"),
49 | "{#HEALTHCHECK_URL}": props.get("healthCheckUrl")
50 | })
51 |
52 | # Output discovery
53 | discovery = {"data": discovery}
54 | print(json.dumps(discovery))
55 |
56 |
57 | if __name__ == "__main__":
58 | main()
59 |
--------------------------------------------------------------------------------
/python/ic_azure/azure_logic_apps.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | # Python imports
4 | import json
5 | from argparse import ArgumentParser
6 |
7 | # Azure client imports
8 | from ic_azure.azure_client import AzureClient
9 |
10 |
11 | def main(args=None):
12 | parser = ArgumentParser(
13 | description="Discover workflows from Azure Logic Apps."
14 | )
15 |
16 | parser.add_argument("config", type=str, help="Path to configuration file")
17 | parser.add_argument("resource_group", type=str,
18 | help="Resource group name.")
19 | parser.add_argument("-t", "--trigger", dest="trigger", type=str,
20 | help="Logic App trigger name.")
21 | parser.add_argument("-w", "--workflow", dest="workflow", type=str,
22 | help="Logic App workflow name.")
23 | parser.add_argument("--version", dest="version", default="2016-06-01",
24 | type=str, help="Azure REST API version.")
25 |
26 | args = parser.parse_args(args)
27 |
28 | # Instantiate Azure client
29 | azure_client = AzureClient(args)
30 |
31 | # Generate query base URL
32 | url = "https://management.azure.com"
33 | url += "/subscriptions/{}".format(azure_client.subscription_id)
34 | url += "/resourceGroups/{}".format(args.resource_group)
35 | url += "/providers/Microsoft.Logic"
36 |
37 | # Modify query based on arguments
38 | if args.trigger: # Trigger history
39 | url += "/workflows/{}".format(args.workflow)
40 | url += "/triggers/{}".format(args.trigger)
41 | url += "/histories?api-version={}".format(args.version)
42 | elif args.workflow: # Triggers
43 | url += "/workflows/{}".format(args.workflow)
44 | url += "/triggers?api-version={}".format(args.version)
45 | else: # Workflows
46 | url += "/workflows?api-version={}".format(args.version)
47 |
48 | # Run query to API
49 | response = azure_client.query(method="GET", url=url)
50 |
51 | # Print results depending on arguments
52 | discovery = []
53 | for item in response.get("value"):
54 | if args.trigger: # Trigger history
55 | discovery.append({
56 | "{#HISTORY_ID}": item.get("id"),
57 | "{#HISTORY_STATUS}": item.get("properties").get("status"),
58 | "{#HISTORY_NAME}": item.get("name")
59 | })
60 | continue
61 |
62 | # Only include enabled items of triggers and workflows
63 | if item.get("properties").get("state") != "Enabled":
64 | continue
65 |
66 | if args.workflow: # Triggers
67 | discovery.append({
68 | "{#TRIGGER_ID}": item.get("id"),
69 | "{#TRIGGER_NAME}": item.get("name")
70 | })
71 | else: # Workflows
72 | discovery.append({
73 | "{#WORKFLOW_ID}": item.get("id"),
74 | "{#WORKFLOW_NAME}": item.get("name")
75 | })
76 |
77 | # Output discovery
78 | discovery = {"data": discovery}
79 | print(json.dumps(discovery))
80 |
81 |
82 | if __name__ == "__main__":
83 | main()
84 |
--------------------------------------------------------------------------------
/python/ic_azure/azure_metric.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | # Python imports
4 | from datetime import datetime, timedelta, timezone
5 | from argparse import ArgumentParser
6 | import re
7 | import sys
8 |
9 | # Azure imports
10 | from msrest.exceptions import AuthenticationError, ClientRequestError, \
11 | DeserializationError, HttpOperationError, SerializationError, \
12 | TokenExpiredError, ValidationError
13 |
14 | # Azure client imports
15 | from ic_azure.azure_client import AzureClient
16 |
17 |
18 | class AzureMetric(object):
19 | """Retrieve metrics from Azure's resources"""
20 |
21 | def __init__(self, azure_client):
22 | self._client = azure_client.client()
23 | self.subscription_id = azure_client.subscription_id
24 | self.resources = azure_client.resources
25 | self.timeout = azure_client.timeout
26 |
27 | # Method to retrieve metrics from Azure's resources
28 | def get_metric(self, resource, metric, statistic, timegrain, filter,
29 | metric_namespace, timeshift):
30 |
31 | # Declare variables
32 | interval = -1
33 | ret_val = ""
34 |
35 | # Retrieve interval and timeunit
36 | result = re.search(r"^PT?([\d]+)([DHM])$", timegrain)
37 |
38 | # Check the result object
39 | if not result:
40 | raise ValueError("Timegrain value is invalid.")
41 |
42 | # Retrieve and check interval
43 | interval = int(result.group(1))
44 | if interval < 1:
45 | raise ValueError("Timegrain interval is not valid.")
46 |
47 | # Calculate end time
48 | end_time = datetime.now(timezone.utc) - timedelta(minutes=timeshift)
49 |
50 | # Retrieve time unit and calculate start time
51 | if result.group(2) == "D":
52 | start_time = end_time - timedelta(days=interval)
53 | elif result.group(2) == "H":
54 | start_time = end_time - timedelta(hours=interval)
55 | elif result.group(2) == "M":
56 | start_time = end_time - timedelta(minutes=interval)
57 | else:
58 | raise ValueError("Unable to retrieve unit from timegrain.")
59 |
60 | # Read resource from config using key
61 | if not resource.startswith("/subscriptions"):
62 | resource = self.resources.get(resource)
63 |
64 | # Retrieve metric data
65 | try:
66 | metrics_data = self._client.metrics.list(
67 | resource,
68 | timespan="{}/{}".format(
69 | start_time.strftime('%Y-%m-%dT%H:%M:%SZ'),
70 | end_time.strftime('%Y-%m-%dT%H:%M:%SZ')
71 | ),
72 | interval=timegrain,
73 | metricnames=metric,
74 | aggregation=statistic,
75 | result_type="Data",
76 | filter=filter,
77 | timeout=self.timeout,
78 | metricnamespace=metric_namespace
79 | )
80 | except AuthenticationError as ex:
81 | sys.exit(f"Client request failed to authenticate. {ex}")
82 | except ClientRequestError as ex:
83 | sys.exit(f"Client request failed. {ex}")
84 | except DeserializationError as ex:
85 | sys.exit(f"Error raised during response deserialization. {ex}")
86 | except HttpOperationError as ex:
87 | sys.exit(f"HTTP operation error. {ex}")
88 | except SerializationError as ex:
89 | sys.exit(f"Error raised during request serialization. {ex}")
90 | except TokenExpiredError as ex:
91 | sys.exit(f"OAuth token expired. {ex}")
92 | except ValidationError as ex:
93 | sys.exit(f"Request parameter validation failed. {ex}")
94 | except Exception as ex:
95 | sys.exit(f"An exception occured. {ex}")
96 |
97 | # Loop through metric data and retrieve relevant value
98 | for item in metrics_data.value:
99 | for timeserie in item.timeseries:
100 | for data in timeserie.data:
101 | ret_val = data.__dict__.get(statistic.lower())
102 |
103 | return ret_val
104 |
105 |
106 | def main(args=None):
107 | parser = ArgumentParser(
108 | description="Retrieve metrics from Azure's resources"
109 | )
110 |
111 | parser.add_argument("config", type=str, help="Path to configuration file.")
112 | parser.add_argument("resource", type=str, help="Azure resource to use.")
113 | parser.add_argument("metric", type=str, help="Metric to obtain.")
114 | parser.add_argument("statistic", type=str, help="Statistic to retrieve, " +
115 | "e.g. Average, Count, Minimum, Maximum, Total.")
116 | parser.add_argument("timegrain", type=str, help="Timegrain for metric, " +
117 | "e.g. PT1M, PT1H, P1D.")
118 | parser.add_argument("-f", "--filter", default=None, type=str,
119 | dest="filter", help="Filter for Azure query.")
120 | parser.add_argument("-m", "--metric-namespace", default=None, type=str,
121 | dest="metric_namespace",
122 | help="Metric namespace for Azure query.")
123 | parser.add_argument("--timeshift", default=5, type=int,
124 | help="Time shift for interval.")
125 |
126 | args = parser.parse_args(args)
127 |
128 | # Instantiate Azure client
129 | azure_client = AzureClient(args)
130 |
131 | # Instantiate Azure metrics
132 | client = AzureMetric(azure_client)
133 |
134 | value = client.get_metric(
135 | args.resource,
136 | args.metric,
137 | args.statistic,
138 | args.timegrain,
139 | args.filter,
140 | args.metric_namespace,
141 | args.timeshift
142 | )
143 |
144 | # If value is empty or we didn't get a value, print zero. Otherwise print
145 | # the retrieved value.
146 | if not value:
147 | print(0)
148 | elif value == "":
149 | print(0)
150 | else:
151 | print(value)
152 |
153 |
154 | if __name__ == "__main__":
155 | main()
156 |
--------------------------------------------------------------------------------
/python/ic_azure/azure_query.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | # Python imports
4 | import json
5 | from argparse import ArgumentParser
6 |
7 | # Azure client imports
8 | from ic_azure.azure_client import AzureClient
9 |
10 | # Declare variables
11 | application_id = None
12 | endpoints = {
13 | "application_insights": "https://api.applicationinsights.io/",
14 | "log_analytics": "https://api.loganalytics.io/",
15 | "resource_graph": "https://management.azure.com/"
16 | }
17 | query = None
18 | url = None
19 | workspace_id = None
20 |
21 |
22 | def main(args=None):
23 | parser = ArgumentParser(
24 | description="Run Kusto queries to Azure's REST APIs"
25 | )
26 |
27 | parser.add_argument("endpoint", choices=[k for k in endpoints], type=str,
28 | help="API to query for, application_insights, log_analytics or " +
29 | "resource_graph.")
30 | parser.add_argument("config", type=str, help="Path to configuration file.")
31 | parser.add_argument("query", type=str, help="Query to run or key to match predefined query.")
32 | parser.add_argument("--id", type=str, help="Application ID for Application Insight query. " +
33 | "Workspace ID for Log Analytics query. Empty for Resource Graph query. " +
34 | "Key to match predefined IDs.")
35 |
36 | args = parser.parse_args(args)
37 |
38 | # Instantiate Azure Kusto-client
39 | azure_client = AzureClient(args, api=endpoints[args.endpoint], queries=True)
40 |
41 | # Match predefined queries
42 | query = args.query
43 | if azure_client.queries.get(query):
44 | query = azure_client.queries.get(query)
45 |
46 | # Match predefined application IDs and generate query URL
47 | if args.endpoint == "application_insights":
48 | application_id = args.id
49 |
50 | # Retrieve application ID using key
51 | if azure_client.application_ids.get(application_id):
52 | application_id = azure_client.application_ids.get(application_id)
53 |
54 | # Set query URL
55 | url = "{}v1/apps/{}/query".format(
56 | endpoints[args.endpoint],
57 | application_id
58 | )
59 |
60 | # Match predefined workspace IDs and generate query URL
61 | elif args.endpoint == "log_analytics":
62 | workspace_id = args.id
63 |
64 | # Retrieve workspace ID using key
65 | if azure_client.workspace_ids.get(workspace_id):
66 | workspace_id = azure_client.workspace_ids.get(workspace_id)
67 |
68 | # Set query URL
69 | url = "{}v1/workspaces/{}/query".format(
70 | endpoints[args.endpoint],
71 | workspace_id
72 | )
73 |
74 | # Query Resource graph
75 | elif args.endpoint == "resource_graph":
76 | # Set query URL
77 | url = "{}providers/Microsoft.ResourceGraph/resources?api-version=2021-03-01".format(
78 | endpoints[args.endpoint]
79 | )
80 |
81 | # Execute query
82 | response = azure_client.query(
83 | method="POST",
84 | json={"query": query},
85 | url=url
86 | )
87 |
88 | # Print response
89 | print(json.dumps(response))
90 |
91 |
92 | if __name__ == "__main__":
93 | main()
94 |
--------------------------------------------------------------------------------
/python/requirements.txt:
--------------------------------------------------------------------------------
1 | azure-identity
2 | azure-mgmt-monitor
3 | azure-mgmt-resource
4 | cryptography<37
5 | msal
6 | msrest
7 | pyOpenSSL
8 | requests
9 |
--------------------------------------------------------------------------------
/python/setup.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/python3
2 |
3 | # Python imports
4 | import os
5 | from setuptools import setup
6 |
7 | setup(
8 | name="azure-monitoring",
9 | version="1.23",
10 | author="Antti-Pekka Meronen",
11 | author_email="antti-pekka.meronen@digia.com",
12 | description="Monitoring scripts for Azure services",
13 | url="https://github.com/digiaiiris/zabbix-azure-monitoring/",
14 | license="GPLv3",
15 | packages=["ic_azure"],
16 | entry_points={
17 | "console_scripts": [
18 | "azure_discover_dimensions=ic_azure.azure_discover_dimensions:main",
19 | "azure_discover_resources=ic_azure.azure_discover_resources:main",
20 | "azure_discover_metrics=ic_azure.azure_discover_metrics:main",
21 | "azure_discover_webapp_instances=ic_azure.azure_discover_webapp_instances:main",
22 | "azure_logic_apps=ic_azure.azure_logic_apps:main",
23 | "azure_metric=ic_azure.azure_metric:main",
24 | "azure_query=ic_azure.azure_query:main"
25 | ]
26 | },
27 | install_requires=[
28 | "azure-identity",
29 | "azure-mgmt-monitor",
30 | "azure-mgmt-resource",
31 | "cryptography<37", # Python 3.6 support is deprecated in version 37!
32 | "msal",
33 | "msrest",
34 | "pyOpenSSL",
35 | "requests"
36 | ]
37 | )
38 |
--------------------------------------------------------------------------------
/python/tests/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digiaiiris/zabbix-azure-monitoring/7eb408de76c9b9eec5a7ad32c43a966394726384/python/tests/__init__.py
--------------------------------------------------------------------------------