generated from oracle-devrel/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #274 from oracle-devrel/paalonso-custom-metric-scr…
…ipt1 First custom-metrics-python-SDK asset release
- Loading branch information
Showing
6 changed files
with
649 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
...rations/observability-and-manageability/oci-monitoring/custom-metrics/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
# Custom Metrics | ||
|
||
In this section will bring some examples about how to create OCI Monitoring custom metric namespaces to extend the default, out-of-the-box, OCI Monitoring metrics for OCI resources. | ||
|
||
# Team Publications | ||
|
||
- [Using python SDK to create OCI Monitoring custom metric namespace: Services Limit monitoring example use case](./custom-metric-python-SDK-services-limit-monitoring/README.md) | ||
|
||
# License | ||
|
||
Copyright (c) 2023 Oracle and/or its affiliates. | ||
|
||
Licensed under the Universal Permissive License (UPL), Version 1.0. | ||
|
||
See [LICENSE](https://github.com/oracle-devrel/technology-engineering/blob/folder-structure/LICENSE) for more details. |
35 changes: 35 additions & 0 deletions
35
.../oci-monitoring/custom-metrics/custom-metric-python-SDK-services-limit-monitoring/LICENSE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Copyright (c) 2023 Oracle and/or its affiliates. | ||
|
||
The Universal Permissive License (UPL), Version 1.0 | ||
|
||
Subject to the condition set forth below, permission is hereby granted to any | ||
person obtaining a copy of this software, associated documentation and/or data | ||
(collectively the "Software"), free of charge and under any and all copyright | ||
rights in the Software, and any and all patent rights owned or freely | ||
licensable by each licensor hereunder covering either (i) the unmodified | ||
Software as contributed to or provided by such licensor, or (ii) the Larger | ||
Works (as defined below), to deal in both | ||
|
||
(a) the Software, and | ||
(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if | ||
one is included with the Software (each a "Larger Work" to which the Software | ||
is contributed by such licensors), | ||
|
||
without restriction, including without limitation the rights to copy, create | ||
derivative works of, display, perform, and distribute the Software and make, | ||
use, sell, offer for sale, import, export, have made, and have sold the | ||
Software and the Larger Work(s), and to sublicense the foregoing rights on | ||
either these or other terms. | ||
|
||
This license is subject to the following condition: | ||
The above copyright notice and either this complete permission notice or at | ||
a minimum a reference to the UPL must be included in all copies or | ||
substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
129 changes: 129 additions & 0 deletions
129
...ing/custom-metrics/custom-metric-python-SDK-services-limit-monitoring/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
|
||
# Using python SDK to create OCI Monitoring custom metric namespace: Services Limit monitoring example use case | ||
|
||
## 1. INTRODUCTION | ||
|
||
Describes how any user can create an OCI Monitoring ***custom metric namespace*** to being able to extend the default services metric namespaces. For that, we'll support on python SDK to create an script that can be run in an OCI VM (using instance principals authentication), or any other external system (using OCI IAM principals). To cover this educational example, we'll use as an example the creation of a custom metric namespace to monitor the OCI Services Limits usage. With this custom metric namespace, OCI alarms can be created and OCI Notification Service can be used to send the alarm information by different means to allow to create proactively a Service Limit Service Request to increase the limit before causing any disruption in the running services or services to be provisioned. | ||
|
||
## 2. SOLUTION | ||
We can see the overall architecture in the following logical diagram: | ||
|
||
![Logical diagram](./files/Diagrams/custom-metrics-python-SDK-services-limit_solution1.png) | ||
|
||
The script will take care of gathering the OCI Services Limits information and post as a custom metric namespace. The metrics where to post the data will be: | ||
|
||
1. **used**: This is the amount of the Service Limit that it is being used | ||
2. **max_limit**: This is the amount of the Service Limit that we can use (and increase with a SR) | ||
3. **available**: This is the remaining amount of the Service Limit that we can use until get the max_limit | ||
|
||
Not all the Services Limits are equal as they depend of the scope they have (Global, Regional or Availability Domain). We'll introduce the characteristics of a Service Limit as **Dimensions** of the metric, so we can select the Service Limit, the limit name and the scope to filter the specific limit. Thus, we'll have as **Dimensions**: | ||
|
||
1. **service_name**: The name of the OCI Service that the Service Limit belongs to (e.g.: Compute) | ||
2. **limit_name**: The name of the Service Limit (e.g.: bm-standard2-52-count) | ||
3. **AD**: If the Service Limit has an AD availability, we can filter for the AD where we would like to filter the metric | ||
|
||
With this raw data, we could be able to build Alarm Definitions on the specific Services Limits that we would like to monitor, as usually customers do not use all the possible OCI services. | ||
|
||
Optionally, they could use any OCI Notification Service to being notified when the alarm fires receiving the notification message in any of the supported options. Some of them will enable the integration with 3rd party services. | ||
|
||
## 3. SCRIPT'S LOGIC | ||
|
||
Here we'll focus in reviewing the logic behind using the OCI Python SDK to get the objectives to monitor the Services Limits with OCI Monitoring. | ||
|
||
We use 3 different OCI services API calls to gather the needed information to create the custom metric namespace for the Services Limit monitoring, these are: | ||
|
||
1. [Identity and Access Management Service API](https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/): To use the [ListAvailabilityDomains](https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/AvailabilityDomain/ListAvailabilityDomains) API Call to get the list of the availability domains existing in the input tenancy. | ||
2. [Monitoring API](https://docs.oracle.com/en-us/iaas/api/#/en/monitoring/20180401/): To use the [PostMetricData](https://docs.oracle.com/en-us/iaas/api/#/en/monitoring/20180401/MetricData/PostMetricData), to post the metrics information in the existing (or non yet existing) custom service metric namespace. If it doesn't exist yet, it just creates it so we don't need to explicitly create it before. | ||
3. [Service Limits API](https://docs.oracle.com/en-us/iaas/api/#/en/limits/20181025/): To use the [ListLimitsDefinition](https://docs.oracle.com/en-us/iaas/api/#/en/limits/20181025/LimitDefinitionSummary/ListLimitDefinitions) to get the full list of Service Limits in a given compartment and the [GetResouceAvailability](https://docs.oracle.com/en-us/iaas/api/#/en/limits/20181025/ResourceAvailability/GetResourceAvailability), to gather the used and available limits depending in the scope (AD, regional, whole tenancy), of the known Service Limits from the previous list. | ||
|
||
Basically the **logic** is: | ||
|
||
```` | ||
Start | ||
Parse input arguments (compartment_ocid, region) | ||
Setup the OCI connection authentication (OCI IAM Config or Instance Principals) | ||
Initialise the clients for the different API calls (IAM, Monitoring, Service Limits) | ||
Gather the full list of Service Limits Definitions sorted by Service Limit name | ||
For the list of Service Limit names | ||
If the scope is Availability Domain | ||
For every AD | ||
Get the limits and usage for the Service Limit name within this AD | ||
Post in the custom metric namespace the metric with the dimension of the Service Limit, name and AD with the resources used, available and the service limit maximum | ||
For the non-AD Service Limit names (Global or Regional) | ||
Get the limits and usage for the Service Limit name | ||
Post in the custom metric namespace the metric with the dimension of the Service Limit and name with the resources used, available and the service limit maximum | ||
End | ||
```` | ||
|
||
## 4. REQUIREMENTS | ||
|
||
We have different requirements depending on the variant of this asset that we would use: | ||
|
||
1. **IAM User** | ||
* An existing OCI IAM user with an API signing key | ||
* An .oci/config profile for the tenancy, with the previous IAM user details | ||
* A policy granting the user to: | ||
* inspect resource-availability in tenancy | ||
* inspect limits in tenancy | ||
* use metrics in tenancy | ||
|
||
2. **Instance Principal** | ||
* An existing dynamic group identifying the VM where to run the script as member of the group | ||
* A policy granting the dynamic group to: | ||
* inspect resource-availability in tenancy | ||
* inspect limits in tenancy | ||
* use metrics in tenancy | ||
|
||
3. ***Common requirements*** | ||
The VM where to run the script must have installed python3 with the following required packages installed with pip: | ||
* **oci** | ||
|
||
## 5. INPUT | ||
|
||
The required input arguments are: | ||
|
||
* **compartment_ocid** with the OCID of your tenancy root compartment. | ||
* **region** where you want to get the Services Limits with regional scope and where to publish metrics | ||
|
||
## 6. OUTPUT | ||
|
||
Every time the script is run, it will feed a custom metric namespace called "**limits_metrics**" in the tenancy's root compartment with the information of the Services Limits usage. | ||
|
||
You can check the custom metric extension from the OCI Metrics Explorer, where you will be able also to create an alarms from an specific metric query. | ||
|
||
## 7. GETTING STARTED | ||
|
||
To execute the script: | ||
|
||
1. Ensure that the requirements are met with your desired variant (using IAM user or Instance Principals) | ||
2. Upload the script into your administration VM inside OCI (IAM user or Instance Principals), or outside OCI (IAM user only) | ||
3. To execute the script: | ||
* For the IAM User principals authentication method, execute: | ||
```` | ||
$ python3 serviceLimitsMetricsIAM.py -c/--compartment_ocid <root's compartment OCID> -r/--region <target region> | ||
```` | ||
* The script is available [here](./files/Scripts/postServiceLimitsMetricsIAM.py) | ||
* For the Instance principal authentication method, execute: | ||
```` | ||
$ python3 serviceLimitsMetricsIP.py -c/--compartment_ocid <root's compartment OCID> -r/--region <target region> | ||
```` | ||
* The script is available [here](./files/Scripts/postServiceLimitsMetricsIP.py) | ||
|
||
## 8.KNOWN PROBLEMS | ||
|
||
None at this point. | ||
|
||
## 9.RELEASE NOTES | ||
|
||
There 2 scripts with same code except for the OCI authentication. Both scripts will be maintained in parallel with same versions: | ||
|
||
2023-07-25 (version 0.2). compartment_ocid & region are now input arguments. Fixed region wide limits publishing. | ||
2023-07-18 (version 0.1). Initial public release. | ||
|
||
# LICENSE | ||
|
||
Copyright (c) 2023 Oracle and/or its affiliates. | ||
|
||
Licensed under the Universal Permissive License (UPL), Version 1.0. | ||
|
||
See [LICENSE](https://github.com/oracle-devrel/technology-engineering/blob/folder-structure/LICENSE) for more details. |
Binary file added
BIN
+126 KB
...onitoring/files/Diagrams/custom-metrics-python-SDK-services-limit_solution1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.