openapi: 3.0.3
info:
_postman_id: 8c5957cf-e611-43e4-9ab9-14fb7516f72c
name: Kubex API Collection (Cloud & Containers)
description: |-
## Welcome to Densify
Kubex helps you optimize your Public Cloud and/or Container hosted applications by reducing both cost and risk.
_Before proceeding, you will need your Kubex URL and credentials. These will be supplied in a Welcome email soon after signing up with_ [Densify](https://www.densify.com/)_._
In order for Kubex to make recommendations, three distinct phases must take place:
> 1\. **Data Collection**
Connect to your cloud provider and/or container orchestration system and pull configuration details and workload metrics. Data collection typically runs once a day just after midnight and collects the last 24 hours of data for cloud and may run more frequently for containers.
> 2\. **Analysis**
Detailed analytics are run automatically after data collection is completed. When the analysis is complete, Densify's recommendations become available.
> 3\. **Generating Reporting Data**
Updating the reporting database is a maintenance task that runs on a nightly basis and generates additional data for use by both Kubex and custom reports.
It all begins with data collection. This essential first phase is initialized with:
> Creating a connection to your public cloud provider. An IAM role, service account or other method of authentication is required.
> Configuring Prometheus and the Kubex Data Forwarder to collect data from your Kubernetes environments.
Refer to the Kubex Online Help for the data collection prerequistes for the following: [AWS, ](https://www.densify.com/docs/WebHelp_Densify_Cloud/Content/Data_Collection_for_Public_Cloud_Systems/AWS_Data_Collection_Prerequisites_for_an_IAM_Role__CloudWatch_only_.htm) [Azure, ](https://www.densify.com/docs/WebHelp_Densify_Cloud/Content/Data_Collection_for_Public_Cloud_Systems/Microsoft_Azure_Data_Collection_Prerequisites.htm) [GCP, ](https://www.densify.com/docs/WebHelp_Densify_Cloud/Content/Data_Collection_for_Public_Cloud_Systems/Google_Cloud_Platform_Data_Collection_Prerequisites.htm) [Containers](https://www.densify.com/docs/WebHelp_Densify_Cloud/Content/Data_Collection_for_Public_Cloud_Systems/Container_Data_Collection_Prerequisites.htm)
For basic Public Cloud optimization using the API, see [Cloud API](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Use_Cases.htm). For a more detailed overview of the Kubex API see [Densify API Introduction](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Introduction.htm).
See [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm) for details on how to subscribe to recommendation notifications. Supporting resources include: [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm), [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm), [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm), [Subscriptions: Cloud Results](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Results.htm), and [Subscriptions: Status](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Status.htm).
Prior to using this Postman Collection you need to edit the Kubex Environment settings and enter your specific details:
> Your Kubex host and credentials. Edit the variables host, DensifyUser and DensifyPwd.
> If optimizing AWS, enter your Account, Role ARN and ARNId. Edit the variables AWS_account, AWS_roleARNname and AWS_roleARNid.
_Note: All requests include a short description which you can view by expanding the request name in each tab._
schema: https://schema.getpostman.com/json/collection/v2.1.0/collection.json
_exporter_id: "11667012"
item:
- name: 1. Getting Ready
item:
- name: Ping Kubex Instance
request:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/api/ping"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- api
- ping
description: "The Ping request will confirm your Kubex host is available. Environment variables *host* and *port* are used. \r\n\r\nSee example. Refer to Kubex Online Help [Ping](https://www.densify.com/docs-api/Content/API_Guide/Ping.htm?Highlight=340430)."
response:
- name: Ping Kubex Server
originalRequest:
method: GET
header: []
url:
raw: https://your_densify_instance::443/api/ping
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- ping
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "29"
- key: Date
value: Thu, 17 Jan 2019 18:23:20 GMT
cookie: []
body: |-
{
"message": "ok",
"status": 200
}
- name: Authorize and Get Web Token
event:
- listen: test
script:
exec:
- "var data = pm.response.json();\r"
- "pm.environment.set(\"token\", data.apiToken);\r"
- "var curDate = Date.now();\r"
- pm.environment.set("currentDate", curDate);
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "{\n\t\"userName\": \"{{DensifyUser}}\",\n\t\"pwd\" : \"{{DensifyPwd}}\"\n}"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/authorize"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- authorize
description: |-
Before you can access the Kubex API you need to authenticate with your Kubex instance and receive a JSON Web Token (JWT). Subsequent API calls will use this token for authorization.
Your Kubex supplied credentials are used for authentication.
Notes:
> The `token` is automatically saved and shared as an environment variable.
> The default token expiry time is 5 minutes. You must periodically refresh the token.
> Body of POST request references Kubex Environment variables `DensifyUser` and `DensifyPwd`. Ensure these variables are set before making this request.
> The variable `currentDate` is also saved for future requests.
See example. Refer to Kubex Online Help [Authentication](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Using_the_API.htm#_Authentication) and [Authorize](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Authorize.htm)
response:
- name: Authorize and get Web Token
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "{\n\t\"userName\": \"your_densify_user\",\n\t\"pwd\" : \"your_densify_pwd\"\n}"
url:
raw: https://your_densify_instance::443/api/v2/authorize
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- authorize
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "311"
- key: Date
value: Thu, 17 Jan 2019 18:23:47 GMT
cookie: []
body: |-
{
"apiToken": "eyJhbGciOiJIUzUxMiJ9.eyJqdGkiOiI0NzZhNjEwNi0wMjgxLTRjYTctYmMxNS05MTdkNjgwMzdlZGYiLCJpYXQiOjE1NDc3NDk0MjcsInN1YiI6ImJpbGwiLCJpc3MiOiJEZW5zaWZ5LmNvbSIsImV4cCI6MTU0Nzc1MTIyN30.lQ3mJvY975sjh6fea3Hgg3hqXGrIRTKBSayY222b1oX1KKsUJbNp8CzsHi-nKIn8i1HraOqG-58rrAAreQfKig",
"expires": 1547751227291,
"status": 200
}
description: Confirm your Kubex Environment variables are correct by testing the connection to your Kubex instance and logging in.
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 2. Analyzing Public Cloud
item:
- name: 2.1 Analyzing AWS
item:
- name: 2.1.1 AWS Setup
item:
- name: List All AWS Policies
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i In this example, the environment variable `policyInstId` is set to the ID of the "DevOps-Default" policy for future use.
Contact Kubex support for detailed settings of each available policy.
Refer to Kubex Online Help [Policy](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Policy.htm?Highlight=policy)
response:
- name: Review Policy
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: https://your_densify_instance:443/api/v2/analysis/cloud/aws/policy?details=true
protocol: https
host:
- your_densify_instance
port: "443"
path:
- api
- v2
- analysis
- cloud
- aws
- policy
query:
- key: details
value: "true"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Fri, 04 Sep 2020 15:57:44 GMT
cookie: []
body: |-
[
{
"policyId": "4a63f651-a583-4157-97ff-35651370ffbe",
"policyInstanceId": "0c0ef18b-9367-4071-b733-396f63e51925",
"name": "DevOps-Automation",
"description": "This policy is intended for generating recommendations that require little or no review before being implemented. CLOE utilizes rule-driven analytics to predict the effort of changing instance type from current to recommended, and this policy favors Low effort recommendations, producing higher automation at the expense of lower cost savings. The resource utilization of each system is modeled using a minimum of 7 days and up to 90 days of historical workload. When optimizing instance sizes and families, the predicted CPU and memory usage must not exceed 65% and 85%, respectively. This policy will not specify burstable (T-series) instance families for workloads unless they are already running in a burstable family and will not change CPU Architecture from Intel to AMD or vice versa. When memory usage metrics are not available, the analysis assumes the existing memory allocation is required and will not change the memory configuration."
},
{
"policyId": "4a63f651-a583-4157-97ff-35651370ffbe",
"policyInstanceId": "44b2ea5f-a3b7-44b2-9437-3c4e69650e58",
"name": "AWS (Mobile_Dev)",
"description": "This policy reflects best practices for generating actionable recommendations suitable for a development environment where we may be a bit more aggressive in looking for cost savings. Instance resource utilization is modeled using 7 - 60 days of historical workload. When memory usage metrics are not available, 60% is assumed. When downsizing instances, the predicted CPU and memory usage levels must not exceed 70% and 60% respectively. In addition, we consider lower cost savings opportunities."
},
{
"policyId": "4a63f651-a583-4157-97ff-35651370ffbe",
"policyInstanceId": "69fa4c99-1be2-4048-94a7-36fd83d07f37",
"name": "DevOps-Default",
"description": "This policy reflects best practices for generating actionable recommendations. The resource utilization of each system is modeled using a minimum of 7 days and up to 60 days of historical workload. When optimizing instance sizes and families, the predicted CPU and memory usage levels must not exceed 70% and 90%, respectively. When memory usage metrics are not available, the analysis effectively assumes the existing memory allocation of the instance is required and will not change the memory configuration."
},
{
"policyId": "4a63f651-a583-4157-97ff-35651370ffbe",
"policyInstanceId": "70a2ef4a-2ebb-4209-8ec8-9f6c70f77a74",
"name": "DevOps-Efficiency",
"description": "This policy is intended for generating recommendations that provide maximum operational efficiency (and lowest operating cost). This policy also includes recommendations rated as Moderate effort, generating higher cost reduction than the Kubex Defaults policy. Because of this, any recommendations should be reviewed before implementing. The resource utilization of each system is modeled using a minimum of 3 day and up to 30 days of historical workload. When optimizing instance sizes and families, the predicted CPU and memory usage levels must not exceed 75% and 95%, respectively. When memory usage metrics are not available, the analysis effectively assumes the existing memory allocation of the instance is required and will not change the memory configuration."
},
{
"policyId": "4a63f651-a583-4157-97ff-35651370ffbe",
"policyInstanceId": "97ea3b6d-fe60-4e19-ac7b-aadc1dda4abc",
"name": "AWS (Mobile_Prod)",
"description": "This policy reflects best practices for generating actionable recommendations suitable for production environments where we favor risk reduction over cost savings. Instance resource utilization is modeled using 7 - 60 days of historical workload. When memory usage metrics are not available, 60% is assumed. When downsizing instances, the predicted CPU and memory usage levels must not exceed 50% and 60% respectively. In addition, we consider only opportunities with higher cost savings."
},
{
"policyId": "4a63f651-a583-4157-97ff-35651370ffbe",
"policyInstanceId": "cc125cc3-c6ff-46f3-b3d0-5bc7470d817e",
"name": "AWS (Mobile_Dev) 2",
"description": "This policy reflects best practices for generating actionable recommendations suitable for a development environment where we may be a bit more aggressive in looking for cost savings. Instance resource utilization is modeled using 7 - 60 days of historical workload. When memory usage metrics are not available, 60% is assumed. When downsizing instances, the predicted CPU and memory usage levels must not exceed 70% and 60% respectively. In addition, we consider lower cost savings opportunities."
}
]
description: In this section you will get a listing of available polices that can be used when analyzing your collected data.
- name: 2.1.2 AWS Data Collection and Analysis
item:
- name: Initiate Data Collection and Analysis
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"accountId": "{{AWS_account}}",
"roleArnName": "{{AWS_roleARNname}}",
"roleExternalId": "{{AWS_roleARNid}}"
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/aws/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- analyze
description: |-
In a nutshell; Kubex collects CloudWatch utilization metrics for your AWS services, analyzes the data and makes recommendations to help you save costs and reduce risk.
The /analysis/cloud/aws/analyze request kicks this process off and schedules it to automatically repeat nightly.
Notes:
> This process typically takes a minimum of 30 minutes to complete the first time you run it. You can poll status or setup a webhook to check when it's done.
> Body of POST request references variables `AWS_account`, `AWS_roleARNname` and `AWS_roleARNid`. See overview in the Collection documentation.
See example. Refer to Refer to Kubex Online Help [AWS Analysis](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_AWS_Analyze.htm).
response:
- name: Initiate Data Collection and Analysis
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"accountId": "000000000001",
"roleArnName": "arn:aws:iam::000000000001:role/DensifyMe",
"roleExternalId": "your_arn_pwd",
"policyInstanceId": ""
}
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/aws/analyze
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- aws
- analyze
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "70"
- key: Date
value: Fri, 15 Feb 2019 17:17:56 GMT
cookie: []
body: |-
{
"href": "/analysis/cloud/aws/null/status",
"message": "OK",
"status": 200
}
- name: "Initiate Data Collection and Analysis - returned response after initiating "
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"accountId": "{{AWS_account}}",
"roleArnName": "{{AWS_roleARNname}}",
"roleExternalId": "{{AWS_roleARNid}}",
"policyInstanceId": ""
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/aws/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- analyze
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-length
value: "70"
- key: date
value: Fri, 24 Jul 2020 18:56:40 GMT
- key: x-envoy-upstream-service-time
value: "9822"
- key: server
value: istio-envoy
cookie: []
body: |-
{
"href": "Not available",
"message": "Analysis in progress",
"status": 200
}
- name: Initiate Data Collection and Analysis (Historical Audit)
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"accountId": "{{AWS_account}}",
"roleArnName": "{{AWS_roleARNname}}",
"roleExternalId": "{{AWS_roleARNid}}",
"startDayOffset": "", //Optional
"endDayOffset": "", //Optional
"triggerAdhocAudit": "" //Optional
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/aws/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- analyze
description: |-
In a nutshell; Kubex collects CloudWatch utilization metrics for your AWS services, analyzes the data and makes recommendations to help you save costs and reduce risk.
The /analysis/cloud/aws/analyze request kicks this process off and schedules it to automatically repeat nightly.
Notes:
The /analysis endpoint for AWS has been updated to support execution of the 60-day historical audit, on an ad hoc basis.
The ability to disable the 60-day historical audit was provided in a previous release to address performance issues that may be encountered during initial data collection in very large AWS environments. The option to run the 60-day historical audit has always been available through the Analysis Console. This update extends the existing /analysis endpoint to trigger a one-time, 60-day historical audit for an AWS account that has existing daily audits configured.
> Body of POST request references variables `AWS_account`, `AWS_roleARNname` and `AWS_roleARNid`. See Historical Data Collection
in the Collection documentation.
See example. Refer to Refer to Kubex Online Help [AWS Analysis](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_AWS_Analyze.htm).
response:
- name: "Initiate Data Collection and Analysis - returned response after initiating "
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"accountId": "000000000001",
"roleArnName": "arn:aws:iam::000000000001:role/DensifyMe",
"roleExternalId": "your_arn_pwd",
"policyInstanceId": ""
}
url:
raw: https://your_densify_instance:443/api/v2/analysis/cloud/aws/analyze
protocol: https
host:
- your_densify_instance
port: "443"
path:
- api
- v2
- analysis
- cloud
- aws
- analyze
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-length
value: "70"
- key: date
value: Fri, 24 Jul 2020 18:56:40 GMT
- key: x-envoy-upstream-service-time
value: "9822"
- key: server
value: istio-envoy
cookie: []
body: |-
{
"href": "Not available",
"message": "Analysis in progress",
"status": 200
}
- name: List all AWS Analyses
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0) {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"analysisId\", firstdata.analysisId);\r"
- "}"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/aws"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
description: |-
Returns a list of existing analyses, with associated references and status.
The elements `analysisResults`, `analysisStatus` and `analysisId` are commonly used in many other requests.
Note:
> In this example, the environment variable `analysisId` is set to the first returned _analysisId_ element for future use.
See example. Refer to Refer to Kubex Online Help [Analysis Entity](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Entity.htm?Highlight=analysis%20entity).
response:
- name: List all Generated Analyses
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: https://your_densify_instance:443/api/v2/analysis/cloud/aws
protocol: https
host:
- your_densify_instance
port: "443"
path:
- api
- v2
- analysis
- cloud
- aws
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "2013"
- key: Date
value: Fri, 04 Sep 2020 15:57:31 GMT
cookie: []
body: |-
[
{
"accountId": "922390019409",
"policyInstanceId": "97ea3b6d-fe60-4e19-ac7b-aadc1dda4abc",
"analysisCompletedOn": 1585735667623,
"analysisResults": "/analysis/cloud/aws/f311675a-f05d-4d07-b5e8-0f190438a9f6/results",
"accountName": "General Services",
"policyName": "AWS (Mobile_Prod)",
"analysisId": "f311675a-f05d-4d07-b5e8-0f190438a9f6",
"href": "/analysis/cloud/aws/f311675a-f05d-4d07-b5e8-0f190438a9f6",
"analysisStatus": "/analysis/cloud/aws/f311675a-f05d-4d07-b5e8-0f190438a9f6/status",
"analysisName": "922390019409 (Mobile_Prod)"
},
{
"accountId": "922390019409",
"policyInstanceId": "44b2ea5f-a3b7-44b2-9437-3c4e69650e58",
"analysisCompletedOn": 1593606311863,
"analysisResults": "/analysis/cloud/aws/0a87047f-e8dc-43f0-89bd-769962b06b9d/results",
"accountName": "General Services",
"policyName": "AWS (Mobile_Dev)",
"analysisId": "0a87047f-e8dc-43f0-89bd-769962b06b9d",
"href": "/analysis/cloud/aws/0a87047f-e8dc-43f0-89bd-769962b06b9d",
"analysisStatus": "/analysis/cloud/aws/0a87047f-e8dc-43f0-89bd-769962b06b9d/status",
"analysisName": "922390019409 (Mobile_Dev)"
},
{
"accountId": "229192219122",
"policyInstanceId": "ba022982-12da-48b8-b5f2-af6f0630952d",
"analysisCompletedOn": 1585732332227,
"analysisResults": "/analysis/cloud/aws/8bef9d74-94f7-414f-a032-5855258473a2/results",
"accountName": "General Services",
"policyName": "AWS General Prod",
"analysisId": "8bef9d74-94f7-414f-a032-5855258473a2",
"href": "/analysis/cloud/aws/8bef9d74-94f7-414f-a032-5855258473a2",
"analysisStatus": "/analysis/cloud/aws/8bef9d74-94f7-414f-a032-5855258473a2/status",
"analysisName": "229192219122"
},
{
"accountId": "409119911940",
"policyInstanceId": "37eff1e7-5e25-4c98-9a12-c949dc26da38",
"analysisCompletedOn": 1585733315323,
"analysisResults": "/analysis/cloud/aws/321cf8ea-6636-49f5-ac8a-efb51c24123d/results",
"policyName": "AWS Assessement B",
"analysisId": "321cf8ea-6636-49f5-ac8a-efb51c24123d",
"href": "/analysis/cloud/aws/321cf8ea-6636-49f5-ac8a-efb51c24123d",
"analysisStatus": "/analysis/cloud/aws/321cf8ea-6636-49f5-ac8a-efb51c24123d/status",
"analysisName": "409119911940"
}
]
- name: Get Analysis Status
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
name: Content-Type
type: text
value: application/json
- key: Content-Type
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/aws/{{analysisId}}/status"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- "{{analysisId}}"
- status
description: "Check AWS analysis status for a specific AWS account.\r\n\r\nNote:\r\n> The `analysisId` environment variable is used to identify the Analysis to search for. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.\r\n\r\n\r\nSee example. Refer to Refer to Kubex Online Help [Analysis Status](https://www.densify.com/docs-api/Content/API_Guide/Analysis_Status.htm?Highlight=340620)."
response:
- name: Get Analysis status
originalRequest:
method: GET
header:
- key: Accept
name: Content-Type
type: text
value: application/json
- key: Content-Type
value: application/json
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/aws/9a5d2d55-6d85-4fde-8bab-fcd0cef8c5bf/status
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- aws
- 9a5d2d55-6d85-4fde-8bab-fcd0cef8c5bf
- status
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "140"
- key: Date
value: Tue, 19 Feb 2019 16:08:32 GMT
cookie: []
body: |-
{
"analysisStage": "Completed",
"webHookStatus": "",
"statusMessage": "Analysis 524756828598 was last completed on Thu Feb 07 16:05:28 EST 2019."
}
- name: Update Analysis Policy
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: PUT
header:
- key: Accept
value: application/json
body:
mode: raw
raw: "{\r\n \"policyInstanceId\" : \"{{policyInstId}}\"\r\n}"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/aws/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- "{{analysisId}}"
description: "If you want to update the policy used for the next analysis, you can update the `policyInstanceId` element in your Analysis.\r\n\r\nRefer to \"1. AWS Setup\" > \"Review Policy\" for details on availble policies for analysis (See Kubex Online Help [Policy](https://www.densify.com/docs-api/Content/API_Guide/Analysis_Policy.htm)) \r\n\r\nUse this resource to update the policy instance ID (see the body of this request) for the specified analysis in the URL. The updated policy will be used in the next schedule analysis.\r\n\r\nNote:\r\n> In this example, the environment variable `{{analysisId}}` (i.e. latest AWS analysis) and `{{policyInstId}}` (i.e. DevOps-Default policy) are used in the request. These variables were set in previous requests. See \"List all Generted Analyses\" and \"Review Policy\" requests for AWS.\r\n\r\nRefer to Kubex Online Help [AWS Analysis](https://www.densify.com/docs-api/Content/API_Guide/Analysis_AWS_Analyze.htm) for details on modifying the Analysis."
response:
- name: Update Policy to DevOps-Default
originalRequest:
method: PUT
header:
- key: Accept
value: application/json
body:
mode: raw
raw: "{\r\n \"policyInstanceId\" : \"{{policyInstId}}\"\r\n}"
options:
raw:
language: json
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/aws/your_analysis_id
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- aws
- your_analysis_id
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "29"
- key: Date
value: Tue, 21 Jul 2020 18:51:10 GMT
cookie: []
body: |-
{
"message": "ok",
"status": 200
}
- name: Delete AWS Audits
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header:
- key: Accept
type: text
value: application/json
body:
mode: raw
raw: "{\r\n\_\_\_\_\"webHook\":\_//optional\r\n{\r\n\_\_\_\_\_\_\_\_\"uri\": \"http://mywebhookserver/webhook/results\",\r\n\_\_\_\_\_\_\_\_\"authType\": \"basic\",\r\n\_\_\_\_\_\_\_\_\"authValue\": \"tester:testerpassword\"\r\n\_\_\_\_\_\_\_\_\_}\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\r\n}"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/aws/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- "{{analysisId}}"
description: |-
The DEL /webhook/analysis/{{platform}}/{{subplatform}}/{{analysisId}} resource is used to delete a webhook definition from an existing Analysis.
In this example, the webhook definition is removed from a specific AWS cloud Analysis.
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to delete a webhook for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
See example. Refer to [Analysis Webhook](https://www.densify.com/docs-api/Content/API_Guide/Analysis_Webhook.htm).
response:
- name: Delete AWS data collection and analysis
originalRequest:
method: DELETE
header:
- key: Accept
type: text
value: application/json
- key: Content-Type
name: Content-Type
value: application/json
type: text
body:
mode: raw
raw: "{\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\r\n\_\_\_\_\"webHook\":\_//optional\r\n{ \r\n\_\_\_\_\_\_\_\_\"uri\": \"http://mywebhookserver/webhook/results\",\r\n\_\_\_\_\_\_\_\_\"authType\": \"basic\",\r\n\_\_\_\_\_\_\_\_\"authValue\": \"tester:testerpassword\"\r\n\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_}\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\r\n}"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/aws/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- "{{analysisId}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "29"
- key: Date
value: Tue, 23 Jun 2020 20:35:37 GMT
cookie: []
body: |-
{
"message": "ok",
"status": 200
}
description: |-
Before initiating data collection you must configure your public cloud as outlined in [AWS Data Collection Prerequisites for an IAM Role](https://www.densify.com/docs/WebHelp_Densify_Cloud/Content/Data_Collection_for_Public_Cloud_Systems/AWS_Data_Collection_Prerequisites_for_an_IAM_Role__CloudWatch_only_.htm).
The first audit collects 60 days of historical data. After that, daily nightly audits collect the last 24 hours of data.
After data collection completes, the analyses run automatically. See [Optimizing AWS EC2 Instances](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_AWS_EC2_Instances.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 2.1.3 AWS Analysis Results
item:
- name: Get Analysis System List
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0) {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"entityId\", firstdata.entityId);\r"
- "}"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/aws/{{analysisId}}/systems"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- "{{analysisId}}"
- systems
description: "Return a collection of all the systems that were included in the optimization analysis.\r\n\r\nNotes:\r\n> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.\r\n\r\n> In this example, the environment variable `entityId` is set to the first returned *entityId* element for future use.\r\n\r\n\r\nSee example. Refer to Kubex Online Help [AWS Analysis Systems](https://www.densify.com/docs-api/Content/API_Guide/Analysis_AWS_Systems.htm)."
response:
- name: Get Analysis System List
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/aws/{{analysisId}}/systems"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- "{{analysisId}}"
- systems
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: vary
value: accept-encoding
- key: content-encoding
value: gzip
- key: content-type
value: application/json;charset=UTF-8
- key: date
value: Tue, 09 Jun 2020 19:20:53 GMT
- key: x-envoy-upstream-service-time
value: "100"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"serviceType": "ASG",
"resourceId": "422b4aa8-ca56-45b1-af53-7342775c4a84",
"powerState": "Running",
"currentType": "t3.small",
"displayName": "ebs-enabled-asg",
"entityId": "01d317c7-b2ec-41dc-ad81-9c687dd0cc5b",
"href": "/systems/01d317c7-b2ec-41dc-ad81-9c687dd0cc5b"
},
{
"serviceType": "EC2",
"resourceId": "i-0067dfc6d2db9c77b",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "i-0067dfc6d2db9c77b",
"entityId": "036b3675-14df-409b-a149-7bb8d22c8b87",
"href": "/systems/036b3675-14df-409b-a149-7bb8d22c8b87"
},
{
"serviceType": "EC2",
"resourceId": "i-040845d1cb0f875ad",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "cal-windows-cw_agent-t2-unlimited",
"entityId": "07888649-32ec-4ce6-8830-1172c50b245e",
"href": "/systems/07888649-32ec-4ce6-8830-1172c50b245e"
},
{
"serviceType": "ASG",
"resourceId": "6f182b4a-3ce4-4f48-b055-ff088901f331",
"powerState": "Running",
"displayName": "awseb-e-tmqifhqf5f-stack-AWSEBAutoScalingGroup-NECDWWOZKSJZ",
"entityId": "07d8ce5d-63a3-40bd-aa8d-c09f672a90a2",
"href": "/systems/07d8ce5d-63a3-40bd-aa8d-c09f672a90a2"
},
{
"serviceType": "ASG",
"resourceId": "a4b333a5-23e2-4058-baf5-f3694088b0a8",
"powerState": "Running",
"displayName": "eks-stack-test-summer2019-NodeGroup-EKTN1LA7JSHG",
"entityId": "08239613-dfb4-4bb1-9449-56223bacd9a4",
"href": "/systems/08239613-dfb4-4bb1-9449-56223bacd9a4"
},
{
"serviceType": "EC2",
"resourceId": "i-fee6164a",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "i-fee6164a",
"entityId": "0b75e7ca-10e0-4ee8-969e-d95c8b477a94",
"href": "/systems/0b75e7ca-10e0-4ee8-969e-d95c8b477a94"
},
{
"serviceType": "EC2",
"resourceId": "i-04f0adc6f7b6d262a",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "i-04f0adc6f7b6d262a",
"entityId": "0d3aac0f-3323-44b4-9583-f81e72e74e16",
"href": "/systems/0d3aac0f-3323-44b4-9583-f81e72e74e16"
},
{
"serviceType": "EC2",
"resourceId": "i-0912a65d505dc1400",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "awu-ubuntu-cw-agent",
"entityId": "0da4957c-dc0b-43cf-bb64-f8af88a434e7",
"href": "/systems/0da4957c-dc0b-43cf-bb64-f8af88a434e7"
},
{
"serviceType": "EC2",
"resourceId": "i-0a74812e05383ad89",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "i-0a74812e05383ad89",
"entityId": "0dc3b8d9-972b-4f64-8984-2baf6e51b428",
"href": "/systems/0dc3b8d9-972b-4f64-8984-2baf6e51b428"
},
{
"serviceType": "ASG",
"resourceId": "19f9ef24-05ba-492b-a7a3-1d697ee71528",
"powerState": "Running",
"displayName": "memory-used",
"entityId": "123d7fd4-8786-4b85-bb05-cc76f7f80ab9",
"href": "/systems/123d7fd4-8786-4b85-bb05-cc76f7f80ab9"
},
{
"serviceType": "EC2",
"resourceId": "i-086e2a5955912767a",
"powerState": "Stopped",
"currentType": "c5.large",
"displayName": "cal-test-ebs",
"entityId": "1624516e-0561-4d80-9fb3-57f713b8c82a",
"href": "/systems/1624516e-0561-4d80-9fb3-57f713b8c82a"
},
{
"serviceType": "EC2",
"resourceId": "i-00f0736c58af71d44",
"powerState": "Stopped",
"currentType": "m4.xlarge",
"displayName": "ex-pro-rais-131",
"entityId": "167fd200-b0a3-40df-ab09-bcd9f1eee6f7",
"href": "/systems/167fd200-b0a3-40df-ab09-bcd9f1eee6f7"
},
{
"serviceType": "ASG",
"resourceId": "a44a0b1a-aed8-4304-acbe-81d71ee3a80e",
"powerState": "Running",
"displayName": "Mark-ASG-Test",
"entityId": "1793042e-9f7b-4c37-86de-bf7b8e257516",
"href": "/systems/1793042e-9f7b-4c37-86de-bf7b8e257516"
},
{
"serviceType": "EC2",
"resourceId": "i-052f8be45bbc6251f",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "ex-pro-appx-120",
"entityId": "17b4048e-e1a2-4925-a5a9-071665cd6b15",
"href": "/systems/17b4048e-e1a2-4925-a5a9-071665cd6b15"
},
{
"serviceType": "EC2",
"resourceId": "i-0647d2ba2d871c59f",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "i-0647d2ba2d871c59f",
"entityId": "19ab2318-b1ba-4328-ba01-9f7a9a94bcbb",
"href": "/systems/19ab2318-b1ba-4328-ba01-9f7a9a94bcbb"
},
{
"serviceType": "EC2",
"resourceId": "i-0e84bdc6d73420d83",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "mark ubuntu 2",
"entityId": "1a927c1a-906e-4b2c-a7eb-4508fbf3e473",
"href": "/systems/1a927c1a-906e-4b2c-a7eb-4508fbf3e473"
},
{
"serviceType": "EC2",
"resourceId": "i-07ec21b7a361db2be",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "tom-t2-unlimited",
"entityId": "20e11428-531c-4c6f-a1d4-fe1d0e55d57a",
"href": "/systems/20e11428-531c-4c6f-a1d4-fe1d0e55d57a"
},
{
"serviceType": "RDS",
"resourceId": "db-jnwqh6iknt635hk7aehgpgraku",
"powerState": "Running",
"currentType": "db.t2.micro",
"displayName": "calsoft-sql-test-db",
"entityId": "2338151c-d853-4fa3-b170-c33f7e387252",
"href": "/systems/2338151c-d853-4fa3-b170-c33f7e387252"
},
{
"serviceType": "RDS",
"resourceId": "db-smswixvatsgsybx56fdzliarbq",
"powerState": "Running",
"currentType": "db.t2.micro",
"displayName": "calsoft-mysql",
"entityId": "248bdd60-306d-45ff-964d-b6ecc2b4b89c",
"href": "/systems/248bdd60-306d-45ff-964d-b6ecc2b4b89c"
},
{
"serviceType": "EC2",
"resourceId": "i-06a20a109dca187b8",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "t2 Test 1",
"entityId": "24bc2aab-8eb9-4306-b6e0-e80244386039",
"href": "/systems/24bc2aab-8eb9-4306-b6e0-e80244386039"
},
{
"serviceType": "ASG",
"resourceId": "8c22f5fb-8ed0-4ecd-ac91-8aa8e2f3856a",
"powerState": "Running",
"displayName": "EC2ContainerService-maria-cluster-EcsInstanceAsg-K1YL0P6M5K4M",
"entityId": "24c7a985-fefb-4702-a16f-cab8d230aae6",
"href": "/systems/24c7a985-fefb-4702-a16f-cab8d230aae6"
},
{
"serviceType": "EC2",
"resourceId": "i-0d5eaddba5632945f",
"powerState": "Stopped",
"currentType": "m5a.large",
"displayName": "i-0d5eaddba5632945f",
"entityId": "255aca56-6524-433f-a010-001f01638893",
"href": "/systems/255aca56-6524-433f-a010-001f01638893"
},
{
"serviceType": "ASG",
"resourceId": "d12a067c-17fe-4ac6-8942-954daed8f50f",
"powerState": "Running",
"displayName": "Adhere to the launch template",
"entityId": "25f4d724-de1e-4cf6-aaa6-83043b2f4b3f",
"href": "/systems/25f4d724-de1e-4cf6-aaa6-83043b2f4b3f"
},
{
"serviceType": "ASG",
"resourceId": "39f794fb-640b-448e-a799-021e905417e7",
"powerState": "Running",
"displayName": "Mark-Linux-ASG",
"entityId": "280aa665-c92d-4eb4-a842-0951ff76e459",
"href": "/systems/280aa665-c92d-4eb4-a842-0951ff76e459"
},
{
"serviceType": "EC2",
"resourceId": "i-0113b67377ee899e4",
"powerState": "Running",
"currentType": "t3.micro",
"displayName": "tem1_4",
"entityId": "2997240d-5b20-4c46-bc48-7efafdfba101",
"href": "/systems/2997240d-5b20-4c46-bc48-7efafdfba101"
},
{
"serviceType": "EC2",
"resourceId": "i-0af01a4f4efb1e8be",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "Mark-Tag-Mapping-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1",
"entityId": "2a4243f1-aa95-43a2-88b6-b6b7ab5c7c06",
"href": "/systems/2a4243f1-aa95-43a2-88b6-b6b7ab5c7c06"
},
{
"serviceType": "EC2",
"resourceId": "i-07d3af583d28fd7d4",
"powerState": "Stopped",
"currentType": "m4.large",
"displayName": "New Instance 1",
"entityId": "2b3686fb-c342-43ee-b4ae-9b250924ff53",
"href": "/systems/2b3686fb-c342-43ee-b4ae-9b250924ff53"
},
{
"serviceType": "EC2",
"resourceId": "i-010ce1bed097b80ea",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "awu-windows-cw-agent",
"entityId": "2d9be5f1-c308-4595-96de-cb1a7fc3e026",
"href": "/systems/2d9be5f1-c308-4595-96de-cb1a7fc3e026"
},
{
"serviceType": "EC2",
"resourceId": "i-06f84214e297fe7ff",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "Windows Update Nov 2",
"entityId": "2ee07d56-5de4-4711-a4af-063833c589c1",
"href": "/systems/2ee07d56-5de4-4711-a4af-063833c589c1"
},
{
"serviceType": "ASG",
"resourceId": "0838f71e-b882-489b-9b42-8dcaf49da189",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "spot",
"entityId": "2fa928c0-7d7f-4dcf-9a84-d9f5040ed7a3",
"href": "/systems/2fa928c0-7d7f-4dcf-9a84-d9f5040ed7a3"
},
{
"serviceType": "ASG",
"resourceId": "b0f4af65-93ed-48cc-b7d6-e514a1ad4d66",
"powerState": "Running",
"displayName": "Mark-ASG-Redhat",
"entityId": "325d8276-413c-4279-9fa4-fde4b0e23ba0",
"href": "/systems/325d8276-413c-4279-9fa4-fde4b0e23ba0"
},
{
"serviceType": "EC2",
"resourceId": "i-09354c1e0384190a4",
"powerState": "Stopped",
"currentType": "t1.micro",
"displayName": "ec2-paravirtual",
"entityId": "366b0b81-d4f5-4888-bfe0-f5fec9323921",
"href": "/systems/366b0b81-d4f5-4888-bfe0-f5fec9323921"
},
{
"serviceType": "ASG",
"resourceId": "44401ccd-463b-4aba-8f35-4135a73b43dd",
"powerState": "Running",
"displayName": "Mark-Win-ASG",
"entityId": "37a7a834-a6b5-4092-acac-b4fa9180b17a",
"href": "/systems/37a7a834-a6b5-4092-acac-b4fa9180b17a"
},
{
"serviceType": "EC2",
"resourceId": "i-00682ef289bd5bda2",
"powerState": "Stopped",
"currentType": "t2.nano",
"displayName": "Mark CentOS",
"entityId": "3b3b7cac-bd70-4e89-a566-6b5536df8dfb",
"href": "/systems/3b3b7cac-bd70-4e89-a566-6b5536df8dfb"
},
{
"serviceType": "EC2",
"resourceId": "i-0973e881a6e668016",
"powerState": "Stopped",
"currentType": "t2.large",
"displayName": "Densify-Connector-Appliance",
"entityId": "3bccdb1e-57a7-439d-98c9-c392dc45af71",
"href": "/systems/3bccdb1e-57a7-439d-98c9-c392dc45af71"
},
{
"serviceType": "EC2",
"resourceId": "i-0ed82f054d1597bfd",
"powerState": "Stopped",
"currentType": "m4.large",
"displayName": "ex-dev-appx-202",
"entityId": "44c017e1-bc16-4749-ae25-e89bdb377eeb",
"href": "/systems/44c017e1-bc16-4749-ae25-e89bdb377eeb"
},
{
"serviceType": "EC2",
"resourceId": "i-0e1fff7d4c3ba43f2",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "Mark CentOS7",
"entityId": "47e17521-5454-473b-8248-459398a15944",
"href": "/systems/47e17521-5454-473b-8248-459398a15944"
},
{
"serviceType": "EC2",
"resourceId": "i-051d5e98235eb92f6",
"powerState": "Stopped",
"currentType": "m3.medium",
"displayName": "HelloWorld",
"entityId": "4920848b-8392-45d7-937d-6b72f20e3941",
"href": "/systems/4920848b-8392-45d7-937d-6b72f20e3941"
},
{
"serviceType": "EC2",
"resourceId": "i-012f65c85279bf192",
"powerState": "Running",
"currentType": "t3.micro",
"displayName": "SQL Express",
"entityId": "49fb3629-1f2b-4039-b146-918eb8009184",
"href": "/systems/49fb3629-1f2b-4039-b146-918eb8009184"
},
{
"serviceType": "EC2",
"resourceId": "i-0cf1678e6a64ea477",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "09/11 instance renamed",
"entityId": "4cfaaa08-bbc0-4386-a422-a4c491ab336d",
"href": "/systems/4cfaaa08-bbc0-4386-a422-a4c491ab336d"
},
{
"serviceType": "RDS",
"resourceId": "db-bmffjnb3ccihyhd5z4kuxevcwq",
"powerState": "Running",
"currentType": "db.t2.micro",
"displayName": "calsoft-postgres-test-db",
"entityId": "4d5f0ad7-827a-43fb-ba88-a9de3ab69ce8",
"href": "/systems/4d5f0ad7-827a-43fb-ba88-a9de3ab69ce8"
},
{
"serviceType": "EC2",
"resourceId": "i-0ce922f0cdcc9d2fb",
"powerState": "Stopped",
"currentType": "m5a.xlarge",
"displayName": "i-0ce922f0cdcc9d2fb",
"entityId": "52555a14-94f2-4bff-baf0-fc145cb9d0aa",
"href": "/systems/52555a14-94f2-4bff-baf0-fc145cb9d0aa"
},
{
"serviceType": "EC2",
"resourceId": "i-019b8705b588a8b8b",
"powerState": "Stopped",
"currentType": "m1.small",
"displayName": "tom-vpc-m1.small",
"entityId": "547acc9b-9051-4fcf-969a-d75d4b752cb7",
"href": "/systems/547acc9b-9051-4fcf-969a-d75d4b752cb7"
},
{
"serviceType": "ASG",
"resourceId": "2df2c1b0-205f-4c25-a0cc-facfe3b4fb7b",
"powerState": "Running",
"displayName": "EC2ContainerService-default-EcsInstanceAsg-1SCER88I1U6RK",
"entityId": "5735d2ed-4b29-4fc4-81d4-ff1a84277210",
"href": "/systems/5735d2ed-4b29-4fc4-81d4-ff1a84277210"
},
{
"serviceType": "ASG",
"resourceId": "35b15a0b-ec78-44dc-bcf6-c3e6eda1877a",
"powerState": "Running",
"displayName": "anna-asg",
"entityId": "5da428a0-3dc5-46aa-98ca-eee5be68e8c4",
"href": "/systems/5da428a0-3dc5-46aa-98ca-eee5be68e8c4"
},
{
"serviceType": "RDS",
"resourceId": "db-2d56k7ceogaol2uv7uy65eupm4",
"powerState": "Running",
"currentType": "db.t2.micro",
"displayName": "calsoft-mariadb-test-db",
"entityId": "64c32cda-aebd-4c32-a820-2ee3bca85bd7",
"href": "/systems/64c32cda-aebd-4c32-a820-2ee3bca85bd7"
},
{
"serviceType": "EC2",
"resourceId": "i-0f66a171e357d4f0b",
"powerState": "Stopped",
"currentType": "t2.large",
"displayName": "ex-prepro-imco-216",
"entityId": "652ffdbf-7184-4a50-b9fb-5fa941e005ba",
"href": "/systems/652ffdbf-7184-4a50-b9fb-5fa941e005ba"
},
{
"serviceType": "EC2",
"resourceId": "i-020970cdaf29dbc0c",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "ex-pro-appx-120",
"entityId": "655dc715-958b-4144-9225-aba79d6ff268",
"href": "/systems/655dc715-958b-4144-9225-aba79d6ff268"
},
{
"serviceType": "RDS",
"resourceId": "db-jcssly3rbkf2mm62yfc7dmgmge",
"powerState": "Running",
"currentType": "db.t2.small",
"displayName": "sql-express",
"entityId": "68946cc4-64b1-4825-bd13-5b928f98e95d",
"href": "/systems/68946cc4-64b1-4825-bd13-5b928f98e95d"
},
{
"serviceType": "EC2",
"resourceId": "i-05f406265b87c3ca4",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "i-05f406265b87c3ca4",
"entityId": "6b137ee2-379d-445b-82d9-707dfd407048",
"href": "/systems/6b137ee2-379d-445b-82d9-707dfd407048"
},
{
"serviceType": "EC2",
"resourceId": "i-0a600182370914e7d",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "Windows+SQL Web",
"entityId": "710c936a-c1f2-496c-99cb-5dd40a039702",
"href": "/systems/710c936a-c1f2-496c-99cb-5dd40a039702"
},
{
"serviceType": "EC2",
"resourceId": "i-015a9305442794d03",
"powerState": "Stopped",
"currentType": "t2.xlarge",
"displayName": "SQL Enterprise",
"entityId": "71aa523c-04b8-44fd-8da1-fc5075df4fbb",
"href": "/systems/71aa523c-04b8-44fd-8da1-fc5075df4fbb"
},
{
"serviceType": "EC2",
"resourceId": "i-013a5fb1da1eaf413",
"powerState": "Stopped",
"currentType": "m4.xlarge",
"displayName": "ex-pro-rais-131",
"entityId": "7617462a-f996-4e80-8e2e-74d0e5e9ca09",
"href": "/systems/7617462a-f996-4e80-8e2e-74d0e5e9ca09"
},
{
"serviceType": "EC2",
"resourceId": "i-024bfb97e4ed57567",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "i-024bfb97e4ed57567",
"entityId": "789fe80b-eefe-491a-b630-31080d63d355",
"href": "/systems/789fe80b-eefe-491a-b630-31080d63d355"
},
{
"serviceType": "EC2",
"resourceId": "i-0b130eee6bc09b6b7",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "daniel-test-ec2-python37-just-more-stuff",
"entityId": "7b927ce7-e1f5-403e-8de0-09c5b2694522",
"href": "/systems/7b927ce7-e1f5-403e-8de0-09c5b2694522"
},
{
"serviceType": "EC2",
"resourceId": "i-032cbc27da439060f",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "i-032cbc27da439060f",
"entityId": "7ba5e066-b11d-4e41-8a8b-357f741f1d50",
"href": "/systems/7ba5e066-b11d-4e41-8a8b-357f741f1d50"
},
{
"serviceType": "ASG",
"resourceId": "d64758c0-e72c-4b79-9961-777861bc8467",
"powerState": "Running",
"displayName": "EC2ContainerService-ECS-Linux-with-mem-EcsInstanceAsg-1VN28MS414PFZ",
"entityId": "7c83ad96-6f64-4b59-93a9-90f901eecbf3",
"href": "/systems/7c83ad96-6f64-4b59-93a9-90f901eecbf3"
},
{
"serviceType": "EC2",
"resourceId": "i-088c6f872cd14395b",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "New Demo 2",
"entityId": "7ed50f36-d09a-47e5-a8ad-76a98419d27c",
"href": "/systems/7ed50f36-d09a-47e5-a8ad-76a98419d27c"
},
{
"serviceType": "EC2",
"resourceId": "i-0ee3e041d2f06c706",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "i-0ee3e041d2f06c706",
"entityId": "81e6405d-296d-4823-887a-dea63eb4f8a8",
"href": "/systems/81e6405d-296d-4823-887a-dea63eb4f8a8"
},
{
"serviceType": "ASG",
"resourceId": "1efc7b45-9a2b-4e61-850c-1e63df11df27",
"powerState": "Running",
"displayName": "EC2ContainerService-Tom-ECS-Cluster-EcsInstanceAsg-41MH4ZXJDZ9V",
"entityId": "840dd934-f70a-4991-a63f-2b053c7d84e7",
"href": "/systems/840dd934-f70a-4991-a63f-2b053c7d84e7"
},
{
"serviceType": "ASG",
"resourceId": "0b12f81c-f034-4631-a528-84463f9f5b1b",
"powerState": "Running",
"displayName": "Mark-ASG-Spot",
"entityId": "841cbe2d-dfc7-4479-8f2d-6e2b60dd11b5",
"href": "/systems/841cbe2d-dfc7-4479-8f2d-6e2b60dd11b5"
},
{
"serviceType": "EC2",
"resourceId": "i-0ddbe92afe17a28fa",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "cal-test-ebs-metrics-t2-unlimited",
"entityId": "85fb3507-6987-4f53-969c-121b863316d8",
"href": "/systems/85fb3507-6987-4f53-969c-121b863316d8"
},
{
"serviceType": "EC2",
"resourceId": "i-06d390ca1a0c59d95",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "c4 Test",
"entityId": "88bf8536-7f8e-4494-9930-5873ea982f7a",
"href": "/systems/88bf8536-7f8e-4494-9930-5873ea982f7a"
},
{
"serviceType": "EC2",
"resourceId": "i-0c78cf63c9e849c3d",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "i-0c78cf63c9e849c3d",
"entityId": "8bbba8fd-bb71-4448-9faf-7c210476547a",
"href": "/systems/8bbba8fd-bb71-4448-9faf-7c210476547a"
},
{
"serviceType": "EC2",
"resourceId": "i-0b270541533305eb3",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "TY Windows Instance",
"entityId": "8c66fb69-48b1-4f8c-b3af-33f79b288d63",
"href": "/systems/8c66fb69-48b1-4f8c-b3af-33f79b288d63"
},
{
"serviceType": "ASG",
"resourceId": "b59a1c47-3151-42eb-8c9c-44680346c6ad",
"powerState": "Running",
"displayName": "EC2ContainerService-ohio-maria-cluster-EcsInstanceAsg-1XN56N7NWGSE",
"entityId": "8f0c6e85-2714-4f84-9cf1-4c86a979fdc5",
"href": "/systems/8f0c6e85-2714-4f84-9cf1-4c86a979fdc5"
},
{
"serviceType": "RDS",
"resourceId": "db-kymsa5b6fvoincshikpixti6le",
"powerState": "Running",
"currentType": "db.t2.small",
"displayName": "mariadb-multiaz-us-east-1d",
"entityId": "8fa9387b-cb82-4266-8cfd-50622c821f8b",
"href": "/systems/8fa9387b-cb82-4266-8cfd-50622c821f8b"
},
{
"serviceType": "EC2",
"resourceId": "i-0575c613a9e05e0ef",
"powerState": "Stopped",
"currentType": "a1.medium",
"displayName": "Mark-ARM-a1.medium",
"entityId": "90a3f2d3-171c-4824-a8e9-357f402b1c10",
"href": "/systems/90a3f2d3-171c-4824-a8e9-357f402b1c10"
},
{
"serviceType": "ASG",
"resourceId": "5d48ee37-462c-4eff-957b-68e7d927b8ed",
"powerState": "Running",
"displayName": "tom-t2-nano",
"entityId": "974b0ddd-315e-45a4-b9f1-ffd33ee04a0c",
"href": "/systems/974b0ddd-315e-45a4-b9f1-ffd33ee04a0c"
},
{
"serviceType": "ASG",
"resourceId": "13437763-0cf3-4b0a-855f-25f9a383796f",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "EC2ContainerService-Calsoft-EcsInstanceAsg-1HBH89HP6AEJN",
"entityId": "97f6d190-f9fb-4fb2-bdb0-d633b99b5ab8",
"href": "/systems/97f6d190-f9fb-4fb2-bdb0-d633b99b5ab8"
},
{
"serviceType": "EC2",
"resourceId": "i-0732cb7755ff87961",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "Test Name",
"entityId": "9bda9741-63c5-4487-b4f7-5b1af834353d",
"href": "/systems/9bda9741-63c5-4487-b4f7-5b1af834353d"
},
{
"serviceType": "EC2",
"resourceId": "i-0e4bf52766b63d002",
"powerState": "Stopped",
"currentType": "m1.small",
"displayName": "Tom-Linux-Classic",
"entityId": "9d5c1a35-5aef-4de1-bfd6-3e3483fa912d",
"href": "/systems/9d5c1a35-5aef-4de1-bfd6-3e3483fa912d"
},
{
"serviceType": "EC2",
"resourceId": "i-0779f51684d8732e2",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "i-0779f51684d8732e2",
"entityId": "9d88ed01-bf80-4e7d-b137-73464d96ba3c",
"href": "/systems/9d88ed01-bf80-4e7d-b137-73464d96ba3c"
},
{
"serviceType": "EC2",
"resourceId": "i-09f2f11834730e5db",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "cal-redhat-ebs-testing",
"entityId": "a471062b-6c51-4aa9-a387-48694792db28",
"href": "/systems/a471062b-6c51-4aa9-a387-48694792db28"
},
{
"serviceType": "RDS",
"resourceId": "db-ypjeuu47e7exgq5tqmeqmqo3sy",
"powerState": "Running",
"currentType": "db.t2.small",
"displayName": "mariadb-multiaz",
"entityId": "a4e95c00-c624-4869-9812-7fd360be1d70",
"href": "/systems/a4e95c00-c624-4869-9812-7fd360be1d70"
},
{
"serviceType": "RDS",
"resourceId": "db-gkd2ttqn6sblplzcane4waylwy",
"powerState": "Running",
"currentType": "db.t2.small",
"displayName": "calsoft-aurora-test-db",
"entityId": "a6f45bbd-dc09-4982-b615-6d37dbc4b615",
"href": "/systems/a6f45bbd-dc09-4982-b615-6d37dbc4b615"
},
{
"serviceType": "EC2",
"resourceId": "i-0c71a5f1ce33997fa",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "awu-windows-cw-agent-3",
"entityId": "a9075d8e-29e7-48d0-9367-b2c150d09932",
"href": "/systems/a9075d8e-29e7-48d0-9367-b2c150d09932"
},
{
"serviceType": "EC2",
"resourceId": "i-0d87edcd864820ac1",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "Densify Gateway Tom",
"entityId": "ae28ddff-be44-4c12-92f2-7dbee1199073",
"href": "/systems/ae28ddff-be44-4c12-92f2-7dbee1199073"
},
{
"serviceType": "EC2",
"resourceId": "i-0c3d9a0688b1bc2d7",
"powerState": "Stopped",
"currentType": "t2.large",
"displayName": "ex-prepro-imco-216",
"entityId": "b37a2fda-7bca-4069-8999-b94ac6376c3e",
"href": "/systems/b37a2fda-7bca-4069-8999-b94ac6376c3e"
},
{
"serviceType": "EC2",
"resourceId": "i-064e435a6c9129d4c",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "New Demo 2",
"entityId": "bb2d5102-7e1a-4049-adf9-50a6d0b98127",
"href": "/systems/bb2d5102-7e1a-4049-adf9-50a6d0b98127"
},
{
"serviceType": "EC2",
"resourceId": "i-0cbcd994206771179",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "i-0cbcd994206771179",
"entityId": "be1b9971-049e-4a9d-8ebd-8ed6fa3f909c",
"href": "/systems/be1b9971-049e-4a9d-8ebd-8ed6fa3f909c"
},
{
"serviceType": "ASG",
"resourceId": "96c82659-4c36-43e9-9875-6e166a21297d",
"powerState": "Running",
"displayName": "Template with CloudWatch agent",
"entityId": "c0471206-3312-42cf-a701-e21f8fca7fab",
"href": "/systems/c0471206-3312-42cf-a701-e21f8fca7fab"
},
{
"serviceType": "RDS",
"resourceId": "db-ay7plxbs6u7iaqptmo7l65buqe",
"powerState": "Running",
"currentType": "db.t2.micro",
"displayName": "calsoft-mariadb-test-db",
"entityId": "c0672358-20ed-4306-9f7f-5a41ba423aa8",
"href": "/systems/c0672358-20ed-4306-9f7f-5a41ba423aa8"
},
{
"serviceType": "EC2",
"resourceId": "i-08c436b05fb5e987d",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "odesk,base,odesk-dnsclient,odesk-pythia,odesk-match,odesk-tomcat7,odesk-feed,odesk-mysql,odesk-fimi,odesk-eventlog,odesk-match-i",
"entityId": "c2189935-1b55-40c7-8025-072c09bb614b",
"href": "/systems/c2189935-1b55-40c7-8025-072c09bb614b"
},
{
"serviceType": "ASG",
"resourceId": "44594827-6e96-4d4b-9380-3958c5424fde",
"powerState": "Running",
"displayName": "Mark-ASG-Max0",
"entityId": "c32b418a-abdd-464e-a040-cc9213bd3992",
"href": "/systems/c32b418a-abdd-464e-a040-cc9213bd3992"
},
{
"serviceType": "ASG",
"resourceId": "88fdb8ea-2e54-4ed4-9a2b-d25c31b1d10b",
"powerState": "Running",
"displayName": "EC2ContainerService-Calsoft-linux-cluster-EcsInstanceAsg-40YSZTVXZGPK",
"entityId": "c78c8470-4aa3-4038-9de6-7047226b5b08",
"href": "/systems/c78c8470-4aa3-4038-9de6-7047226b5b08"
},
{
"serviceType": "EC2",
"resourceId": "i-036de50c9240d635c",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "myname",
"entityId": "c7a291c3-0c2e-4906-a39a-435303b15389",
"href": "/systems/c7a291c3-0c2e-4906-a39a-435303b15389"
},
{
"serviceType": "EC2",
"resourceId": "i-08cf7875f0f149d37",
"powerState": "Stopped",
"currentType": "t2.micro",
"displayName": "Nov 2 2:49",
"entityId": "cda0c96a-3b88-4321-9993-6d164fe5bb0d",
"href": "/systems/cda0c96a-3b88-4321-9993-6d164fe5bb0d"
},
{
"serviceType": "EC2",
"resourceId": "i-0e2222b8f632df485",
"powerState": "Stopped",
"currentType": "m4.large",
"displayName": "ex-dev-appx-202",
"entityId": "d2740e57-b311-4ecd-b628-8ef1f36e1869",
"href": "/systems/d2740e57-b311-4ecd-b628-8ef1f36e1869"
},
{
"serviceType": "EC2",
"resourceId": "i-005d2ddb680343043",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "maria-memconfig-ohio",
"entityId": "da928f32-4183-4f8a-b823-9d9c5a130e27",
"href": "/systems/da928f32-4183-4f8a-b823-9d9c5a130e27"
},
{
"serviceType": "EC2",
"resourceId": "i-0d359a1b33a8d20f4",
"powerState": "Stopped",
"currentType": "c5.large",
"displayName": "Multi-EBS volumes",
"entityId": "dc4e48d4-de39-4586-9174-4189c385d102",
"href": "/systems/dc4e48d4-de39-4586-9174-4189c385d102"
},
{
"serviceType": "ASG",
"resourceId": "39cda6dd-da26-4abd-8d94-2aa083839782",
"powerState": "Running",
"currentType": "t2.micro",
"displayName": "Mark-ASG-Max1",
"entityId": "de2b844c-42b4-4851-b953-44015a49eb51",
"href": "/systems/de2b844c-42b4-4851-b953-44015a49eb51"
},
{
"serviceType": "EC2",
"resourceId": "i-06ee52a401b2a2b71",
"powerState": "Running",
"currentType": "t3.micro",
"displayName": "tem1_3",
"entityId": "dfbedaba-ce12-4897-9687-eb4f37cba7bc",
"href": "/systems/dfbedaba-ce12-4897-9687-eb4f37cba7bc"
},
{
"serviceType": "EC2",
"resourceId": "i-0fb20642d484c568f",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "Test Instance 152",
"entityId": "e06aa72e-8c61-44a1-a389-34b7ed4c8ee2",
"href": "/systems/e06aa72e-8c61-44a1-a389-34b7ed4c8ee2"
},
{
"serviceType": "ASG",
"resourceId": "05eeb44f-c4c9-434d-9143-8107c8ee890e",
"powerState": "Running",
"displayName": "Test ASG using Test Launch Config",
"entityId": "e1833d11-ab91-4ef5-89ec-cabb9577527b",
"href": "/systems/e1833d11-ab91-4ef5-89ec-cabb9577527b"
},
{
"serviceType": "RDS",
"resourceId": "db-pfnzbc3ahhaqtt5gyhi7h4lhbi",
"powerState": "Running",
"currentType": "db.t2.micro",
"displayName": "autoscale-1",
"entityId": "ef37339b-d400-4a8c-a080-44e6bfd8db19",
"href": "/systems/ef37339b-d400-4a8c-a080-44e6bfd8db19"
},
{
"serviceType": "ASG",
"resourceId": "694e9625-f88d-4141-b9d7-24377103e054",
"powerState": "Running",
"displayName": "Test Group",
"entityId": "f38ea794-de74-4281-9964-59d8097a4f9f",
"href": "/systems/f38ea794-de74-4281-9964-59d8097a4f9f"
},
{
"serviceType": "ASG",
"resourceId": "f2ade329-6870-4907-bd5b-1a6be30a9b21",
"powerState": "Running",
"displayName": "Mark-Template-ASG",
"entityId": "f49eb5fb-bea2-4222-8df7-3788e0ef97bf",
"href": "/systems/f49eb5fb-bea2-4222-8df7-3788e0ef97bf"
},
{
"serviceType": "ASG",
"resourceId": "bebf3f9c-4ecd-446d-b6c4-532369fc54d2",
"powerState": "Running",
"displayName": "EC2ContainerService-anna-ecs-cluster-EcsInstanceAsg-7Y15ERTJJ55I",
"entityId": "fa1ca76a-a656-46c6-9135-53c9ef9e84af",
"href": "/systems/fa1ca76a-a656-46c6-9135-53c9ef9e84af"
},
{
"serviceType": "ASG",
"resourceId": "b8949266-9228-4991-9ba9-d007d9c39985",
"powerState": "Running",
"displayName": "anna-spot-template",
"entityId": "fbd3efbc-7d2a-4227-a5ef-7303b04283c4",
"href": "/systems/fbd3efbc-7d2a-4227-a5ef-7303b04283c4"
},
{
"serviceType": "EC2",
"resourceId": "i-03e6b8b6427bdb683",
"powerState": "Stopped",
"currentType": "c4.large",
"displayName": "i-03e6b8b6427bdb683",
"entityId": "fbec855a-1c01-4b4d-9d93-c34320cf0290",
"href": "/systems/fbec855a-1c01-4b4d-9d93-c34320cf0290"
}
]
- name: Get Analysis Recommendations (JSON)
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0) {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"entityId\", firstdata.entityId);\r"
- "}"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/aws/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- "{{analysisId}}"
- results
description: "Retrieves the latest AWS recommendations. Output available in JSON or Terraform media output.\r\n\r\nRefer to the help topic below for a full description of the elements. A few important ones:\r\n> **approvalType** \r\n> This is a key element which triggers an Instance resize if you are using the Kubex Terraform reference implementation. approvalType contains either **all** or a new instance type ex. **m4.large** if a recommendation has passed all criteria in your chosen Kubex Policy. \r\n\r\n> **implementationMethod** \r\n> A value of **Self Optimization** indicates the recommendation has passed all criteria and can be automated. This usually goes hand in hand with approvalType=all. A value of **Manual** indicates the recommendation should be manually done as in the case of a *Terminate* of idle instances.\r\n\r\n> Generally 'Self Optimization' is only set when Effort has been determined to be **Low**. See Informed decisions section.\r\n\r\n\r\nNotes:\r\n> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want the results for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.\r\n\r\n> In this example, the environment variable `entityId` is set to the first returned *entityId* element for future use.\r\n\r\nSee example. Refer to Kubex Online Help [AWS Analysis Recommendations](https://www.densify.com/docs-api/Content/API_Guide/Analysis_AWS_Results.htm\r\n)."
response:
- name: "Get Analysis Recommendations (JSON) + Workload dataQuality "
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: '{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/aws/7abb627d-48db-4520-9e90-f46946ea6a24/results?dataQuality="CPU Utilization,Memory Utilization"'
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- 7abb627d-48db-4520-9e90-f46946ea6a24
- results
query:
- key: dataQuality
value: '"CPU Utilization,Memory Utilization"'
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-encoding
value: gzip
- key: vary
value: Accept-Encoding
- key: date
value: Mon, 25 May 2020 19:49:11 GMT
- key: x-envoy-upstream-service-time
value: "60"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"entityId": "88bf8536-7f8e-4494-9930-5873ea982f7a",
"resourceId": "i-06d390ca1a0c59d95",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "Markham'333",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "a6f45bbd-dc09-4982-b615-6d37dbc4b615",
"resourceId": "db-gkd2ttqn6sblplzcane4waylwy",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.small",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "db.r5.large",
"implementationMethod": "Manual",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "calsoft-aurora-test-db",
"rptHref": "/systems/a6f45bbd-dc09-4982-b615-6d37dbc4b615/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -57.56656,
"effortEstimate": "Moderate",
"powerState": "Running",
"recommendedHostEntityId": "246a1535-542a-4b8c-ae06-35a71a596021",
"currentCost": 29.93,
"recommendedCost": 211.7,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.29,
"currentRiCoverage": 0,
"recommFirstSeen": 1589354340957,
"recommLastSeen": 1590218244110,
"recommSeenCount": 3,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "2338151c-d853-4fa3-b170-c33f7e387252",
"resourceId": "db-jnwqh6iknt635hk7aehgpgraku",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "db.t2.micro",
"recommendationType": "Upsize",
"recommendedType": "db.t3.small",
"implementationMethod": "Manual",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "calsoft-sql-test-db",
"rptHref": "/systems/2338151c-d853-4fa3-b170-c33f7e387252/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -6.2421565,
"effortEstimate": "Moderate",
"powerState": "Running",
"recommendedHostEntityId": "ea3cb3df-ead7-471e-9608-c47da07ec6d1",
"currentCost": 19.71,
"recommendedCost": 39.42,
"serviceType": "RDS",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.05,
"currentRiCoverage": 0,
"recommFirstSeen": 1589354340920,
"recommLastSeen": 1590218244087,
"recommSeenCount": 3,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "a4e95c00-c624-4869-9812-7fd360be1d70",
"resourceId": "db-ypjeuu47e7exgq5tqmeqmqo3sy",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.small",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "db.r5.large",
"implementationMethod": "Manual",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "mariadb-multiaz",
"rptHref": "/systems/a4e95c00-c624-4869-9812-7fd360be1d70/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -57.56656,
"effortEstimate": "Moderate",
"powerState": "Running",
"recommendedHostEntityId": "246a1535-542a-4b8c-ae06-35a71a596021",
"currentCost": 29.93,
"recommendedCost": 211.7,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.29,
"currentRiCoverage": 0,
"recommFirstSeen": 1589354341723,
"recommLastSeen": 1590218244310,
"recommSeenCount": 3,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "8fa9387b-cb82-4266-8cfd-50622c821f8b",
"resourceId": "db-kymsa5b6fvoincshikpixti6le",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.small",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "db.r5.large",
"implementationMethod": "Manual",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "mariadb-multiaz-us-east-1d",
"rptHref": "/systems/8fa9387b-cb82-4266-8cfd-50622c821f8b/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -57.56656,
"effortEstimate": "Moderate",
"powerState": "Running",
"recommendedHostEntityId": "246a1535-542a-4b8c-ae06-35a71a596021",
"currentCost": 29.93,
"recommendedCost": 211.7,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.29,
"currentRiCoverage": 0,
"recommFirstSeen": 1589354340957,
"recommLastSeen": 1590218244110,
"recommSeenCount": 3,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "4cfaaa08-bbc0-4386-a422-a4c491ab336d",
"resourceId": "i-0cf1678e6a64ea477",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "09/11 instance renamed",
"rptHref": "/systems/4cfaaa08-bbc0-4386-a422-a4c491ab336d/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "ef37339b-d400-4a8c-a080-44e6bfd8db19",
"resourceId": "db-pfnzbc3ahhaqtt5gyhi7h4lhbi",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.micro",
"recommendationType": "Just Right",
"recommendedType": "db.t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "autoscale-1",
"rptHref": "/systems/ef37339b-d400-4a8c-a080-44e6bfd8db19/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "13496a27-6641-4ee9-b704-4685bdeba8a2",
"currentCost": 12.41,
"recommendedCost": 12.41,
"serviceType": "RDS",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "0da4957c-dc0b-43cf-bb64-f8af88a434e7",
"resourceId": "i-0912a65d505dc1400",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "awu-ubuntu-cw-agent",
"rptHref": "/systems/0da4957c-dc0b-43cf-bb64-f8af88a434e7/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1584083748223,
"recommLastSeen": 1590218244297,
"recommSeenCount": 23,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1584072391797,
"dateLastAudited": 1590206708247,
"auditCount": 29
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1583985600000,
"lastSeen": 1590120000000,
"completeDays": 28,
"partialDays": 1
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1587009600000,
"lastSeen": 1590120000000,
"completeDays": 15,
"partialDays": 0
}
]
},
{
"entityId": "2d9be5f1-c308-4595-96de-cb1a7fc3e026",
"resourceId": "i-010ce1bed097b80ea",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "awu-windows-cw-agent",
"rptHref": "/systems/2d9be5f1-c308-4595-96de-cb1a7fc3e026/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1583996991890,
"recommLastSeen": 1590218244297,
"recommSeenCount": 24,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1583986714240,
"dateLastAudited": 1590206708247,
"auditCount": 30
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1583899200000,
"lastSeen": 1590120000000,
"completeDays": 29,
"partialDays": 1
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1583899200000,
"lastSeen": 1590120000000,
"completeDays": 24,
"partialDays": 3
}
]
},
{
"entityId": "a9075d8e-29e7-48d0-9367-b2c150d09932",
"resourceId": "i-0c71a5f1ce33997fa",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 28.7,
"totalHoursRunning": 372,
"name": "awu-windows-cw-agent-3",
"rptHref": "/systems/a9075d8e-29e7-48d0-9367-b2c150d09932/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1585639024790,
"recommLastSeen": 1590218244297,
"recommSeenCount": 11,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1585627531787,
"dateLastAudited": 1590206708247,
"auditCount": 16
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1585540800000,
"lastSeen": 1590120000000,
"completeDays": 15,
"partialDays": 1
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1585540800000,
"lastSeen": 1590120000000,
"completeDays": 15,
"partialDays": 1
}
]
},
{
"entityId": "a471062b-6c51-4aa9-a387-48694792db28",
"resourceId": "i-09f2f11834730e5db",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "cal-redhat-ebs-testing",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "c0672358-20ed-4306-9f7f-5a41ba423aa8",
"resourceId": "db-ay7plxbs6u7iaqptmo7l65buqe",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.micro",
"recommendationType": "Just Right",
"recommendedType": "db.t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "calsoft-mariadb-test-db",
"rptHref": "/systems/c0672358-20ed-4306-9f7f-5a41ba423aa8/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "13496a27-6641-4ee9-b704-4685bdeba8a2",
"currentCost": 24.82,
"recommendedCost": 24.82,
"serviceType": "RDS",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.03,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587660,
"recommLastSeen": 1590218244300,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "64c32cda-aebd-4c32-a820-2ee3bca85bd7",
"resourceId": "db-2d56k7ceogaol2uv7uy65eupm4",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "db.t2.micro",
"recommendationType": "Just Right",
"recommendedType": "db.t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "calsoft-mariadb-test-db",
"rptHref": "/systems/64c32cda-aebd-4c32-a820-2ee3bca85bd7/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "13496a27-6641-4ee9-b704-4685bdeba8a2",
"currentCost": 32.12,
"recommendedCost": 32.12,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.04,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587583,
"recommLastSeen": 1590218244087,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "248bdd60-306d-45ff-964d-b6ecc2b4b89c",
"resourceId": "db-smswixvatsgsybx56fdzliarbq",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.micro",
"recommendationType": "Just Right",
"recommendedType": "db.t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "calsoft-mysql",
"rptHref": "/systems/248bdd60-306d-45ff-964d-b6ecc2b4b89c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "13496a27-6641-4ee9-b704-4685bdeba8a2",
"currentCost": 12.41,
"recommendedCost": 12.41,
"serviceType": "RDS",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587597,
"recommLastSeen": 1590218244110,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "4d5f0ad7-827a-43fb-ba88-a9de3ab69ce8",
"resourceId": "db-bmffjnb3ccihyhd5z4kuxevcwq",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "db.t2.micro",
"recommendationType": "Just Right",
"recommendedType": "db.t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "calsoft-postgres-test-db",
"rptHref": "/systems/4d5f0ad7-827a-43fb-ba88-a9de3ab69ce8/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "13496a27-6641-4ee9-b704-4685bdeba8a2",
"currentCost": 17.52,
"recommendedCost": 17.52,
"serviceType": "RDS",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587583,
"recommLastSeen": 1590218244087,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "1624516e-0561-4d80-9fb3-57f713b8c82a",
"resourceId": "i-086e2a5955912767a",
"currentType": "c5.large",
"recommendationType": "Not Analyzed",
"name": "cal-test-ebs",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 62.05,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "85fb3507-6987-4f53-969c-121b863316d8",
"resourceId": "i-0ddbe92afe17a28fa",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "cal-test-ebs-metrics-t2-unlimited",
"rptHref": "/systems/85fb3507-6987-4f53-969c-121b863316d8/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "07888649-32ec-4ce6-8830-1172c50b245e",
"resourceId": "i-040845d1cb0f875ad",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 5.83,
"totalHoursRunning": 84,
"name": "cal-windows-cw_agent-t2-unlimited",
"rptHref": "/systems/07888649-32ec-4ce6-8830-1172c50b245e/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Stopped",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1585540800000,
"completeDays": 153,
"partialDays": 1
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1585540800000,
"completeDays": 153,
"partialDays": 1
}
]
},
{
"entityId": "7b927ce7-e1f5-403e-8de0-09c5b2694522",
"resourceId": "i-0b130eee6bc09b6b7",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "daniel-test-ec2-python37-just-more-stuff",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "ae28ddff-be44-4c12-92f2-7dbee1199073",
"resourceId": "i-0d87edcd864820ac1",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "Densify Gateway Tom",
"rptHref": "/systems/ae28ddff-be44-4c12-92f2-7dbee1199073/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "3bccdb1e-57a7-439d-98c9-c392dc45af71",
"resourceId": "i-0973e881a6e668016",
"currentType": "t2.large",
"recommendationType": "Not Analyzed",
"name": "Densify-Connector-Appliance",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 88.18,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "01d317c7-b2ec-41dc-ad81-9c687dd0cc5b",
"resourceId": "422b4aa8-ca56-45b1-af53-7342775c4a84",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t3.small",
"recommendationType": "Just Right",
"recommendedType": "t3.small",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "ebs-enabled-asg",
"rptHref": "/systems/01d317c7-b2ec-41dc-ad81-9c687dd0cc5b/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "9a67bfc4-7d30-4e75-9c4d-1ca501b0c4fd",
"currentCost": 15.18,
"recommendedCost": 15.18,
"serviceType": "ASG",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "97f6d190-f9fb-4fb2-bdb0-d633b99b5ab8",
"resourceId": "13437763-0cf3-4b0a-855f-25f9a383796f",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "EC2ContainerService-Calsoft-EcsInstanceAsg-1HBH89HP6AEJN",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
}
},
{
"entityId": "366b0b81-d4f5-4888-bfe0-f5fec9323921",
"resourceId": "i-09354c1e0384190a4",
"currentType": "t1.micro",
"recommendationType": "Not Analyzed",
"name": "ec2-paravirtual",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 14.6,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "44c017e1-bc16-4749-ae25-e89bdb377eeb",
"resourceId": "i-0ed82f054d1597bfd",
"currentType": "m4.large",
"recommendationType": "Not Analyzed",
"name": "ex-dev-appx-202",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 73,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "d2740e57-b311-4ecd-b628-8ef1f36e1869",
"resourceId": "i-0e2222b8f632df485",
"currentType": "m4.large",
"recommendationType": "Not Analyzed",
"name": "ex-dev-appx-202",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 73,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1590218244093,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "b37a2fda-7bca-4069-8999-b94ac6376c3e",
"resourceId": "i-0c3d9a0688b1bc2d7",
"currentType": "t2.large",
"recommendationType": "Not Analyzed",
"name": "ex-prepro-imco-216",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 67.74,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587607,
"recommLastSeen": 1590218244267,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "652ffdbf-7184-4a50-b9fb-5fa941e005ba",
"resourceId": "i-0f66a171e357d4f0b",
"currentType": "t2.large",
"recommendationType": "Not Analyzed",
"name": "ex-prepro-imco-216",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 67.74,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "655dc715-958b-4144-9225-aba79d6ff268",
"resourceId": "i-020970cdaf29dbc0c",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "ex-pro-appx-120",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 73,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "17b4048e-e1a2-4925-a5a9-071665cd6b15",
"resourceId": "i-052f8be45bbc6251f",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "ex-pro-appx-120",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 73,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "167fd200-b0a3-40df-ab09-bcd9f1eee6f7",
"resourceId": "i-00f0736c58af71d44",
"currentType": "m4.xlarge",
"recommendationType": "Not Analyzed",
"name": "ex-pro-rais-131",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 146,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587607,
"recommLastSeen": 1590218244267,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "7617462a-f996-4e80-8e2e-74d0e5e9ca09",
"resourceId": "i-013a5fb1da1eaf413",
"currentType": "m4.xlarge",
"recommendationType": "Not Analyzed",
"name": "ex-pro-rais-131",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 146,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1590218244093,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "4920848b-8392-45d7-937d-6b72f20e3941",
"resourceId": "i-051d5e98235eb92f6",
"currentType": "m3.medium",
"recommendationType": "Not Analyzed",
"name": "HelloWorld",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 48.91,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587667,
"recommLastSeen": 1590218244310,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "036b3675-14df-409b-a149-7bb8d22c8b87",
"resourceId": "i-0067dfc6d2db9c77b",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "i-0067dfc6d2db9c77b",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587607,
"recommLastSeen": 1590218244267,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "789fe80b-eefe-491a-b630-31080d63d355",
"resourceId": "i-024bfb97e4ed57567",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-024bfb97e4ed57567",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 100.01,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587583,
"recommLastSeen": 1590218244087,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "7ba5e066-b11d-4e41-8a8b-357f741f1d50",
"resourceId": "i-032cbc27da439060f",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "i-032cbc27da439060f",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 10.07,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587627,
"recommLastSeen": 1590218244277,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "fbec855a-1c01-4b4d-9d93-c34320cf0290",
"resourceId": "i-03e6b8b6427bdb683",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-03e6b8b6427bdb683",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "0d3aac0f-3323-44b4-9583-f81e72e74e16",
"resourceId": "i-04f0adc6f7b6d262a",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-04f0adc6f7b6d262a",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 100.01,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587583,
"recommLastSeen": 1590218244087,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "6b137ee2-379d-445b-82d9-707dfd407048",
"resourceId": "i-05f406265b87c3ca4",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-05f406265b87c3ca4",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "19ab2318-b1ba-4328-ba01-9f7a9a94bcbb",
"resourceId": "i-0647d2ba2d871c59f",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "i-0647d2ba2d871c59f",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1573448400000,
"completeDays": 78,
"partialDays": 1
}
]
},
{
"entityId": "9d88ed01-bf80-4e7d-b137-73464d96ba3c",
"resourceId": "i-0779f51684d8732e2",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "i-0779f51684d8732e2",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "0dc3b8d9-972b-4f64-8984-2baf6e51b428",
"resourceId": "i-0a74812e05383ad89",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-0a74812e05383ad89",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "8bbba8fd-bb71-4448-9faf-7c210476547a",
"resourceId": "i-0c78cf63c9e849c3d",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "i-0c78cf63c9e849c3d",
"rptHref": "/systems/8bbba8fd-bb71-4448-9faf-7c210476547a/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1573448400000,
"lastSeen": 1585540800000,
"completeDays": 75,
"partialDays": 1
}
]
},
{
"entityId": "be1b9971-049e-4a9d-8ebd-8ed6fa3f909c",
"resourceId": "i-0cbcd994206771179",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "i-0cbcd994206771179",
"rptHref": "/systems/be1b9971-049e-4a9d-8ebd-8ed6fa3f909c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1573448400000,
"lastSeen": 1590120000000,
"completeDays": 90,
"partialDays": 1
}
]
},
{
"entityId": "52555a14-94f2-4bff-baf0-fc145cb9d0aa",
"resourceId": "i-0ce922f0cdcc9d2fb",
"currentType": "m5a.xlarge",
"recommendationType": "Not Analyzed",
"name": "i-0ce922f0cdcc9d2fb",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 125.56,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "255aca56-6524-433f-a010-001f01638893",
"resourceId": "i-0d5eaddba5632945f",
"currentType": "m5a.large",
"recommendationType": "Not Analyzed",
"name": "i-0d5eaddba5632945f",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 62.78,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "81e6405d-296d-4823-887a-dea63eb4f8a8",
"resourceId": "i-0ee3e041d2f06c706",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-0ee3e041d2f06c706",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "0b75e7ca-10e0-4ee8-969e-d95c8b477a94",
"resourceId": "i-fee6164a",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "i-fee6164a",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 10.07,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587627,
"recommLastSeen": 1590218244277,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "da928f32-4183-4f8a-b823-9d9c5a130e27",
"resourceId": "i-005d2ddb680343043",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "maria-memconfig-ohio",
"rptHref": "/systems/da928f32-4183-4f8a-b823-9d9c5a130e27/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1590218244093,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "3b3b7cac-bd70-4e89-a566-6b5536df8dfb",
"resourceId": "i-00682ef289bd5bda2",
"currentType": "t2.nano",
"recommendationType": "Not Analyzed",
"name": "Mark CentOS",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 4.23,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "47e17521-5454-473b-8248-459398a15944",
"resourceId": "i-0e1fff7d4c3ba43f2",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "Mark CentOS7",
"rptHref": "/systems/47e17521-5454-473b-8248-459398a15944/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1573448400000,
"lastSeen": 1590120000000,
"completeDays": 90,
"partialDays": 1
}
]
},
{
"entityId": "1a927c1a-906e-4b2c-a7eb-4508fbf3e473",
"resourceId": "i-0e84bdc6d73420d83",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "mark ubuntu 2",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "90a3f2d3-171c-4824-a8e9-357f402b1c10",
"resourceId": "i-0575c613a9e05e0ef",
"currentType": "a1.medium",
"recommendationType": "Not Analyzed",
"name": "Mark-ARM-a1.medium",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 18.61,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587607,
"recommLastSeen": 1590218244267,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "de2b844c-42b4-4851-b953-44015a49eb51",
"resourceId": "39cda6dd-da26-4abd-8d94-2aa083839782",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "Mark-ASG-Max1",
"rptHref": "/systems/de2b844c-42b4-4851-b953-44015a49eb51/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "2a4243f1-aa95-43a2-88b6-b6b7ab5c7c06",
"resourceId": "i-0af01a4f4efb1e8be",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "Mark-Tag-Mapping-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1590218244093,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "dc4e48d4-de39-4586-9174-4189c385d102",
"resourceId": "i-0d359a1b33a8d20f4",
"currentType": "c5.large",
"recommendationType": "Not Analyzed",
"name": "Multi-EBS volumes",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 62.05,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "c7a291c3-0c2e-4906-a39a-435303b15389",
"resourceId": "i-036de50c9240d635c",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "myname",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "bb2d5102-7e1a-4049-adf9-50a6d0b98127",
"resourceId": "i-064e435a6c9129d4c",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "New Demo 2",
"rptHref": "/systems/bb2d5102-7e1a-4049-adf9-50a6d0b98127/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "7ed50f36-d09a-47e5-a8ad-76a98419d27c",
"resourceId": "i-088c6f872cd14395b",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "New Demo 2",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "2b3686fb-c342-43ee-b4ae-9b250924ff53",
"resourceId": "i-07d3af583d28fd7d4",
"currentType": "m4.large",
"recommendationType": "Not Analyzed",
"name": "New Instance 1",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 80.3,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "cda0c96a-3b88-4321-9993-6d164fe5bb0d",
"resourceId": "i-08cf7875f0f149d37",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "Nov 2 2:49",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587597,
"recommLastSeen": 1590218244110,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "c2189935-1b55-40c7-8025-072c09bb614b",
"resourceId": "i-08c436b05fb5e987d",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "odesk,base,odesk-dnsclient,odesk-pythia,odesk-match,odesk-tomcat7,odesk-feed,odesk-mysql,odesk-fimi,odesk-eventlog,odesk-match-i",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587607,
"recommLastSeen": 1590218244267,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "2fa928c0-7d7f-4dcf-9a84-d9f5040ed7a3",
"resourceId": "0838f71e-b882-489b-9b42-8dcaf49da189",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "spot",
"rptHref": "/systems/2fa928c0-7d7f-4dcf-9a84-d9f5040ed7a3/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "71aa523c-04b8-44fd-8da1-fc5075df4fbb",
"resourceId": "i-015a9305442794d03",
"currentType": "t2.xlarge",
"recommendationType": "Not Analyzed",
"name": "SQL Enterprise",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 165.42,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "49fb3629-1f2b-4039-b146-918eb8009184",
"resourceId": "i-012f65c85279bf192",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t3.micro",
"recommendationType": "Just Right",
"recommendedType": "t3.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "SQL Express",
"rptHref": "/systems/49fb3629-1f2b-4039-b146-918eb8009184/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "1ec5b0e5-d8bc-44f6-bddd-e686aa8a19b9",
"currentCost": 14.31,
"recommendedCost": 14.31,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1590218244297,
"recommLastSeen": 1590218244297,
"recommSeenCount": 1,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "68946cc4-64b1-4825-bd13-5b928f98e95d",
"resourceId": "db-jcssly3rbkf2mm62yfc7dmgmge",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.small",
"recommendationType": "Just Right",
"recommendedType": "db.t2.small",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "sql-express",
"rptHref": "/systems/68946cc4-64b1-4825-bd13-5b928f98e95d/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "fcf9ac59-81ad-4877-9131-f8a8e0c9e785",
"currentCost": 32.12,
"recommendedCost": 32.12,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.04,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587660,
"recommLastSeen": 1590218244300,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "24bc2aab-8eb9-4306-b6e0-e80244386039",
"resourceId": "i-06a20a109dca187b8",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "t2 Test 1",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "dfbedaba-ce12-4897-9687-eb4f37cba7bc",
"resourceId": "i-06ee52a401b2a2b71",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t3.micro",
"recommendationType": "Just Right",
"recommendedType": "t3.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "tem1_3",
"rptHref": "/systems/dfbedaba-ce12-4897-9687-eb4f37cba7bc/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "1ec5b0e5-d8bc-44f6-bddd-e686aa8a19b9",
"currentCost": 7.59,
"recommendedCost": 7.59,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1573448400000,
"lastSeen": 1590120000000,
"completeDays": 90,
"partialDays": 1
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1573448400000,
"lastSeen": 1590120000000,
"completeDays": 90,
"partialDays": 1
}
]
},
{
"entityId": "2997240d-5b20-4c46-bc48-7efafdfba101",
"resourceId": "i-0113b67377ee899e4",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t3.micro",
"recommendationType": "Just Right",
"recommendedType": "t3.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "tem1_4",
"rptHref": "/systems/2997240d-5b20-4c46-bc48-7efafdfba101/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "1ec5b0e5-d8bc-44f6-bddd-e686aa8a19b9",
"currentCost": 7.59,
"recommendedCost": 7.59,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "e06aa72e-8c61-44a1-a389-34b7ed4c8ee2",
"resourceId": "i-0fb20642d484c568f",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "Test Instance 152",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "9bda9741-63c5-4487-b4f7-5b1af834353d",
"resourceId": "i-0732cb7755ff87961",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "Test Name",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "9d5c1a35-5aef-4de1-bfd6-3e3483fa912d",
"resourceId": "i-0e4bf52766b63d002",
"currentType": "m1.small",
"recommendationType": "Not Analyzed",
"name": "Tom-Linux-Classic",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 32.12,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587667,
"recommLastSeen": 1590218244310,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "20e11428-531c-4c6f-a1d4-fe1d0e55d57a",
"resourceId": "i-07ec21b7a361db2be",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "tom-t2-unlimited",
"rptHref": "/systems/20e11428-531c-4c6f-a1d4-fe1d0e55d57a/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "547acc9b-9051-4fcf-969a-d75d4b752cb7",
"resourceId": "i-019b8705b588a8b8b",
"currentType": "m1.small",
"recommendationType": "Not Analyzed",
"name": "tom-vpc-m1.small",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 32.12,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "8c66fb69-48b1-4f8c-b3af-33f79b288d63",
"resourceId": "i-0b270541533305eb3",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "TY Windows Instance",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "2ee07d56-5de4-4711-a4af-063833c589c1",
"resourceId": "i-06f84214e297fe7ff",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "Windows Update Nov 2",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "710c936a-c1f2-496c-99cb-5dd40a039702",
"resourceId": "i-0a600182370914e7d",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "Windows+SQL Web",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "fa1ca76a-a656-46c6-9135-53c9ef9e84af",
"resourceId": "bebf3f9c-4ecd-446d-b6c4-532369fc54d2",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "m1.medium",
"recommendationType": "Downsize",
"recommendedType": "m1.small",
"totalHoursRunning": 456,
"name": "ec2containerservice-anna-ecs-cluster-ecsinstanceasg-7y15ertjj55i",
"rptHref": "/systems/fa1ca76a-a656-46c6-9135-53c9ef9e84af/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 30.051666,
"effortEstimate": "Very Low",
"powerState": "Running",
"recommendedHostEntityId": "fa968b32-f984-46fb-aad2-50da43e1f7a1",
"currentCost": 63.51,
"recommendedCost": 32.12,
"serviceType": "ASG",
"currentHourlyRate": 0.09,
"recommendedHourlyRate": 0.04,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "3",
"maxGroupRecommended": "3",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.6333333,
"recommFirstSeen": 1589354341397,
"recommLastSeen": 1590218244300,
"recommSeenCount": 3,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "25f4d724-de1e-4cf6-aaa6-83043b2f4b3f",
"resourceId": "d12a067c-17fe-4ac6-8942-954daed8f50f",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "adhere to the launch template",
"rptHref": "/systems/25f4d724-de1e-4cf6-aaa6-83043b2f4b3f/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.31666666,
"recommFirstSeen": 1579680587597,
"recommLastSeen": 1590218244110,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "5da428a0-3dc5-46aa-98ca-eee5be68e8c4",
"resourceId": "35b15a0b-ec78-44dc-bcf6-c3e6eda1877a",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t3.small",
"recommendationType": "Just Right",
"recommendedType": "t3.small",
"totalHoursRunning": 456,
"name": "anna-asg",
"rptHref": "/systems/5da428a0-3dc5-46aa-98ca-eee5be68e8c4/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "9a67bfc4-7d30-4e75-9c4d-1ca501b0c4fd",
"currentCost": 15.18,
"recommendedCost": 15.18,
"serviceType": "ASG",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.31666666,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1590218244093,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "fbd3efbc-7d2a-4227-a5ef-7303b04283c4",
"resourceId": "b8949266-9228-4991-9ba9-d007d9c39985",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "anna-spot-template",
"rptHref": "/systems/fbd3efbc-7d2a-4227-a5ef-7303b04283c4/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.6733444,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"minGroupCurrent": "2",
"minGroupRecommended": "1",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.63229173,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1590218244093,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "07d8ce5d-63a3-40bd-aa8d-c09f672a90a2",
"resourceId": "6f182b4a-3ce4-4f48-b055-ff088901f331",
"currentType": "t1.micro",
"recommendationType": "Not Analyzed",
"name": "awseb-e-tmqifhqf5f-stack-awsebautoscalinggroup-necdwwozksjz",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 14.6,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "c78c8470-4aa3-4038-9de6-7047226b5b08",
"resourceId": "88fdb8ea-2e54-4ed4-9a2b-d25c31b1d10b",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "ec2containerservice-calsoft-linux-cluster-ecsinstanceasg-40ysztvxzgpk",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587667,
"recommLastSeen": 1590218244310,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
}
},
{
"entityId": "5735d2ed-4b29-4fc4-81d4-ff1a84277210",
"resourceId": "2df2c1b0-205f-4c25-a0cc-facfe3b4fb7b",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "ec2containerservice-default-ecsinstanceasg-1scer88i1u6rk",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
}
},
{
"entityId": "7c83ad96-6f64-4b59-93a9-90f901eecbf3",
"resourceId": "d64758c0-e72c-4b79-9961-777861bc8467",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "m5a.large",
"recommendationType": "Downscale",
"recommendedType": "m5a.large",
"totalHoursRunning": 456,
"name": "ec2containerservice-ecs-linux-with-mem-ecsinstanceasg-1vn28ms414pfz",
"rptHref": "/systems/7c83ad96-6f64-4b59-93a9-90f901eecbf3/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 19.880333,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "3c33b5cb-3e50-4464-9b89-433f60d34559",
"currentCost": 62.78,
"recommendedCost": 62.78,
"serviceType": "ASG",
"currentHourlyRate": 0.09,
"recommendedHourlyRate": 0.09,
"currentRiCoverage": 0,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.6333333,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1567051200000,
"lastSeen": 1590120000000,
"completeDays": 164,
"partialDays": 1
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1567051200000,
"lastSeen": 1590120000000,
"completeDays": 164,
"partialDays": 1
}
]
},
{
"entityId": "24c7a985-fefb-4702-a16f-cab8d230aae6",
"resourceId": "8c22f5fb-8ed0-4ecd-ac91-8aa8e2f3856a",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "ec2containerservice-maria-cluster-ecsinstanceasg-k1yl0p6m5k4m",
"rptHref": "/systems/24c7a985-fefb-4702-a16f-cab8d230aae6/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.6821668,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.6333333,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "8f0c6e85-2714-4f84-9cf1-4c86a979fdc5",
"resourceId": "b59a1c47-3151-42eb-8c9c-44680346c6ad",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "ec2containerservice-ohio-maria-cluster-ecsinstanceasg-1xn56n7nwgse",
"rptHref": "/systems/8f0c6e85-2714-4f84-9cf1-4c86a979fdc5/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "5",
"maxGroupRecommended": "5",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.31666666,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "840dd934-f70a-4991-a63f-2b053c7d84e7",
"resourceId": "1efc7b45-9a2b-4e61-850c-1e63df11df27",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t3.micro",
"recommendationType": "Just Right",
"recommendedType": "t3.micro",
"totalHoursRunning": 456,
"name": "ec2containerservice-tom-ecs-cluster-ecsinstanceasg-41mh4zxjdz9v",
"rptHref": "/systems/840dd934-f70a-4991-a63f-2b053c7d84e7/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "1ec5b0e5-d8bc-44f6-bddd-e686aa8a19b9",
"currentCost": 7.59,
"recommendedCost": 7.59,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "2",
"maxGroupRecommended": "3",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.6333333,
"avgInstanceCountCurrent": 0.6333333,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "08239613-dfb4-4bb1-9449-56223bacd9a4",
"resourceId": "a4b333a5-23e2-4058-baf5-f3694088b0a8",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t3.small",
"recommendationType": "Downscale",
"recommendedType": "t3.small",
"totalHoursRunning": 456,
"name": "eks-stack-test-summer2019-nodegroup-ektn1la7jshg",
"rptHref": "/systems/08239613-dfb4-4bb1-9449-56223bacd9a4/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 14.405189,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "9a67bfc4-7d30-4e75-9c4d-1ca501b0c4fd",
"currentCost": 15.18,
"recommendedCost": 15.18,
"serviceType": "ASG",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"minGroupCurrent": "5",
"minGroupRecommended": "2",
"maxGroupCurrent": "7",
"maxGroupRecommended": "7",
"currentDesiredCapacity": "5",
"avgInstanceCountRecommended": 0.6333333,
"avgInstanceCountCurrent": 1.5822917,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "c32b418a-abdd-464e-a040-cc9213bd3992",
"resourceId": "44594827-6e96-4d4b-9380-3958c5424fde",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "mark-asg-max0",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "325d8276-413c-4279-9fa4-fde4b0e23ba0",
"resourceId": "b0f4af65-93ed-48cc-b7d6-e514a1ad4d66",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "mark-asg-redhat",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
}
}
},
{
"entityId": "841cbe2d-dfc7-4479-8f2d-6e2b60dd11b5",
"resourceId": "0b12f81c-f034-4631-a528-84463f9f5b1b",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "mark-asg-spot",
"rptHref": "/systems/841cbe2d-dfc7-4479-8f2d-6e2b60dd11b5/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "3",
"maxGroupRecommended": "3",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.31666666,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "1793042e-9f7b-4c37-86de-bf7b8e257516",
"resourceId": "a44a0b1a-aed8-4304-acbe-81d71ee3a80e",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "mark-asg-test",
"rptHref": "/systems/1793042e-9f7b-4c37-86de-bf7b8e257516/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "5",
"maxGroupRecommended": "5",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.31666666,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "280aa665-c92d-4eb4-a842-0951ff76e459",
"resourceId": "39f794fb-640b-448e-a799-021e905417e7",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "mark-linux-asg",
"rptHref": "/systems/280aa665-c92d-4eb4-a842-0951ff76e459/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.6733444,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "5",
"maxGroupRecommended": "5",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.63229173,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "f49eb5fb-bea2-4222-8df7-3788e0ef97bf",
"resourceId": "f2ade329-6870-4907-bd5b-1a6be30a9b21",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "mark-template-asg",
"rptHref": "/systems/f49eb5fb-bea2-4222-8df7-3788e0ef97bf/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.6733444,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "2",
"minGroupRecommended": "1",
"maxGroupCurrent": "5",
"maxGroupRecommended": "5",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.63229173,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1590218244093,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "37a7a834-a6b5-4092-acac-b4fa9180b17a",
"resourceId": "44401ccd-463b-4aba-8f35-4135a73b43dd",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "mark-win-asg",
"rptHref": "/systems/37a7a834-a6b5-4092-acac-b4fa9180b17a/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 3.732476,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "ASG",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"minGroupCurrent": "2",
"minGroupRecommended": "1",
"maxGroupCurrent": "4",
"maxGroupRecommended": "4",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.63217604,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "123d7fd4-8786-4b85-bb05-cc76f7f80ab9",
"resourceId": "19f9ef24-05ba-492b-a7a3-1d697ee71528",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "memory-used",
"rptHref": "/systems/123d7fd4-8786-4b85-bb05-cc76f7f80ab9/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.6821668,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "2",
"minGroupRecommended": "1",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.6333333,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "c0471206-3312-42cf-a701-e21f8fca7fab",
"resourceId": "96c82659-4c36-43e9-9875-6e166a21297d",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "template with cloudwatch agent",
"rptHref": "/systems/c0471206-3312-42cf-a701-e21f8fca7fab/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.6821668,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "3",
"maxGroupRecommended": "3",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.6333333,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
},
{
"workloadName": "Memory Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "e1833d11-ab91-4ef5-89ec-cabb9577527b",
"resourceId": "05eeb44f-c4c9-434d-9143-8107c8ee890e",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "test asg using test launch config",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1590218244323,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
}
},
{
"entityId": "f38ea794-de74-4281-9964-59d8097a4f9f",
"resourceId": "694e9625-f88d-4141-b9d7-24377103e054",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "test group",
"rptHref": "/systems/f38ea794-de74-4281-9964-59d8097a4f9f/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 3.1888332,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 10.07,
"recommendedCost": 10.07,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "2",
"minGroupRecommended": "1",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.6333333,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587583,
"recommLastSeen": 1590218244087,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
},
{
"entityId": "974b0ddd-315e-45a4-b9f1-ffd33ee04a0c",
"resourceId": "5d48ee37-462c-4eff-957b-68e7d927b8ed",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"totalHoursRunning": 456,
"name": "tom-t2-nano",
"rptHref": "/systems/974b0ddd-315e-45a4-b9f1-ffd33ee04a0c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "ASG",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.31666666,
"avgInstanceCountCurrent": 0.31666666,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1590218244097,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1590206708247,
"auditCount": 111
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1590120000000,
"totalDays": 24,
"seenDays": 14
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization",
"firstSeen": 1566705600000,
"lastSeen": 1590120000000,
"completeDays": 169,
"partialDays": 0
}
]
}
]
- name: Get Analysis Recommendations (JSON)
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/aws/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- "{{analysisId}}"
- results
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: vary
value: accept-encoding
- key: content-encoding
value: gzip
- key: content-type
value: application/json;charset=UTF-8
- key: date
value: Tue, 09 Jun 2020 19:18:07 GMT
- key: x-envoy-upstream-service-time
value: "772"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"entityId": "88bf8536-7f8e-4494-9930-5873ea982f7a",
"resourceId": "i-06d390ca1a0c59d95",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "Markham'333",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "a6f45bbd-dc09-4982-b615-6d37dbc4b615",
"resourceId": "db-gkd2ttqn6sblplzcane4waylwy",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.small",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "db.r5.large",
"implementationMethod": "Manual",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "calsoft-aurora-test-db",
"rptHref": "/systems/a6f45bbd-dc09-4982-b615-6d37dbc4b615/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -63.6195,
"effortEstimate": "Moderate",
"powerState": "Running",
"recommendedHostEntityId": "246a1535-542a-4b8c-ae06-35a71a596021",
"currentCost": 29.93,
"recommendedCost": 211.7,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.29,
"currentRiCoverage": 0,
"recommFirstSeen": 1589354340957,
"recommLastSeen": 1591686728967,
"recommSeenCount": 9,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "2338151c-d853-4fa3-b170-c33f7e387252",
"resourceId": "db-jnwqh6iknt635hk7aehgpgraku",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "db.t2.micro",
"recommendationType": "Upsize",
"recommendedType": "db.t3.small",
"implementationMethod": "Manual",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "calsoft-sql-test-db",
"rptHref": "/systems/2338151c-d853-4fa3-b170-c33f7e387252/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -6.8984995,
"effortEstimate": "Moderate",
"powerState": "Running",
"recommendedHostEntityId": "ea3cb3df-ead7-471e-9608-c47da07ec6d1",
"currentCost": 19.71,
"recommendedCost": 39.42,
"serviceType": "RDS",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.05,
"currentRiCoverage": 0,
"recommFirstSeen": 1589354340920,
"recommLastSeen": 1591686728937,
"recommSeenCount": 9,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "a4e95c00-c624-4869-9812-7fd360be1d70",
"resourceId": "db-ypjeuu47e7exgq5tqmeqmqo3sy",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.small",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "db.r5.large",
"implementationMethod": "Manual",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "mariadb-multiaz",
"rptHref": "/systems/a4e95c00-c624-4869-9812-7fd360be1d70/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -63.6195,
"effortEstimate": "Moderate",
"powerState": "Running",
"recommendedHostEntityId": "246a1535-542a-4b8c-ae06-35a71a596021",
"currentCost": 29.93,
"recommendedCost": 211.7,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.29,
"currentRiCoverage": 0,
"recommFirstSeen": 1589354341723,
"recommLastSeen": 1591686729037,
"recommSeenCount": 9,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "8fa9387b-cb82-4266-8cfd-50622c821f8b",
"resourceId": "db-kymsa5b6fvoincshikpixti6le",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.small",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "db.r5.large",
"implementationMethod": "Manual",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "mariadb-multiaz-us-east-1d",
"rptHref": "/systems/8fa9387b-cb82-4266-8cfd-50622c821f8b/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -63.6195,
"effortEstimate": "Moderate",
"powerState": "Running",
"recommendedHostEntityId": "246a1535-542a-4b8c-ae06-35a71a596021",
"currentCost": 29.93,
"recommendedCost": 211.7,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.29,
"currentRiCoverage": 0,
"recommFirstSeen": 1589354340957,
"recommLastSeen": 1591686728967,
"recommSeenCount": 9,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "4cfaaa08-bbc0-4386-a422-a4c491ab336d",
"resourceId": "i-0cf1678e6a64ea477",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "09/11 instance renamed",
"rptHref": "/systems/4cfaaa08-bbc0-4386-a422-a4c491ab336d/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "ef37339b-d400-4a8c-a080-44e6bfd8db19",
"resourceId": "db-pfnzbc3ahhaqtt5gyhi7h4lhbi",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.micro",
"recommendationType": "Just Right",
"recommendedType": "db.t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "autoscale-1",
"rptHref": "/systems/ef37339b-d400-4a8c-a080-44e6bfd8db19/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "13496a27-6641-4ee9-b704-4685bdeba8a2",
"currentCost": 12.41,
"recommendedCost": 12.41,
"serviceType": "RDS",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "0da4957c-dc0b-43cf-bb64-f8af88a434e7",
"resourceId": "i-0912a65d505dc1400",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "awu-ubuntu-cw-agent",
"rptHref": "/systems/0da4957c-dc0b-43cf-bb64-f8af88a434e7/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1584083748223,
"recommLastSeen": 1591686729023,
"recommSeenCount": 29,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1584072391797,
"dateLastAudited": 1591157106573,
"auditCount": 34
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "2d9be5f1-c308-4595-96de-cb1a7fc3e026",
"resourceId": "i-010ce1bed097b80ea",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "awu-windows-cw-agent",
"rptHref": "/systems/2d9be5f1-c308-4595-96de-cb1a7fc3e026/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1583996991890,
"recommLastSeen": 1591686729023,
"recommSeenCount": 30,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1583986714240,
"dateLastAudited": 1591157106573,
"auditCount": 35
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "a9075d8e-29e7-48d0-9367-b2c150d09932",
"resourceId": "i-0c71a5f1ce33997fa",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 31.9,
"totalHoursRunning": 444,
"name": "awu-windows-cw-agent-3",
"rptHref": "/systems/a9075d8e-29e7-48d0-9367-b2c150d09932/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1585639024790,
"recommLastSeen": 1591686729023,
"recommSeenCount": 17,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1585627531787,
"dateLastAudited": 1591157106573,
"auditCount": 21
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "a471062b-6c51-4aa9-a387-48694792db28",
"resourceId": "i-09f2f11834730e5db",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "cal-redhat-ebs-testing",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "c0672358-20ed-4306-9f7f-5a41ba423aa8",
"resourceId": "db-ay7plxbs6u7iaqptmo7l65buqe",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.micro",
"recommendationType": "Just Right",
"recommendedType": "db.t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "calsoft-mariadb-test-db",
"rptHref": "/systems/c0672358-20ed-4306-9f7f-5a41ba423aa8/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "13496a27-6641-4ee9-b704-4685bdeba8a2",
"currentCost": 24.82,
"recommendedCost": 24.82,
"serviceType": "RDS",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.03,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587660,
"recommLastSeen": 1591686729027,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "64c32cda-aebd-4c32-a820-2ee3bca85bd7",
"resourceId": "db-2d56k7ceogaol2uv7uy65eupm4",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "db.t2.micro",
"recommendationType": "Just Right",
"recommendedType": "db.t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "calsoft-mariadb-test-db",
"rptHref": "/systems/64c32cda-aebd-4c32-a820-2ee3bca85bd7/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "13496a27-6641-4ee9-b704-4685bdeba8a2",
"currentCost": 32.12,
"recommendedCost": 32.12,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.04,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587583,
"recommLastSeen": 1591686728937,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "248bdd60-306d-45ff-964d-b6ecc2b4b89c",
"resourceId": "db-smswixvatsgsybx56fdzliarbq",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.micro",
"recommendationType": "Just Right",
"recommendedType": "db.t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "calsoft-mysql",
"rptHref": "/systems/248bdd60-306d-45ff-964d-b6ecc2b4b89c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "13496a27-6641-4ee9-b704-4685bdeba8a2",
"currentCost": 12.41,
"recommendedCost": 12.41,
"serviceType": "RDS",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587597,
"recommLastSeen": 1591686728967,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "4d5f0ad7-827a-43fb-ba88-a9de3ab69ce8",
"resourceId": "db-bmffjnb3ccihyhd5z4kuxevcwq",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "db.t2.micro",
"recommendationType": "Just Right",
"recommendedType": "db.t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "calsoft-postgres-test-db",
"rptHref": "/systems/4d5f0ad7-827a-43fb-ba88-a9de3ab69ce8/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "13496a27-6641-4ee9-b704-4685bdeba8a2",
"currentCost": 17.52,
"recommendedCost": 17.52,
"serviceType": "RDS",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587583,
"recommLastSeen": 1591686728937,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "1624516e-0561-4d80-9fb3-57f713b8c82a",
"resourceId": "i-086e2a5955912767a",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "c5.large",
"recommendationType": "Not Analyzed",
"name": "cal-test-ebs",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 62.05,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "85fb3507-6987-4f53-969c-121b863316d8",
"resourceId": "i-0ddbe92afe17a28fa",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "cal-test-ebs-metrics-t2-unlimited",
"rptHref": "/systems/85fb3507-6987-4f53-969c-121b863316d8/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "07888649-32ec-4ce6-8830-1172c50b245e",
"resourceId": "i-040845d1cb0f875ad",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 4.17,
"totalHoursRunning": 60,
"name": "cal-windows-cw_agent-t2-unlimited",
"rptHref": "/systems/07888649-32ec-4ce6-8830-1172c50b245e/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Stopped",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "7b927ce7-e1f5-403e-8de0-09c5b2694522",
"resourceId": "i-0b130eee6bc09b6b7",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "daniel-test-ec2-python37-just-more-stuff",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "ae28ddff-be44-4c12-92f2-7dbee1199073",
"resourceId": "i-0d87edcd864820ac1",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "Densify Gateway Tom",
"rptHref": "/systems/ae28ddff-be44-4c12-92f2-7dbee1199073/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "3bccdb1e-57a7-439d-98c9-c392dc45af71",
"resourceId": "i-0973e881a6e668016",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.large",
"recommendationType": "Not Analyzed",
"name": "Densify-Connector-Appliance",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 88.18,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "01d317c7-b2ec-41dc-ad81-9c687dd0cc5b",
"resourceId": "422b4aa8-ca56-45b1-af53-7342775c4a84",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t3.small",
"recommendationType": "Just Right",
"recommendedType": "t3.small",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "ebs-enabled-asg",
"rptHref": "/systems/01d317c7-b2ec-41dc-ad81-9c687dd0cc5b/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "9a67bfc4-7d30-4e75-9c4d-1ca501b0c4fd",
"currentCost": 15.18,
"recommendedCost": 15.18,
"serviceType": "ASG",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "97f6d190-f9fb-4fb2-bdb0-d633b99b5ab8",
"resourceId": "13437763-0cf3-4b0a-855f-25f9a383796f",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "EC2ContainerService-Calsoft-EcsInstanceAsg-1HBH89HP6AEJN",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "366b0b81-d4f5-4888-bfe0-f5fec9323921",
"resourceId": "i-09354c1e0384190a4",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t1.micro",
"recommendationType": "Not Analyzed",
"name": "ec2-paravirtual",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 14.6,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "44c017e1-bc16-4749-ae25-e89bdb377eeb",
"resourceId": "i-0ed82f054d1597bfd",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "m4.large",
"recommendationType": "Not Analyzed",
"name": "ex-dev-appx-202",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 73,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "d2740e57-b311-4ecd-b628-8ef1f36e1869",
"resourceId": "i-0e2222b8f632df485",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "m4.large",
"recommendationType": "Not Analyzed",
"name": "ex-dev-appx-202",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 73,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1591686728943,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "b37a2fda-7bca-4069-8999-b94ac6376c3e",
"resourceId": "i-0c3d9a0688b1bc2d7",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.large",
"recommendationType": "Not Analyzed",
"name": "ex-prepro-imco-216",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 67.74,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587607,
"recommLastSeen": 1591686728977,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "652ffdbf-7184-4a50-b9fb-5fa941e005ba",
"resourceId": "i-0f66a171e357d4f0b",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.large",
"recommendationType": "Not Analyzed",
"name": "ex-prepro-imco-216",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 67.74,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "655dc715-958b-4144-9225-aba79d6ff268",
"resourceId": "i-020970cdaf29dbc0c",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "ex-pro-appx-120",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 73,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "17b4048e-e1a2-4925-a5a9-071665cd6b15",
"resourceId": "i-052f8be45bbc6251f",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "ex-pro-appx-120",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 73,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "167fd200-b0a3-40df-ab09-bcd9f1eee6f7",
"resourceId": "i-00f0736c58af71d44",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "m4.xlarge",
"recommendationType": "Not Analyzed",
"name": "ex-pro-rais-131",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 146,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587607,
"recommLastSeen": 1591686728977,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "7617462a-f996-4e80-8e2e-74d0e5e9ca09",
"resourceId": "i-013a5fb1da1eaf413",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "m4.xlarge",
"recommendationType": "Not Analyzed",
"name": "ex-pro-rais-131",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 146,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1591686728943,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "4920848b-8392-45d7-937d-6b72f20e3941",
"resourceId": "i-051d5e98235eb92f6",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "m3.medium",
"recommendationType": "Not Analyzed",
"name": "HelloWorld",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 48.91,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587667,
"recommLastSeen": 1591686729037,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "036b3675-14df-409b-a149-7bb8d22c8b87",
"resourceId": "i-0067dfc6d2db9c77b",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "i-0067dfc6d2db9c77b",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587607,
"recommLastSeen": 1591686728977,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "789fe80b-eefe-491a-b630-31080d63d355",
"resourceId": "i-024bfb97e4ed57567",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-024bfb97e4ed57567",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 100.01,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587583,
"recommLastSeen": 1591686728937,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "7ba5e066-b11d-4e41-8a8b-357f741f1d50",
"resourceId": "i-032cbc27da439060f",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "i-032cbc27da439060f",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 10.07,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587627,
"recommLastSeen": 1591686728993,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "fbec855a-1c01-4b4d-9d93-c34320cf0290",
"resourceId": "i-03e6b8b6427bdb683",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-03e6b8b6427bdb683",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "0d3aac0f-3323-44b4-9583-f81e72e74e16",
"resourceId": "i-04f0adc6f7b6d262a",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-04f0adc6f7b6d262a",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 100.01,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587583,
"recommLastSeen": 1591686728937,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "6b137ee2-379d-445b-82d9-707dfd407048",
"resourceId": "i-05f406265b87c3ca4",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-05f406265b87c3ca4",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "19ab2318-b1ba-4328-ba01-9f7a9a94bcbb",
"resourceId": "i-0647d2ba2d871c59f",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "i-0647d2ba2d871c59f",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "9d88ed01-bf80-4e7d-b137-73464d96ba3c",
"resourceId": "i-0779f51684d8732e2",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "i-0779f51684d8732e2",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "0dc3b8d9-972b-4f64-8984-2baf6e51b428",
"resourceId": "i-0a74812e05383ad89",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-0a74812e05383ad89",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "8bbba8fd-bb71-4448-9faf-7c210476547a",
"resourceId": "i-0c78cf63c9e849c3d",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "i-0c78cf63c9e849c3d",
"rptHref": "/systems/8bbba8fd-bb71-4448-9faf-7c210476547a/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "be1b9971-049e-4a9d-8ebd-8ed6fa3f909c",
"resourceId": "i-0cbcd994206771179",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "i-0cbcd994206771179",
"rptHref": "/systems/be1b9971-049e-4a9d-8ebd-8ed6fa3f909c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "52555a14-94f2-4bff-baf0-fc145cb9d0aa",
"resourceId": "i-0ce922f0cdcc9d2fb",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "m5a.xlarge",
"recommendationType": "Not Analyzed",
"name": "i-0ce922f0cdcc9d2fb",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 125.56,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "255aca56-6524-433f-a010-001f01638893",
"resourceId": "i-0d5eaddba5632945f",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "m5a.large",
"recommendationType": "Not Analyzed",
"name": "i-0d5eaddba5632945f",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 62.78,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "81e6405d-296d-4823-887a-dea63eb4f8a8",
"resourceId": "i-0ee3e041d2f06c706",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "i-0ee3e041d2f06c706",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "0b75e7ca-10e0-4ee8-969e-d95c8b477a94",
"resourceId": "i-fee6164a",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "i-fee6164a",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 10.07,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587627,
"recommLastSeen": 1591686728993,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "da928f32-4183-4f8a-b823-9d9c5a130e27",
"resourceId": "i-005d2ddb680343043",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "maria-memconfig-ohio",
"rptHref": "/systems/da928f32-4183-4f8a-b823-9d9c5a130e27/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1591686728943,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "3b3b7cac-bd70-4e89-a566-6b5536df8dfb",
"resourceId": "i-00682ef289bd5bda2",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.nano",
"recommendationType": "Not Analyzed",
"name": "Mark CentOS",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 4.23,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "47e17521-5454-473b-8248-459398a15944",
"resourceId": "i-0e1fff7d4c3ba43f2",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "Mark CentOS7",
"rptHref": "/systems/47e17521-5454-473b-8248-459398a15944/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "1a927c1a-906e-4b2c-a7eb-4508fbf3e473",
"resourceId": "i-0e84bdc6d73420d83",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "mark ubuntu 2",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "90a3f2d3-171c-4824-a8e9-357f402b1c10",
"resourceId": "i-0575c613a9e05e0ef",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "a1.medium",
"recommendationType": "Not Analyzed",
"name": "Mark-ARM-a1.medium",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 18.61,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587607,
"recommLastSeen": 1591686728977,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "de2b844c-42b4-4851-b953-44015a49eb51",
"resourceId": "39cda6dd-da26-4abd-8d94-2aa083839782",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "Mark-ASG-Max1",
"rptHref": "/systems/de2b844c-42b4-4851-b953-44015a49eb51/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "2a4243f1-aa95-43a2-88b6-b6b7ab5c7c06",
"resourceId": "i-0af01a4f4efb1e8be",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "Mark-Tag-Mapping-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1591686728943,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "dc4e48d4-de39-4586-9174-4189c385d102",
"resourceId": "i-0d359a1b33a8d20f4",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "c5.large",
"recommendationType": "Not Analyzed",
"name": "Multi-EBS volumes",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 62.05,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "c7a291c3-0c2e-4906-a39a-435303b15389",
"resourceId": "i-036de50c9240d635c",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "myname",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "bb2d5102-7e1a-4049-adf9-50a6d0b98127",
"resourceId": "i-064e435a6c9129d4c",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "New Demo 2",
"rptHref": "/systems/bb2d5102-7e1a-4049-adf9-50a6d0b98127/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "7ed50f36-d09a-47e5-a8ad-76a98419d27c",
"resourceId": "i-088c6f872cd14395b",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "New Demo 2",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "2b3686fb-c342-43ee-b4ae-9b250924ff53",
"resourceId": "i-07d3af583d28fd7d4",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "m4.large",
"recommendationType": "Not Analyzed",
"name": "New Instance 1",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 80.3,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "cda0c96a-3b88-4321-9993-6d164fe5bb0d",
"resourceId": "i-08cf7875f0f149d37",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "Nov 2 2:49",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587597,
"recommLastSeen": 1591686728967,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "c2189935-1b55-40c7-8025-072c09bb614b",
"resourceId": "i-08c436b05fb5e987d",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "odesk,base,odesk-dnsclient,odesk-pythia,odesk-match,odesk-tomcat7,odesk-feed,odesk-mysql,odesk-fimi,odesk-eventlog,odesk-match-i",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587607,
"recommLastSeen": 1591686728977,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "2fa928c0-7d7f-4dcf-9a84-d9f5040ed7a3",
"resourceId": "0838f71e-b882-489b-9b42-8dcaf49da189",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "spot",
"rptHref": "/systems/2fa928c0-7d7f-4dcf-9a84-d9f5040ed7a3/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "71aa523c-04b8-44fd-8da1-fc5075df4fbb",
"resourceId": "i-015a9305442794d03",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.xlarge",
"recommendationType": "Not Analyzed",
"name": "SQL Enterprise",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 165.42,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "49fb3629-1f2b-4039-b146-918eb8009184",
"resourceId": "i-012f65c85279bf192",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t3.micro",
"recommendationType": "Just Right",
"recommendedType": "t3.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "SQL Express",
"rptHref": "/systems/49fb3629-1f2b-4039-b146-918eb8009184/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "1ec5b0e5-d8bc-44f6-bddd-e686aa8a19b9",
"currentCost": 14.31,
"recommendedCost": 14.31,
"serviceType": "EC2",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"recommFirstSeen": 1590218244297,
"recommLastSeen": 1591686729023,
"recommSeenCount": 7,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "68946cc4-64b1-4825-bd13-5b928f98e95d",
"resourceId": "db-jcssly3rbkf2mm62yfc7dmgmge",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.small",
"recommendationType": "Just Right",
"recommendedType": "db.t2.small",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "sql-express",
"rptHref": "/systems/68946cc4-64b1-4825-bd13-5b928f98e95d/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "fcf9ac59-81ad-4877-9131-f8a8e0c9e785",
"currentCost": 32.12,
"recommendedCost": 32.12,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.04,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587660,
"recommLastSeen": 1591686729027,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "24bc2aab-8eb9-4306-b6e0-e80244386039",
"resourceId": "i-06a20a109dca187b8",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "t2 Test 1",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 8.47,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "dfbedaba-ce12-4897-9687-eb4f37cba7bc",
"resourceId": "i-06ee52a401b2a2b71",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t3.micro",
"recommendationType": "Just Right",
"recommendedType": "t3.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "tem1_3",
"rptHref": "/systems/dfbedaba-ce12-4897-9687-eb4f37cba7bc/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "1ec5b0e5-d8bc-44f6-bddd-e686aa8a19b9",
"currentCost": 7.59,
"recommendedCost": 7.59,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "2997240d-5b20-4c46-bc48-7efafdfba101",
"resourceId": "i-0113b67377ee899e4",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t3.micro",
"recommendationType": "Just Right",
"recommendedType": "t3.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "tem1_4",
"rptHref": "/systems/2997240d-5b20-4c46-bc48-7efafdfba101/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "1ec5b0e5-d8bc-44f6-bddd-e686aa8a19b9",
"currentCost": 7.59,
"recommendedCost": 7.59,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "e06aa72e-8c61-44a1-a389-34b7ed4c8ee2",
"resourceId": "i-0fb20642d484c568f",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "c4.large",
"recommendationType": "Not Analyzed",
"name": "Test Instance 152",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 79.84,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "9bda9741-63c5-4487-b4f7-5b1af834353d",
"resourceId": "i-0732cb7755ff87961",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "Test Name",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "9d5c1a35-5aef-4de1-bfd6-3e3483fa912d",
"resourceId": "i-0e4bf52766b63d002",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "m1.small",
"recommendationType": "Not Analyzed",
"name": "Tom-Linux-Classic",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 32.12,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587667,
"recommLastSeen": 1591686729037,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "20e11428-531c-4c6f-a1d4-fe1d0e55d57a",
"resourceId": "i-07ec21b7a361db2be",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"implementationMethod": "N/A",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "tom-t2-unlimited",
"rptHref": "/systems/20e11428-531c-4c6f-a1d4-fe1d0e55d57a/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "EC2",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "547acc9b-9051-4fcf-969a-d75d4b752cb7",
"resourceId": "i-019b8705b588a8b8b",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "m1.small",
"recommendationType": "Not Analyzed",
"name": "tom-vpc-m1.small",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 32.12,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "8c66fb69-48b1-4f8c-b3af-33f79b288d63",
"resourceId": "i-0b270541533305eb3",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "TY Windows Instance",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "2ee07d56-5de4-4711-a4af-063833c589c1",
"resourceId": "i-06f84214e297fe7ff",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "Windows Update Nov 2",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "710c936a-c1f2-496c-99cb-5dd40a039702",
"resourceId": "i-0a600182370914e7d",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "Windows+SQL Web",
"densifyPolicy": "Initial Assessment",
"powerState": "Stopped",
"currentCost": 11.83,
"serviceType": "EC2",
"currentRiCoverage": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "fa1ca76a-a656-46c6-9135-53c9ef9e84af",
"resourceId": "bebf3f9c-4ecd-446d-b6c4-532369fc54d2",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "m1.medium",
"recommendationType": "Downsize",
"recommendedType": "m1.small",
"totalHoursRunning": 504,
"name": "ec2containerservice-anna-ecs-cluster-ecsinstanceasg-7y15ertjj55i",
"rptHref": "/systems/fa1ca76a-a656-46c6-9135-53c9ef9e84af/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 33.211323,
"effortEstimate": "Very Low",
"powerState": "Running",
"recommendedHostEntityId": "fa968b32-f984-46fb-aad2-50da43e1f7a1",
"currentCost": 63.51,
"recommendedCost": 32.12,
"serviceType": "ASG",
"currentHourlyRate": 0.09,
"recommendedHourlyRate": 0.04,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "3",
"maxGroupRecommended": "3",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.6999421,
"recommFirstSeen": 1591213168857,
"recommLastSeen": 1591686729027,
"recommSeenCount": 6,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "25f4d724-de1e-4cf6-aaa6-83043b2f4b3f",
"resourceId": "d12a067c-17fe-4ac6-8942-954daed8f50f",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "adhere to the launch template",
"rptHref": "/systems/25f4d724-de1e-4cf6-aaa6-83043b2f4b3f/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.35,
"recommFirstSeen": 1579680587597,
"recommLastSeen": 1591686728967,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 117
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 12
}
}
},
{
"entityId": "5da428a0-3dc5-46aa-98ca-eee5be68e8c4",
"resourceId": "35b15a0b-ec78-44dc-bcf6-c3e6eda1877a",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t3.small",
"recommendationType": "Just Right",
"recommendedType": "t3.small",
"totalHoursRunning": 504,
"name": "anna-asg",
"rptHref": "/systems/5da428a0-3dc5-46aa-98ca-eee5be68e8c4/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "9a67bfc4-7d30-4e75-9c4d-1ca501b0c4fd",
"currentCost": 15.18,
"recommendedCost": 15.18,
"serviceType": "ASG",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.35,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1591686728943,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 117
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 12
}
}
},
{
"entityId": "fbd3efbc-7d2a-4227-a5ef-7303b04283c4",
"resourceId": "b8949266-9228-4991-9ba9-d007d9c39985",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "anna-spot-template",
"rptHref": "/systems/fbd3efbc-7d2a-4227-a5ef-7303b04283c4/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.9546978,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"minGroupCurrent": "2",
"minGroupRecommended": "1",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.6988427,
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1591686728943,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 117
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 12
}
}
},
{
"entityId": "07d8ce5d-63a3-40bd-aa8d-c09f672a90a2",
"resourceId": "6f182b4a-3ce4-4f48-b055-ff088901f331",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t1.micro",
"recommendationType": "Not Analyzed",
"name": "awseb-e-tmqifhqf5f-stack-awsebautoscalinggroup-necdwwozksjz",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 14.6,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 117
}
}
},
{
"entityId": "c78c8470-4aa3-4038-9de6-7047226b5b08",
"resourceId": "88fdb8ea-2e54-4ed4-9a2b-d25c31b1d10b",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "ec2containerservice-calsoft-linux-cluster-ecsinstanceasg-40ysztvxzgpk",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587667,
"recommLastSeen": 1591686729037,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "5735d2ed-4b29-4fc4-81d4-ff1a84277210",
"resourceId": "2df2c1b0-205f-4c25-a0cc-facfe3b4fb7b",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "ec2containerservice-default-ecsinstanceasg-1scer88i1u6rk",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "7c83ad96-6f64-4b59-93a9-90f901eecbf3",
"resourceId": "d64758c0-e72c-4b79-9961-777861bc8467",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "m5a.large",
"recommendationType": "Downscale",
"recommendedType": "m5a.large",
"totalHoursRunning": 504,
"name": "ec2containerservice-ecs-linux-with-mem-ecsinstanceasg-1vn28ms414pfz",
"rptHref": "/systems/7c83ad96-6f64-4b59-93a9-90f901eecbf3/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 21.973,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "3c33b5cb-3e50-4464-9b89-433f60d34559",
"currentCost": 62.78,
"recommendedCost": 62.78,
"serviceType": "ASG",
"currentHourlyRate": 0.09,
"recommendedHourlyRate": 0.09,
"currentRiCoverage": 0,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.7,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "24c7a985-fefb-4702-a16f-cab8d230aae6",
"resourceId": "8c22f5fb-8ed0-4ecd-ac91-8aa8e2f3856a",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "ec2containerservice-maria-cluster-ecsinstanceasg-k1yl0p6m5k4m",
"rptHref": "/systems/24c7a985-fefb-4702-a16f-cab8d230aae6/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.9645,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.7,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "8f0c6e85-2714-4f84-9cf1-4c86a979fdc5",
"resourceId": "b59a1c47-3151-42eb-8c9c-44680346c6ad",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "ec2containerservice-ohio-maria-cluster-ecsinstanceasg-1xn56n7nwgse",
"rptHref": "/systems/8f0c6e85-2714-4f84-9cf1-4c86a979fdc5/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "5",
"maxGroupRecommended": "5",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.35,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "840dd934-f70a-4991-a63f-2b053c7d84e7",
"resourceId": "1efc7b45-9a2b-4e61-850c-1e63df11df27",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t3.micro",
"recommendationType": "Just Right",
"recommendedType": "t3.micro",
"totalHoursRunning": 504,
"name": "ec2containerservice-tom-ecs-cluster-ecsinstanceasg-41mh4zxjdz9v",
"rptHref": "/systems/840dd934-f70a-4991-a63f-2b053c7d84e7/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "1ec5b0e5-d8bc-44f6-bddd-e686aa8a19b9",
"currentCost": 7.59,
"recommendedCost": 7.59,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "2",
"maxGroupRecommended": "3",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.7,
"avgInstanceCountCurrent": 0.7,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "08239613-dfb4-4bb1-9449-56223bacd9a4",
"resourceId": "a4b333a5-23e2-4058-baf5-f3694088b0a8",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t3.small",
"recommendationType": "Downscale",
"recommendedType": "t3.small",
"totalHoursRunning": 504,
"name": "eks-stack-test-summer2019-nodegroup-ektn1la7jshg",
"rptHref": "/systems/08239613-dfb4-4bb1-9449-56223bacd9a4/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 15.9214325,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "9a67bfc4-7d30-4e75-9c4d-1ca501b0c4fd",
"currentCost": 15.18,
"recommendedCost": 15.18,
"serviceType": "ASG",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"minGroupCurrent": "5",
"minGroupRecommended": "2",
"maxGroupCurrent": "7",
"maxGroupRecommended": "7",
"currentDesiredCapacity": "5",
"avgInstanceCountRecommended": 0.7,
"avgInstanceCountCurrent": 1.7488427,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "c32b418a-abdd-464e-a040-cc9213bd3992",
"resourceId": "44594827-6e96-4d4b-9380-3958c5424fde",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "mark-asg-max0",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "325d8276-413c-4279-9fa4-fde4b0e23ba0",
"resourceId": "b0f4af65-93ed-48cc-b7d6-e514a1ad4d66",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "mark-asg-redhat",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
}
}
},
{
"entityId": "841cbe2d-dfc7-4479-8f2d-6e2b60dd11b5",
"resourceId": "0b12f81c-f034-4631-a528-84463f9f5b1b",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "mark-asg-spot",
"rptHref": "/systems/841cbe2d-dfc7-4479-8f2d-6e2b60dd11b5/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "3",
"maxGroupRecommended": "3",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.35,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "1793042e-9f7b-4c37-86de-bf7b8e257516",
"resourceId": "a44a0b1a-aed8-4304-acbe-81d71ee3a80e",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "mark-asg-test",
"rptHref": "/systems/1793042e-9f7b-4c37-86de-bf7b8e257516/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "5",
"maxGroupRecommended": "5",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.35,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "280aa665-c92d-4eb4-a842-0951ff76e459",
"resourceId": "39f794fb-640b-448e-a799-021e905417e7",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "mark-linux-asg",
"rptHref": "/systems/280aa665-c92d-4eb4-a842-0951ff76e459/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.9546978,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "5",
"maxGroupRecommended": "5",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.6988427,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "f49eb5fb-bea2-4222-8df7-3788e0ef97bf",
"resourceId": "f2ade329-6870-4907-bd5b-1a6be30a9b21",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "mark-template-asg",
"rptHref": "/systems/f49eb5fb-bea2-4222-8df7-3788e0ef97bf/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.9546978,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "2",
"minGroupRecommended": "1",
"maxGroupCurrent": "5",
"maxGroupRecommended": "5",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.6988427,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587587,
"recommLastSeen": 1591686728943,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "37a7a834-a6b5-4092-acac-b4fa9180b17a",
"resourceId": "44401ccd-463b-4aba-8f35-4135a73b43dd",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "mark-win-asg",
"rptHref": "/systems/37a7a834-a6b5-4092-acac-b4fa9180b17a/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 4.1254406,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "ASG",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"minGroupCurrent": "2",
"minGroupRecommended": "1",
"maxGroupCurrent": "4",
"maxGroupRecommended": "4",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.698727,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "123d7fd4-8786-4b85-bb05-cc76f7f80ab9",
"resourceId": "19f9ef24-05ba-492b-a7a3-1d697ee71528",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "memory-used",
"rptHref": "/systems/123d7fd4-8786-4b85-bb05-cc76f7f80ab9/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.9645,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "2",
"minGroupRecommended": "1",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.7,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "c0471206-3312-42cf-a701-e21f8fca7fab",
"resourceId": "96c82659-4c36-43e9-9875-6e166a21297d",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "template with cloudwatch agent",
"rptHref": "/systems/c0471206-3312-42cf-a701-e21f8fca7fab/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 2.9645,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 8.47,
"recommendedCost": 8.47,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "1",
"minGroupRecommended": "1",
"maxGroupCurrent": "3",
"maxGroupRecommended": "3",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.7,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587657,
"recommLastSeen": 1591686729023,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "e1833d11-ab91-4ef5-89ec-cabb9577527b",
"resourceId": "05eeb44f-c4c9-434d-9143-8107c8ee890e",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "t2.micro",
"recommendationType": "Not Analyzed",
"name": "test asg using test launch config",
"densifyPolicy": "Initial Assessment",
"powerState": "Running",
"currentCost": 8.47,
"serviceType": "ASG",
"avgInstanceCountCurrent": 0,
"recommFirstSeen": 1579680587673,
"recommLastSeen": 1591686729047,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "f38ea794-de74-4281-9964-59d8097a4f9f",
"resourceId": "694e9625-f88d-4141-b9d7-24377103e054",
"accountIdRef": "209726931496",
"region": "us-west-1",
"currentType": "t2.micro",
"recommendationType": "Downscale",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "test group",
"rptHref": "/systems/f38ea794-de74-4281-9964-59d8097a4f9f/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 3.5245,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 10.07,
"recommendedCost": 10.07,
"serviceType": "ASG",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"currentRiCoverage": 0,
"minGroupCurrent": "2",
"minGroupRecommended": "1",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "2",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.7,
"deferRecommendation": "no",
"recommFirstSeen": 1579680587583,
"recommLastSeen": 1591686728937,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "974b0ddd-315e-45a4-b9f1-ffd33ee04a0c",
"resourceId": "5d48ee37-462c-4eff-957b-68e7d927b8ed",
"accountIdRef": "209726931496",
"region": "us-east-2",
"currentType": "t2.micro",
"recommendationType": "Just Right",
"recommendedType": "t2.micro",
"totalHoursRunning": 504,
"name": "tom-t2-nano",
"rptHref": "/systems/974b0ddd-315e-45a4-b9f1-ffd33ee04a0c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "73d954fb-efa2-44d4-841f-803974967eab",
"currentCost": 11.83,
"recommendedCost": 11.83,
"serviceType": "ASG",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"currentRiCoverage": 0,
"minGroupCurrent": "0",
"minGroupRecommended": "0",
"maxGroupCurrent": "2",
"maxGroupRecommended": "2",
"currentDesiredCapacity": "1",
"avgInstanceCountRecommended": 0.35,
"avgInstanceCountCurrent": 0.35,
"recommFirstSeen": 1579680587590,
"recommLastSeen": 1591686728950,
"recommSeenCount": 33,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
}
]
- name: Get Analysis Recommendations (Terraform)
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/terraform-map
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/aws/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- "{{analysisId}}"
- results
description: "Retrieves the latest AWS recommendations as a Terraform Parameter map of variables. The Kubex Terraform reference implementation expects this format. This output can be saved as-is in a file called **densify.auto.tfvars** and placed in your Terraform directory. See [GitHub](https://github.com/densify-dev/terraform-null-optimization-as-code).\r\n\r\nRefer to Get Recommendations (JSON) for more details.\r\n\r\nNotes:\r\n> Use header: *Accept* - **application/terraform-map**\r\n\r\n> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want the results for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.\r\n\r\nSee example. Refer to Kubex Online Help [AWS Analysis Recommendations](https://www.densify.com/docs-api/Content/API_Guide/Analysis_AWS_Results.htm)."
response:
- name: "Get Analysis Recommendations (Terraform) "
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/terraform-map
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/aws/f311675a-f05d-4d07-b5e8-0f190438a9f6/results"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- f311675a-f05d-4d07-b5e8-0f190438a9f6
- results
status: OK
code: 200
_postman_previewlanguage: raw
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/terraform-map;charset=UTF-8
- key: content-length
value: "2846"
- key: date
value: Fri, 22 May 2020 18:40:42 GMT
- key: x-envoy-upstream-service-time
value: "593"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
cookie: []
body: |
densify_recommendations = {
"ec-pro-duct-1272" = {
currentType = "r4.2xlarge"
recommendedType = "r5a.2xlarge"
approvalType = "na"
predictedUptime = "77.62"
recommendationType = "Modernize"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "45.33008"
effortEstimate = "Low"
densifyPolicy = "AWS (Mobile_Prod) B"
deferRecommendation = "no"
}
"ex-prepro-dvc-866" = {
currentType = "c4.2xlarge"
recommendedType = "r5a.large"
approvalType = "na"
predictedUptime = "84.72"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "176.25996"
effortEstimate = "Low"
densifyPolicy = "AWS (Mobile_Prod) B"
deferRecommendation = "no"
}
"ex-prepro-fifo-420" = {
currentType = "m3.large"
recommendedType = "m3.medium"
approvalType = "na"
predictedUptime = "90.97"
recommendationType = "Downsize"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "43.82934"
effortEstimate = "Low"
densifyPolicy = "AWS (Mobile_Prod) B"
deferRecommendation = "no"
}
"ex-prepro-jaws-317" = {
currentType = "m4.xlarge"
recommendedType = "m5a.xlarge"
approvalType = "na"
predictedUptime = "77.78"
recommendationType = "Modernize"
powerState = "Running"
implementationMethod = "Manual"
savingsEstimate = "15.898233"
effortEstimate = "Moderate"
densifyPolicy = "AWS (Mobile_Prod) B"
deferRecommendation = "no"
}
"mobile-svc-stage1" = {
currentType = "t2.medium"
recommendedType = "t3a.large"
approvalType = "na"
predictedUptime = "91.67"
recommendationType = "Upsize"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "-19.278202"
effortEstimate = "Low"
densifyPolicy = "AWS (Mobile_Prod) B"
}
"ec-prepro-appx-569" = {
currentType = "m3.medium"
recommendedType = "m3.medium"
approvalType = "na"
predictedUptime = "77.62"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "AWS (Mobile_Prod) B"
}
"mobile-svc-asg-analysisGrid" = {
currentType = "c4.large"
recommendedType = "c5.large"
approvalType = "na"
recommendationType = "Downscale"
powerState = "Running"
savingsEstimate = "114.57644"
effortEstimate = "Low"
densifyPolicy = "AWS (Mobile_Prod) B"
minGroupCurrent = "4"
minGroupRecommended = "2"
maxGroupCurrent = "16"
maxGroupRecommended = "8"
avgInstanceCountCurrent = "2.9568965"
currentDesiredCapacity = "4"
avgInstanceCountRecommended = "1.6321839"
}
}
description: After the analysis completes, you can get Densify's recommendations. See [Optimizing AWS EC2 Instances](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_AWS_EC2_Instances.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 2.1.4 AWS Informed Decisions
item:
- name: Download Impact Analysis and Recommendations Report
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/octet-stream
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems/{{entityId}}/analysis-report"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
- "{{entityId}}"
- analysis-report
description: |-
As an application owner, you may want to see details of a recommendation for a particular instance.
The Impact Analysis and Recommendation Report provides this and can be downloaded in PDF format for any instance.
Notes:
> The `entityId` environment variable is used to identify the recommendation system. This variable was set in a previous request. If you want the report for a specific system, modify the `entityId` variable with your desired recommendation _entityId_ in the Kubex environment.
> Ensure the request header includes: _Accept_ - **application/octet-stream**
> This report is based on data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. As a result, the first time you run `/analyze`, the report won't be available until the next day. Once automatic daily analysis updates begin, this restriction goes away.
Refer to Kubex Online Help [Impact Analysis and Recommendations Report](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_AWS_Results.htm?Highlight=impact%20analysis#Example_DownloadAppOwner)
response: []
- name: Get 'Upsize - Optimal Family' Recommendations (JSON)
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/aws/{{analysisId}}/results?recommendationType=Upsize - Optimal Family"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- "{{analysisId}}"
- results
query:
- key: recommendationType
value: Upsize - Optimal Family
description: "There are several properties included with Recommendations. Three are key:\r\n+ **recommendationType** \r\n The recommendation class; Upsize, Modernize, Downsize, etc.\r\n\r\n+ **recommendedType** \r\n The Kubex recommended optimal instance Type. It may be a larger or smaller instance of the same family i.e. m5.medium > m5.large, or a change to a different family i.e. M > C.\r\n\r\n+ **effortEstimate** \r\n Effort required to move to the new Type. Ranges High to None. Is determined by a rule engine. For example; effort might be 'Medium' when going from Storage Optimized Instance to a non. There might be a significant cost savings to be but you must review and decide.\r\n\r\nIn this example, a recommendations with 'Upsize - Optimal Family' category is requested.\r\n\r\nNotes:\r\n> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want the results for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.\r\n\r\n> In this example, the environment variable `entityId` is set to the first returned *entityId* element for future use."
response:
- name: Get 'Upsize - Optimal Family' Recommendations (JSON)
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/aws/{{analysisId}}/results?recommendationType=Upsize - Optimal Family"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- aws
- "{{analysisId}}"
- results
query:
- key: recommendationType
value: Upsize - Optimal Family
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: vary
value: accept-encoding
- key: content-encoding
value: gzip
- key: content-type
value: application/json;charset=UTF-8
- key: date
value: Tue, 09 Jun 2020 19:41:47 GMT
- key: x-envoy-upstream-service-time
value: "159"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"entityId": "a6f45bbd-dc09-4982-b615-6d37dbc4b615",
"resourceId": "db-gkd2ttqn6sblplzcane4waylwy",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.small",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "db.r5.large",
"implementationMethod": "Manual",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "calsoft-aurora-test-db",
"rptHref": "/systems/a6f45bbd-dc09-4982-b615-6d37dbc4b615/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -63.6195,
"effortEstimate": "Moderate",
"powerState": "Running",
"recommendedHostEntityId": "246a1535-542a-4b8c-ae06-35a71a596021",
"currentCost": 29.93,
"recommendedCost": 211.7,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.29,
"currentRiCoverage": 0,
"recommFirstSeen": 1589354340957,
"recommLastSeen": 1591686728967,
"recommSeenCount": 9,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "a4e95c00-c624-4869-9812-7fd360be1d70",
"resourceId": "db-ypjeuu47e7exgq5tqmeqmqo3sy",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.small",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "db.r5.large",
"implementationMethod": "Manual",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "mariadb-multiaz",
"rptHref": "/systems/a4e95c00-c624-4869-9812-7fd360be1d70/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -63.6195,
"effortEstimate": "Moderate",
"powerState": "Running",
"recommendedHostEntityId": "246a1535-542a-4b8c-ae06-35a71a596021",
"currentCost": 29.93,
"recommendedCost": 211.7,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.29,
"currentRiCoverage": 0,
"recommFirstSeen": 1589354341723,
"recommLastSeen": 1591686729037,
"recommSeenCount": 9,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
},
{
"entityId": "8fa9387b-cb82-4266-8cfd-50622c821f8b",
"resourceId": "db-kymsa5b6fvoincshikpixti6le",
"accountIdRef": "209726931496",
"region": "us-east-1",
"currentType": "db.t2.small",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "db.r5.large",
"implementationMethod": "Manual",
"predictedUptime": 35,
"totalHoursRunning": 504,
"name": "mariadb-multiaz-us-east-1d",
"rptHref": "/systems/8fa9387b-cb82-4266-8cfd-50622c821f8b/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -63.6195,
"effortEstimate": "Moderate",
"powerState": "Running",
"recommendedHostEntityId": "246a1535-542a-4b8c-ae06-35a71a596021",
"currentCost": 29.93,
"recommendedCost": 211.7,
"serviceType": "RDS",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.29,
"currentRiCoverage": 0,
"recommFirstSeen": 1589354340957,
"recommLastSeen": 1591686728967,
"recommSeenCount": 9,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949272133,
"dateLastAudited": 1591157106573,
"auditCount": 116
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591070400000,
"totalDays": 22,
"seenDays": 11
}
}
}
]
- name: Get AWS Tags (Densify Attributes)
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"systemId\", firstdata.id);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems/?platform=aws&attribute_name_value=Resource+Tags,LOB+:+Warehouse"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
- ""
query:
- key: platform
value: aws
- key: attribute_name_value
value: Resource+Tags,LOB+:+Warehouse
description: "In Kubex System Attributes are synonymous to AWS Tags.\n\n- Kubex maintains an extensive list of attributes for each instance.\n- Kubex collects instance AWS Tags and maps them to a Kubex System Attribute called **Resource Tags**\n- The format of the \"Resource Tags\" System Attribute is: **AWS_Tag_Key : AWS_Tag_Value**\n \n\nFor example, an instance with an AWS Tag of **\"Owner\"** **\"Bill\"** is represented in Kubex as System Attribute: _Name_ **Resource Tags** \_\_ _Value_ **Owner : Bill**\n\nHere we request recommendations for AWS Tag \"LOB\" with a value of \"Warehouse\"\n\n> /systems/?attribute_name_value=Resource+Tags,LOB+:+Warehouse \n \n\nNotes:\n\n> The _systems_ resource uses data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. _Systems_ will return no/partial data until the reporting maintenance task is complete. \n \n> In this example, the environment variable `systemId` is set to the first returned _id_ element for future use. \n \n\nSee example. Refer to Kubex Online Help [Systems](https://www.densify.com/docs-api/Content/API_Guide/Systems.htm)"
response:
- name: Get AWS Tags (Densify Attributes)
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/systems/?platform=aws&attribute_name_value=Resource+Tags,LOB+:+Warehouse"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- systems
- ""
query:
- key: platform
value: aws
- key: attribute_name_value
value: Resource+Tags,LOB+:+Warehouse
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Content-Encoding
value: gzip
- key: Vary
value: Accept-Encoding
- key: Date
value: Tue, 19 Feb 2019 16:13:58 GMT
cookie: []
body: |-
[
{
"id": "770c690a-3c1e-4947-a8db-6f2f9284ae4f",
"name": "ec-dev-bion-3034",
"href": "/systems/770c690a-3c1e-4947-a8db-6f2f9284ae4f",
"resource_id": "i-00bc58122388bc74",
"type": "vm",
"platform_model": "t2.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "8832",
"infrastructure_group": {
"id": "9ee45051-cb37-42c7-964d-83b63d45ee88",
"name": "us-east-1c",
"href": "/infrastructure-groups/9ee45051-cb37-42c7-964d-83b63d45ee88"
},
"control_environment": {
"id": "d770ba01-9777-41ce-9592-262bee962dab",
"name": "229192219122",
"platform_category": "External Cloud",
"href": "/control-environments/d770ba01-9777-41ce-9592-262bee962dab",
"icon": "/control-environments/d770ba01-9777-41ce-9592-262bee962dab/icon"
},
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Business Services"
},
{
"id": "attr_AnalysisResult",
"name": "Analysis Result",
"value": "OK"
},
{
"id": "attr_AnalysisStatus",
"name": "Analysis Status",
"value": "Included in Analysis"
},
{
"id": "attr_Application",
"name": "Application",
"value": "Infrastructure"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.29211262"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.5416665"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "70.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2017-11-15 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "9.0E7"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "1000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "36.8"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8832.0"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-7500100e"
},
{
"id": "attr_InsightSummary",
"name": "Insight Summary",
"value": "Modernize"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cet-prod-east"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "43.97249"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "14642.892"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "8.0E7"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "26.655502"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "30000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "8.75"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "Production"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.large"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "c5dd4af8-67eb-4f5e-8187-a2deb339fac5"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "75.00"
},
{
"id": "attr_Provider",
"name": "Provider",
"value": "AWS"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.5416665"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "43.97249"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3.large-2X9"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "5760.0"
},
{
"id": "attr_Recommendation",
"name": "Recommendation",
"value": "t2.large > t3.large"
},
{
"id": "attr_RecommendationType",
"name": "Recommendation Type",
"value": "Modernize"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Environment : Production"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Inventory Code : dev-bion"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "LOB : Warehouse"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ec-dev-bion-3034"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Irina Yashina"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Product Code : PR000414"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "SM-A-BC"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "SM-A-XX"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "SM-C-BC-01"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "SM-L-BC"
},
{
"id": "attr_Service",
"name": "Service",
"value": "EC2"
},
{
"id": "attr_ServiceDescribed",
"name": "Service Described",
"value": "EC2 [Normal + ASG Inst(MaxSz=1)]"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-09c92024"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Feb 07 2019, 15:41:25 EST"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "229192219122"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0e60216a"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Nov 15, 2017 6:03:24 PM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "nov 15, 2017 6:03:26 pm"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "nov 15, 2017 6:03:24 pm"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "No License required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "IT"
},
{
"id": "CLD.INVENTORY.CODE",
"name": "Inventory Code",
"value": "dev-bion"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Irina Yashina"
},
{
"id": "CLD.PRODUCT.CODE",
"name": "Product Code",
"value": "PR000414"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "8832"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1c"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "229192219122"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
},
{
"id": "wrkld_shift_by_hour",
"name": "Shift Workload By Hours",
"value": "4896"
}
]
},
{
"id": "9408a981-1dc7-41e1-9253-5d81eddca190",
"name": "ea-pro-oop-1917",
"href": "/systems/9408a981-1dc7-41e1-9253-5d81eddca190",
"resource_id": "i-00bc30266003bc35",
"type": "vm",
"platform_model": "c4.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4096",
"infrastructure_group": {
"id": "9ee45051-cb37-42c7-964d-83b63d45ee88",
"name": "us-east-1c",
"href": "/infrastructure-groups/9ee45051-cb37-42c7-964d-83b63d45ee88"
},
"control_environment": {
"id": "d770ba01-9777-41ce-9592-262bee962dab",
"name": "229192219122",
"platform_category": "External Cloud",
"href": "/control-environments/d770ba01-9777-41ce-9592-262bee962dab",
"icon": "/control-environments/d770ba01-9777-41ce-9592-262bee962dab/icon"
},
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Financial Services"
},
{
"id": "attr_AnalysisResult",
"name": "Analysis Result",
"value": "OK"
},
{
"id": "attr_AnalysisStatus",
"name": "Analysis Status",
"value": "Included in Analysis"
},
{
"id": "attr_Application",
"name": "Application",
"value": "Wealth"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "6.400152"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "8.400001"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "70.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2017-11-15 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "9.0E7"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "1000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-fd6c94eb"
},
{
"id": "attr_InsightSummary",
"name": "Insight Summary",
"value": "Downsize - Optimal Family"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "61.053467"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "120014.39"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "8.0E7"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "299.23984"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "30000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "8.96"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "Pre-prod"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.medium"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "4d193917-f95c-4fc5-8c40-776a144369e5"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "76.79"
},
{
"id": "attr_Provider",
"name": "Provider",
"value": "AWS"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "8.400001"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "61.053467"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3.medium-2X4"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "3328.0"
},
{
"id": "attr_Recommendation",
"name": "Recommendation",
"value": "c4.large > t3.medium"
},
{
"id": "attr_RecommendationType",
"name": "Recommendation Type",
"value": "Downsize - Optimal Family"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Environment : Pre-prod"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Inventory Code : tst-rais"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "LOB : Warehouse"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ex-tst-rais-568"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Kozak Kor"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Product Code : PR002244"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "SM-A-BC"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "SM-E-BC-03"
},
{
"id": "attr_Service",
"name": "Service",
"value": "EC2"
},
{
"id": "attr_ServiceDescribed",
"name": "Service Described",
"value": "EC2 [Normal + ASG Inst(MaxSz=1)]"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-2e837904"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Feb 07 2019, 15:41:25 EST"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "229192219122"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0e60216a"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Nov 15, 2017 3:22:27 PM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "nov 15, 2017 3:22:27 pm"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "nov 15, 2017 3:22:27 pm"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "No License required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Finance"
},
{
"id": "CLD.INVENTORY.CODE",
"name": "Inventory Code",
"value": "tst-rais"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Kozak Kor"
},
{
"id": "CLD.PRODUCT.CODE",
"name": "Product Code",
"value": "PR002244"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "4352"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1c"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "229192219122"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
},
{
"id": "wrkld_shift_by_hour",
"name": "Shift Workload By Hours",
"value": "4896"
}
]
}
]
- name: Get Full Details of an Instance
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems/{{systemId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
- "{{systemId}}"
description: |-
You can get a full details listing of a specific instance using the `/systems` resource.
Notes:
> The `systemId` environment variable is used to identify the system. This variable was set in a previous request. If you want the details for another system, modify the `systemId` variable with your desired system _id_ in the Kubex environment.
> The _systems_ resource uses data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. _Systems_ will return no/partial data until the reporting task is complete.
See example. Refer to Kubex Online Help [Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Systems.htm)
response:
- name: Get Full Details of an Instance
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/systems/b585942b-2f05-41a4-b146-1facd95a5f0e"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- systems
- b585942b-2f05-41a4-b146-1facd95a5f0e
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Content-Encoding
value: gzip
- key: Vary
value: Accept-Encoding
- key: Date
value: Tue, 19 Feb 2019 16:14:58 GMT
cookie: []
body: |-
{
"id": "b585942b-2f05-41a4-b146-1facd95a5f0e",
"name": "ex-dev-appx-202",
"href": "/systems/b585942b-2f05-41a4-b146-1facd95a5f0e",
"resource_id": "i-0c6e53ebfb5a98d44",
"type": "vm",
"platform_model": "m4.large",
"platform": "AWS",
"os": "Linux",
"manufacturer": "AWS",
"cpu_model": "Intel Xeon E5-2676 v3",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"total_logical_cpus": "2",
"threads_per_core": "1",
"cpu_speed": "2400",
"memory": "8832",
"ip_address": "172.31.26.62",
"hostId": "N/A",
"parent": "N/A",
"infrastructure_group": {
"id": "fa7a3cf6-87a8-466a-b581-b049ca493814",
"name": "us-east-1a",
"href": "/infrastructure-groups/fa7a3cf6-87a8-466a-b581-b049ca493814"
},
"control_environment": {
"id": "2cbbea5b-a048-497d-9a0f-96d01ae4af9e",
"name": "524756828598",
"platform_category": "External Cloud",
"href": "/control-environments/2cbbea5b-a048-497d-9a0f-96d01ae4af9e",
"icon": "/control-environments/2cbbea5b-a048-497d-9a0f-96d01ae4af9e/icon"
},
"cpu_benchmarks": [
{
"name": "CINT2006 Rate",
"score_type": "cint2006rate",
"value": 59.8
}
],
"I/O_benchmarks": [
{
"name": "Maximum Disk Throughput (bytes/s)",
"score_type": "disk",
"value": -1
},
{
"name": "Maximum Network Throughput (bytes/s)",
"score_type": "net",
"value": -1
}
],
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Product"
},
{
"id": "attr_AnalysisResult",
"name": "Analysis Result",
"value": "OK"
},
{
"id": "attr_AnalysisStatus",
"name": "Analysis Status",
"value": "Included in Analysis"
},
{
"id": "attr_Application",
"name": "Application",
"value": "Alliances"
},
{
"id": "attr_ApprovalSetting",
"name": "Approval Setting",
"value": "Approve Any Change"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "60.942474"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "4"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "96.656006"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "70.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2017-10-20 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "1335.2961"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E8"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.16600001"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "1000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "59.8"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8832.0"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-7500100e"
},
{
"id": "attr_InsightSummary",
"name": "Insight Summary",
"value": "Upsize - Optimal Family"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "23.797558"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "2434.8792"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E8"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "5.8323336"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "30000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "75.00"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "c5.xlarge"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "ce323c3d-dd20-4f97-9d35-fc25cc7ecaa8"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "75.00"
},
{
"id": "attr_Provider",
"name": "Provider",
"value": "AWS"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "96.656006"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "23.797558"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "c5.xlarge-4X9"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "3"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "2688.0"
},
{
"id": "attr_Recommendation",
"name": "Recommendation",
"value": "m4.large > c5.xlarge"
},
{
"id": "attr_RecommendationType",
"name": "Recommendation Type",
"value": "Upsize - Optimal Family"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ex-dev-appx-202"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Bill"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-3"
},
{
"id": "attr_Service",
"name": "Service",
"value": "EC2"
},
{
"id": "attr_ServiceDescribed",
"name": "Service Described",
"value": "EC2 [Normal + ASG Inst(MaxSz=1)]"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-bc3ececa"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "M"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Feb 07 2019, 16:02:03 EST"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "524756828598"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-d4a176b0"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 20, 2017 11:59:53 PM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "oct 20, 2017 11:59:56 pm"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "oct 20, 2017 11:59:53 pm"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Bill"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "8832"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DATASTORE_NAME",
"name": "__Datastore Name",
"value": "vol-0631ffdb5042258b2"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "524756828598"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
}
- name: Get Full Details of all AWS Instances
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems?platform=aws"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
query:
- key: platform
value: aws
description: |-
You can get a full details listing of a specific instance using the `/systems` resource.
Notes:
> The `systemId` environment variable is used to identify the system. This variable was set in a previous request. If you want the details for another system, modify the `systemId` variable with your desired system _id_ in the Kubex environment.
> The _systems_ resource uses data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. _Systems_ will return no/partial data until the reporting task is complete.
See example. Refer to Kubex Online Help [Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Systems.htm)
response:
- name: Get Full Details of all AWS Instances
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems?platform=aws"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
query:
- key: platform
value: aws
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Access-Control-Max-Age
value: "86400"
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Pragma
value: no-cache
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Thu, 24 Aug 2023 09:57:07 GMT
- key: Keep-Alive
value: timeout=20
- key: Connection
value: keep-alive
cookie: []
body: |-
[
{
"id": "c7b0e5f4-d7b9-4b2e-b8eb-3ea5baf983f2",
"name": "i-0c97b287b3590cc69",
"href": "/systems/c7b0e5f4-d7b9-4b2e-b8eb-3ea5baf983f2",
"resource_id": "i-0c97b287b3590cc69",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "19.666668"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 6, 2023 1:32:40 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 6, 2023 1:32:39 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "401650.1"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 06 2023, 04:55:26 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 06, 2023 1:32:39 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "19.666668"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "268.16666"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "346f6f9f-b72e-32e4-8c84-dc1997f893a7",
"name": "jltest-ubuntupro",
"href": "/systems/346f6f9f-b72e-32e4-8c84-dc1997f893a7",
"resource_id": "i-0bb7aa419b9dc8854",
"type": "vm",
"platform_model": "t3.small",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.056131985"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-06-15 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0dbe8f888bb358007"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu-pro-server/images/hvm-ssd/ubuntu-jammy-22.04-amd64-pro-server-20230531"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "1.67"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu server pro, 22.04 lts, amd64 jammy image build on 2023-05-31"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "2.78"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "6.8189583"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3.small-2X2"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 15, 2023 2:58:53 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 15, 2023 2:58:52 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2176"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "171386.83"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : jltest-ubuntupro"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-d7333aaf"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 22 2023, 02:35:13 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 15, 2023 2:58:52 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "6.8189583"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "jltest"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "153.24963"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.small"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "c4b49124-0c6b-404b-818f-d9449379018d"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-40"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "a410ecb4-f3be-4877-afcc-3398e6b8b60f",
"name": "Nov 2 2:49",
"href": "/systems/a410ecb4-f3be-4877-afcc-3398e6b8b60f",
"resource_id": "i-08cf7875f0f149d37",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-09-22 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-ddacd4ca"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "from_i-0017615fe5407d78e"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "moving"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 22, 2016 5:13:44 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 5, 2016 6:04:32 AM"
},
{
"id": "CLD.PROJECT",
"name": "Project",
"value": "Demo"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Nov 2 2:49"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Project : Demo"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-8fd908f9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:36 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 22, 2016 5:13:44 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "test"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-32"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "5eb37a38-0a76-420d-ab6a-97d6306494c3",
"name": "default",
"href": "/systems/5eb37a38-0a76-420d-ab6a-97d6306494c3",
"resource_id": "us-east-1/calsoft/default",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "300",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "10"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/console-sample-app-static:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "console-sample-app-static:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "3"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "300"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "300"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "calsoft"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "300"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "simple-app:10"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "simple-app:300"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "5e3bdb2e-e778-4017-be29-c697c69002f2",
"name": "sg-inst-type-change0",
"href": "/systems/5e3bdb2e-e778-4017-be29-c697c69002f2",
"resource_id": "i-0bff6ced3b769274f",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "fa0485c7-2bb3-44b0-b14b-c0c0aa780056",
"name": "us-east-2c",
"href": "/infrastructure-groups/fa0485c7-2bb3-44b0-b14b-c0c0aa780056"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.034535024"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2021-06-17 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0d8d212151031f51c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20210525.0-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20210525.0 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.2230368"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 17, 2021 4:02:12 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 17, 2021 4:02:11 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_7",
"name": "Cloud Account Name",
"value": "test2-atif-test2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "7622.1445"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "_Name : sg-inst-change"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : sg-inst-type-change0"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-c8361f82"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:51 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 17, 2021 4:02:11 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Recos suppressed by integration until 2024-04-13 : Suppressed to test integration"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.2230368"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "mark-test-key"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "6.8272505"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-29"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "44951d36-f45a-40a2-8823-74b26c46ebbf",
"name": "awu-windows-cw-agent",
"href": "/systems/44951d36-f45a-40a2-8823-74b26c46ebbf",
"resource_id": "i-010ce1bed097b80ea",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.6698572"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2020-03-11 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00cb4c0d60b9476f4"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "awu"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.583528"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 11, 2020 6:20:22 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 11, 2020 6:20:21 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_7",
"name": "Cloud Account Name",
"value": "test-intl-4"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "179.37401"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : awu-windows-cw-agent"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : awu"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 11, 2020 6:20:21 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.583528"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "albin"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.6243334"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-88"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "2d0ae258-c5e8-3df8-8978-a193f3506b3c",
"name": "i-0ef79c5d1c3cec573",
"href": "/systems/2d0ae258-c5e8-3df8-8978-a193f3506b3c",
"resource_id": "i-0ef79c5d1c3cec573",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 24, 2023 6:09:33 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 24, 2023 6:09:32 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 24 2023, 02:43:17 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 24, 2023 6:09:32 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "1626725d-9379-3b88-a768-868cc04fc0ce",
"name": "i-0a889d082aa27a619",
"href": "/systems/1626725d-9379-3b88-a768-868cc04fc0ce",
"resource_id": "i-0a889d082aa27a619",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 12, 2023 6:23:44 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 12, 2023 6:23:44 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 18 2023, 10:50:28 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 12, 2023 6:23:44 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "05e540d7-6e62-4263-8beb-b87555b62ac3",
"name": "terence-testrds-1",
"href": "/systems/05e540d7-6e62-4263-8beb-b87555b62ac3",
"resource_id": "db-hw5lw35harul5cqbhego2sslwi",
"type": "rds",
"platform_model": "db.t3.micro",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "06ea40bf-891b-4bfd-b2a9-1197c65493fd",
"name": "us-east-1a",
"href": "/infrastructure-groups/06ea40bf-891b-4bfd-b2a9-1197c65493fd"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "2.4712868"
},
{
"id": "attr_CurrentMaxLocalDiskIOThroug",
"name": "Current Max Local Disk IO Throughput (Bytes)",
"value": "10875000"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2022-11-28 00:00:00"
},
{
"id": "attr_maintenance_window",
"name": "Maintenance Window",
"value": "fri:05:11-fri:05:41"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.520996"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_storage_type",
"name": "Storage Type",
"value": "gp2"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_CurrentMaxLocalDiskIOOperat",
"name": "Current Max Local Disk IO Operations (IOPS)",
"value": "500"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "345845.2"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "8.063161"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.520996"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "db.t3.micro-2X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "46.0"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.RDS.ENDPOINTID",
"name": "__RDS Endpoint Id",
"value": "z2r2itugpm61am"
},
{
"id": "attr_7",
"name": "Cloud Account Name",
"value": "rds-intl-1"
},
{
"id": "attr_backup_retention_period",
"name": "Backup Retention Period",
"value": "7"
},
{
"id": "attr_backup_window",
"name": "Backup Window",
"value": "06:11-06:41"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "4.0550823"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_latest_restorable_time",
"name": "Latest Restorable Time",
"value": "Aug 19, 2023 6:24:49 AM"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "708926.56"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:49 EDT"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Nov 28, 2022 9:05:45 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "postgresql-license"
},
{
"id": "VE.AWS.RDS.ENDPOINTADDRESS",
"name": "__RDS Endpoint Address",
"value": "terence-testrds-1.ceuqka6azq3r.us-east-1.rds.amazonaws.com"
},
{
"id": "VE.AWS.RI.RDSMULTIAZ",
"name": "__ RDS Multi-AZ Deployment",
"value": "false"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "8.063161"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "db.t3.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "b0cf7477-575a-4b31-93b5-2558cc638707"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "500"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "10875000"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "69ccc07f-522a-4569-bb74-7775761436fa",
"name": "i-01cc4993a44e76b42",
"href": "/systems/69ccc07f-522a-4569-bb74-7775761436fa",
"resource_id": "i-01cc4993a44e76b42",
"type": "vm",
"platform_model": "t3.small",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0485258c2d1c3608f"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.13-v20190701"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image (k8s: 1.13.7, docker:18.06)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.9383397"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "anna-asg"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 23, 2019 6:29:05 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 23, 2019 6:29:04 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "6863.4883"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : anna-asg"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 31 2023, 09:19:10 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 23, 2019 6:29:04 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.9383397"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "eks"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "11.013417"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eks-stack-test-summer2019-NodeSecurityGroup-198SHY1XEIFE6"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "cb3c4486-73f6-37a2-aa82-8f6adcff2400",
"name": "i-09b5102968dc29324",
"href": "/systems/cb3c4486-73f6-37a2-aa82-8f6adcff2400",
"resource_id": "i-09b5102968dc29324",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "10.272509"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 23, 2023 10:55:32 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 23, 2023 10:55:32 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "196944.72"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 24 2023, 02:43:17 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 23, 2023 10:55:32 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "10.272509"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "562.6167"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "d733c05e-2768-3bea-aa07-353620d55566",
"name": "i-0288830a3a4a9e645",
"href": "/systems/d733c05e-2768-3bea-aa07-353620d55566",
"resource_id": "i-0288830a3a4a9e645",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0de53d8956e8dcf80"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190313-x86_64-gp2"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190313 x86_64 hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-62cb7c04"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "test-overrides"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 16, 2023 4:17:56 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 16, 2023 4:17:55 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : test-overrides"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-e51d0717-9c0e-6e8d-8cb0-09a80b63d476"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-093f9b03344450a56"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-6e81d927"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 16, 2023 4:17:55 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "spot"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "36f1a7ef-bbde-44b6-9270-c2b1a026e45a",
"name": "my-ser",
"href": "/systems/36f1a7ef-bbde-44b6-9270-c2b1a026e45a",
"resource_id": "us-east-1/calsoft-linux-cluster/my-ser",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "512",
"attributes": [
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/maria-fargate-sample:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "256"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "256"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "maria-fargate-sample:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "1"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "fargate"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "calsoft-linux-cluster"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "512"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "512"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "1"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "af5ba8e7-2d21-4c53-816c-5e2075cee2d3",
"name": "eks-cluster-test-summer2019-node-test-summer2019-Node",
"href": "/systems/af5ba8e7-2d21-4c53-816c-5e2075cee2d3",
"resource_id": "i-0341472f6e9305b39",
"type": "vm",
"platform_model": "t3a.medium",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4352",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0483887b9600d714d"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.21-v20220303"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eks-cluster-test-summer2019"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.21.5, docker: 20.10.7-5.amzn2, containerd: 1.4.6-8.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "9.053421"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "eks-stack-test-summer2019-NodeGroup-EKTN1LA7JSHG"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 8, 2022 8:54:38 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 8, 2022 8:54:37 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "37.67"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4352.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "7534.588"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-name : test-eksctl"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : eks-stack-test-summer2019-NodeGroup-EKTN1LA7JSHG"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : NodeGroup"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/eks-stack-test-summer2019/0333d0c0-a8c2-11e9-be27-060ae44bf6ec"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : eks-stack-test-summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-05ac7b26da84861e4"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 5"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:eks:cluster-name : eks-cluster-test-summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/node-template/label/kops.k8s.io/instancegroup : test-kops"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eks-cluster-test-summer2019 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : eks-cluster-test-summer2019-node-test-summer2019-Node"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : kgillan"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 08, 2022 8:54:37 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "9.053421"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "eks"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "5.795334"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eks-stack-test-summer2019-NodeSecurityGroup-198SHY1XEIFE6"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "NodeGroup"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/eks-stack-test-summer2019/0333d0c0-a8c2-11e9-be27-060ae44bf6ec"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "eaa1b945-64ea-4751-8c90-d6217b5f1054",
"name": "EC2ContainerService-ECS-t2-small-EcsInstanceAsg-WQLT6I3LWXOM",
"href": "/systems/eaa1b945-64ea-4751-8c90-d6217b5f1054",
"resource_id": "006f45ee-20d2-43c5-9563-193533715e67",
"type": "asg",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"infrastructure_group": {
"id": "89f4be7e-d19a-4249-ab2d-ac51bab7dbc7",
"name": "us-west-1a",
"href": "/infrastructure-groups/89f4be7e-d19a-4249-ab2d-ac51bab7dbc7"
},
"control_environment": {
"id": "795a231f-9b3e-4584-9074-bd18f714ff4d",
"name": "145525148011",
"platform_category": "External Cloud",
"href": "/control-environments/795a231f-9b3e-4584-9074-bd18f714ff4d",
"icon": "/control-environments/795a231f-9b3e-4584-9074-bd18f714ff4d/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.028907113"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2017-04-28 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-689bc208"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2016.09.g-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "145525148011"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.09.g x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.43335187"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.small-1X2"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-e47cc480"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2176"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "48.360336"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-west-1:145525148011:stack/EC2ContainerService-ECS-t2-small/0490bae0-2c4c-11e7-9c34-503f2fe15236"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-ECS-t2-small"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-ECS-t2-small"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 01:03:57 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 28, 2017 7:51:58 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-ecs-t2-small-ecsinstancelc-w06wtfo5nhuw"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.43335187"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.263"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.small"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "3d4d9ae2-d571-4f24-a704-26628f303662"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-9898c8ff"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-west-1:145525148011:stack/EC2ContainerService-ECS-t2-small/0490bae0-2c4c-11e7-9c34-503f2fe15236"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-west-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-west-1"
}
]
},
{
"id": "c5598789-14d0-445b-a3cc-4eb9b8eabec5",
"name": "09/11 instance renamed",
"href": "/systems/c5598789-14d0-445b-a3cc-4eb9b8eabec5",
"resource_id": "i-0cf1678e6a64ea477",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.02089846"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2017-09-11 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-4fffc834"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2017.03.1.20170812-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.03.1.20170812 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.821858"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-2bb90352"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 11, 2017 7:22:01 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 11, 2017 7:22:00 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1057.3878"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : 09/11 instance renamed"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-a56771c0"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 11, 2017 7:22:00 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.821858"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "6.6410003"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-51"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "d990d26a-07cf-4240-b1dc-050084fa8e20",
"name": "i-09aa4f9f29813a667",
"href": "/systems/d990d26a-07cf-4240-b1dc-050084fa8e20",
"resource_id": "i-09aa4f9f29813a667",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Adhere to the launch template"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 14, 2021 10:07:42 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 14, 2021 10:07:41 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Adhere to the launch template"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-01472aa516ce22661"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-8fd908f9"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 14, 2021 10:07:41 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "76addbc7-a8fc-47a0-84e7-0ecd2156a2dd",
"name": "Tom ASG 1",
"href": "/systems/76addbc7-a8fc-47a0-84e7-0ecd2156a2dd",
"resource_id": "cae2d489-612b-4167-bce6-35e3c7fec559",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "d4b8cb69-e601-4caf-9ce2-dffdd39b5bb8",
"name": "us-east-1a",
"href": "/infrastructure-groups/d4b8cb69-e601-4caf-9ce2-dffdd39b5bb8"
},
"control_environment": {
"id": "795a231f-9b3e-4584-9074-bd18f714ff4d",
"name": "145525148011",
"platform_category": "External Cloud",
"href": "/control-environments/795a231f-9b3e-4584-9074-bd18f714ff4d",
"icon": "/control-environments/795a231f-9b3e-4584-9074-bd18f714ff4d/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupPendingInstances, GroupMaxSize, GroupMinSize, GroupStandbyInstances, GroupInServiceInstances, GroupDesiredCapacity, GroupTerminatingInstances, GroupTotalInstances"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-c58c1dd3"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2017.03.0.20170417-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "145525148011"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.03.0.20170417 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 01:03:55 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 25, 2017 6:47:54 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "tom auto scaling group"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-2ffdf6b8"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "64a35c94-fec4-38e4-80d4-9f3f7debf09b",
"name": "i-06f847966bd1c82ab",
"href": "/systems/64a35c94-fec4-38e4-80d4-9f3f7debf09b",
"resource_id": "i-06f847966bd1c82ab",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "7.4326205"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 28, 2023 11:30:01 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 28, 2023 11:30:00 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "15166.233"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 29 2023, 02:39:00 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 28, 2023 11:30:00 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "7.4326205"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "11.316668"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "10fffd31-6259-364e-9ca3-33f93390b1d7",
"name": "i-0f602d3a6567b3dc6",
"href": "/systems/10fffd31-6259-364e-9ca3-33f93390b1d7",
"resource_id": "i-0f602d3a6567b3dc6",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 22, 2023 5:14:04 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 22, 2023 2:32:49 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "423d9c79-42f4-42a5-844f-ddd65594a04e",
"name": "i-02fd998d1a8e134e5",
"href": "/systems/423d9c79-42f4-42a5-844f-ddd65594a04e",
"resource_id": "i-02fd998d1a8e134e5",
"type": "vm",
"platform_model": "t3.micro",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "ASG-mixed policy set"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "mixed policy set"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Nov 12, 2019 2:35:13 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Nov 12, 2019 2:35:12 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : mixed policy set"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-10544df7-0b57-8dfb-8c92-a9287c1861ad"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-01472aa516ce22661"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : ASG-mixed policy set"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Nov 12, 2019 2:35:12 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "060f2e81-c0d5-4199-84d8-bf42a6e8317a",
"name": "i-0c308db606c2116f2",
"href": "/systems/060f2e81-c0d5-4199-84d8-bf42a6e8317a",
"resource_id": "i-0c308db606c2116f2",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "9.261934"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 20, 2023 12:09:36 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 20, 2023 12:09:35 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "166491.62"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 20 2023, 02:37:45 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 20, 2023 12:09:35 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "9.261934"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "188.18889"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "dc1847d7-5ec4-30b4-9c91-5006d80cf53f",
"name": "i-03d3bc8b6661ed0cc",
"href": "/systems/dc1847d7-5ec4-30b4-9c91-5006d80cf53f",
"resource_id": "i-03d3bc8b6661ed0cc",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.0905607"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 14, 2023 11:38:51 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 14, 2023 11:38:51 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1086.3267"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 20 2023, 12:10:30 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 14, 2023 11:38:51 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.0905607"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "4.3166666"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "96380113-5053-4b11-997d-1ca998d43c9f",
"name": "i-07a31d35a7094288f",
"href": "/systems/96380113-5053-4b11-997d-1ca998d43c9f",
"resource_id": "i-07a31d35a7094288f",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "10.796843"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 28, 2023 10:50:38 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 28, 2023 10:50:37 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "171772.94"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 29 2023, 05:40:25 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 28, 2023 10:50:37 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "260.94168"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "10.796843"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
}
]
},
{
"id": "e41d2cff-23ae-4d4e-adb3-dd716b1ddbe2",
"name": "tom-t2-unlimited",
"href": "/systems/e41d2cff-23ae-4d4e-adb3-dd716b1ddbe2",
"resource_id": "i-07ec21b7a361db2be",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.024038484"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-06-11 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-14c5486b"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2018.03.0.20180508-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_Application",
"name": "Application",
"value": "RandomApp"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.0.20180508 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.23224047"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 11, 2018 8:46:04 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 11, 2018 8:46:02 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "75.56867"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Application : RandomApp"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : tom-t2-unlimited"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : Tom"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 11, 2018 8:46:02 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Recos suppressed by integration until 2024-04-13 : Suppressed to test integration"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.23224047"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "ec2-ssh-tom"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.68766665"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-70"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "1ef8585c-c2b7-489d-bab0-281c71252919",
"name": "myangconlin",
"href": "/systems/1ef8585c-c2b7-489d-bab0-281c71252919",
"resource_id": "us-east-2/default/myangconlin",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "1024",
"attributes": [
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-2:209726931496:task-definition/marklinuxconstraint:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "512"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "512"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "marklinuxconstraint:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "1"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "default"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "1024"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "1024"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "1"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "16b9f874-ba4c-4b35-941f-5cb4f42b2c92",
"name": "i-078249b9ff5be16eb",
"href": "/systems/16b9f874-ba4c-4b35-941f-5cb4f42b2c92",
"resource_id": "i-078249b9ff5be16eb",
"type": "vm",
"platform_model": "t3.2xlarge",
"platform": "AWS",
"total_physical_cpus": "8",
"cores_per_cpu": "1",
"memory": "35200",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-014ddabf5947b9cbe"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220627 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.81766665"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "lin-cp"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 26, 2022 8:17:01 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 26, 2022 8:17:00 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "8.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "184"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "35200.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "9157.173"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : lin-cp"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : myang"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-5a18ef33"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 26, 2022 8:17:00 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "4"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.81766665"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "10.470416"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "AutoScaling-Security-Group-4"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "d1f30dc4-6e16-4699-8de1-fb2247a19987",
"name": "i-09b6a15b024a49add",
"href": "/systems/d1f30dc4-6e16-4699-8de1-fb2247a19987",
"resource_id": "i-09b6a15b024a49add",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "25.12236"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 29, 2023 1:32:38 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 29, 2023 1:32:38 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1011665.4"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 29 2023, 05:40:25 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 29, 2023 1:32:38 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "25.12236"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "506.71112"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "ab7b286c-7a51-3933-9ffd-789798b666d7",
"name": "i-048183e37345a1721",
"href": "/systems/ab7b286c-7a51-3933-9ffd-789798b666d7",
"resource_id": "i-048183e37345a1721",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 3, 2023 4:23:36 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 3, 2023 4:23:35 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 03 2023, 02:38:15 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 03, 2023 4:23:35 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "758b9f49-1a7a-4c37-aeea-29f778c2d825",
"name": "tem1_3",
"href": "/systems/758b9f49-1a7a-4c37-aeea-29f778c2d825",
"resource_id": "i-0fa4f01d6213ab86b",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "8.878166"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.193665"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "8.878166"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Template with CloudWatch agent"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 26, 2021 3:17:46 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 26, 2021 3:17:45 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "12760.472"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Template with CloudWatch agent"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0ea0cc4cc58bc43b4"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : tem1_3"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 26, 2021 3:17:45 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.193665"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "temp"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "21.763668"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-86"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "f54be60c-f5c7-4735-92cc-d0d8443fd126",
"name": "Second_task",
"href": "/systems/f54be60c-f5c7-4735-92cc-d0d8443fd126",
"resource_id": "us-east-2/ohio-maria-cluster/second_task",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "128",
"attributes": [
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "daemon"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-2:209726931496:task-definition/maria-second-task-def:9"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "128"
},
{
"id": "attr_task_container_mem_resv",
"name": "__Container Memory Reservation",
"value": "128"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "128"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "maria-second-task-def:9"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "1"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "128"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "128"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "ohio-maria-cluster"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "128"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "128"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "maria-second-sample-app:128"
},
{
"id": "VE.Container_MEM_RES_MiB",
"name": "__Memory Reservation",
"value": "maria-second-sample-app:128"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "1"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "8873a794-d3f8-3b61-82db-c9c0f886d849",
"name": "anna-deleteTemplate",
"href": "/systems/8873a794-d3f8-3b61-82db-c9c0f886d849",
"resource_id": "96098f76-ad66-42d9-9b71-0b99c14a6596",
"type": "asg",
"platform_model": "N/A",
"platform": "AWS",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 2, 2023 5:42:47 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "da85046c-e8bc-39fa-bb08-2cc4ed3ac3df",
"name": "i-04f5b63514d2f0260",
"href": "/systems/da85046c-e8bc-39fa-bb08-2cc4ed3ac3df",
"resource_id": "i-04f5b63514d2f0260",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 3, 2023 5:16:40 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 03, 2023 2:32:25 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
}
]
},
{
"id": "ab826530-1b73-4b38-8f34-78a41f74ac26",
"name": "i-0ced39112c7430be0",
"href": "/systems/ab826530-1b73-4b38-8f34-78a41f74ac26",
"resource_id": "i-0ced39112c7430be0",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Adhere to the launch template"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Feb 23, 2023 2:32:53 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Feb 23, 2023 2:32:52 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Adhere to the launch template"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-01472aa516ce22661"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-8fd908f9"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Feb 23, 2023 2:32:52 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "83e7aa71-4b4a-3a35-91cc-9c43a80b27de",
"name": "i-0a59045476f1c77a3",
"href": "/systems/83e7aa71-4b4a-3a35-91cc-9c43a80b27de",
"resource_id": "i-0a59045476f1c77a3",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.434336"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 12, 2023 3:41:47 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 12, 2023 3:41:46 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1130.9917"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 18 2023, 10:50:28 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 12, 2023 3:41:46 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.434336"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "5.166667"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "38bcd6b8-1b2b-4a05-8f70-f1ff4830ed03",
"name": "EC2ContainerService-maria-cluster-EcsInstanceAsg-K1YL0P6M5K4M",
"href": "/systems/38bcd6b8-1b2b-4a05-8f70-f1ff4830ed03",
"resource_id": "8c22f5fb-8ed0-4ecd-ac91-8aa8e2f3856a",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "4"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.19272876"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-aff65ad2"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2017.09.l-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "0.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.l x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.5321133"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "0.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1109.5845"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-maria-cluster/f5d8d460-4a4f-11e8-9293-500c524058f2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-maria-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-maria-cluster"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 27, 2018 7:20:00 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-maria-cluster-ecsinstancelc-ssovnb3k2z4v"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.5321133"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "4.990792"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-56384221"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-maria-cluster/f5d8d460-4a4f-11e8-9293-500c524058f2"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "00c9becb-ce27-4162-aa83-ee8cc4d27da3",
"name": "eksctl-test-cluster-ng-b5a2c6e8-Node",
"href": "/systems/00c9becb-ce27-4162-aa83-ee8cc4d27da3",
"resource_id": "i-04c0dc2fbf322612e",
"type": "vm",
"platform_model": "m5.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "8832",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0d74628ef4e6ed5b6"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.19-v20210526"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eksctl-test-cluster"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.19.6, docker: 19.03.13ce-1.amzn2, containerd: 1.4.1-2.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.141667"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0e8bc4c2702c894d1"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8-NodeGroup-1MBL2QXST71ES"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 3, 2021 5:08:46 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 3, 2021 5:08:45 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8832.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "25833.365"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/eksctl-version : 0.52.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-name : ng-b5a2c6e8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-type : unmanaged"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8-NodeGroup-1MBL2QXST71ES"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : NodeGroup"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8/ef624600-c48d-11eb-b299-02901252d834"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-055ca56d7c813f8a0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:eks:cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eksctl.cluster.k8s.io/v1alpha1/cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eksctl.io/v1alpha2/nodegroup-name : ng-b5a2c6e8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eksctl-test-cluster : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : eksctl-test-cluster-ng-b5a2c6e8-Node"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0485764aa52b8b360"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 03, 2021 5:08:45 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.141667"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "23.3"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eksctl-eksctl-test-cluster-cluster-ClusterSharedNodeSecurityGroup-166CTR4NLWIAJ"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8-SG-J3CSXSCWSBKH"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "NodeGroup"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8/ef624600-c48d-11eb-b299-02901252d834"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "fe146cc3-05b1-4fe7-9333-944dcc10b209",
"name": "i-05d9b88801f2ebc59",
"href": "/systems/fe146cc3-05b1-4fe7-9333-944dcc10b209",
"resource_id": "i-05d9b88801f2ebc59",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 20, 2023 6:28:33 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 20, 2023 6:28:32 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 20 2023, 02:37:45 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 20, 2023 6:28:32 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "9617b734-4e78-4077-b71f-fcbaa9c47fbd",
"name": "sguci-no-image-2-instance",
"href": "/systems/9617b734-4e78-4077-b71f-fcbaa9c47fbd",
"resource_id": "i-01e8733b478517a98",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.11112342"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2022-06-08 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-058d7e5ae0dc49e9a"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.49873543"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 8, 2022 8:30:43 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 8, 2022 8:30:42 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "13621.664"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : sguci-no-image-2-instance"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 08, 2022 8:30:42 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.49873543"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "30.638916"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-99"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "1b579b83-60bd-4f14-bfd0-e400f433efc6",
"name": "eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8-NodeGroup-1MBL2QXST71ES",
"href": "/systems/1b579b83-60bd-4f14-bfd0-e400f433efc6",
"resource_id": "bd7451bf-9431-40e7-94e8-19e80501c9f6",
"type": "asg",
"platform_model": "m5.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "8832",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "1.6770768"
},
{
"id": "attr_CurrentMaxLocalDiskIOThroug",
"name": "Current Max Local Disk IO Throughput (Bytes)",
"value": "81250000"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "1342177280"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0d74628ef4e6ed5b6"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.19-v20210526"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eksctl-test-cluster"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "1342177280"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_CurrentMaxLocalDiskIOOperat",
"name": "Current Max Local Disk IO Operations (IOPS)",
"value": "3600"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.19.6, docker: 19.03.13ce-1.amzn2, containerd: 1.4.1-2.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.6250002"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "m5.large-2X9"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "75.3"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0e8bc4c2702c894d1"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "8832"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8/ef624600-c48d-11eb-b299-02901252d834"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eksctl.cluster.k8s.io/v1alpha1/cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eksctl.io/v1alpha2/nodegroup-name : ng-b5a2c6e8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eksctl-test-cluster : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : eksctl-test-cluster-ng-b5a2c6e8-Node"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 3, 2021 5:08:41 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "2"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8832.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "13940.052"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/eksctl-version : 0.52.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-name : ng-b5a2c6e8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-type : unmanaged"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : NodeGroup"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.6250002"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "15.012709"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "m5.large"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "b251e9c6-1d10-4c9a-8714-41beb68752b8"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "3600"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "81250000"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "NodeGroup"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8/ef624600-c48d-11eb-b299-02901252d834"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "30571ee7-a290-491e-b5a5-995fa49292cb",
"name": "i-06a83ef7e688d04d4",
"href": "/systems/30571ee7-a290-491e-b5a5-995fa49292cb",
"resource_id": "i-06a83ef7e688d04d4",
"type": "vm",
"platform_model": "t3.nano",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "544",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-02238ac43d6385ab3"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-kernel-5.10-hvm-2.0.20230307.0-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 kernel 5.10 ami 2.0.20230307.0 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.0983171"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "jltest-asg"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 21, 2023 3:45:59 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 21, 2023 3:45:58 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "544.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "5771.2476"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : jltest-asg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-1d97e90c-73ae-443e-8498-8f20b76a6189"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-07b3c5e80a3ee5077"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-5a18ef33"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 06 2023, 04:55:26 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 21, 2023 3:45:58 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.0983171"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "jltest"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "6.9046664"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-40"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "5eaf9182-697a-36ac-b3b8-f8b823373557",
"name": "i-0ad003b95dc202d56",
"href": "/systems/5eaf9182-697a-36ac-b3b8-f8b823373557",
"resource_id": "i-0ad003b95dc202d56",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "11.245972"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 4, 2023 11:55:32 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 4, 2023 11:55:31 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "239559.6"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 05 2023, 02:35:50 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 04, 2023 11:55:31 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "11.245972"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "293.19168"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "5fa30824-f7a3-40e1-9680-1053099bb9fd",
"name": "i-0a57ff78ee172e6c7",
"href": "/systems/5fa30824-f7a3-40e1-9680-1053099bb9fd",
"resource_id": "i-0a57ff78ee172e6c7",
"type": "vm",
"platform_model": "t3.2xlarge",
"platform": "AWS",
"total_physical_cpus": "8",
"cores_per_cpu": "1",
"memory": "35200",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-014ddabf5947b9cbe"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220627 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.4223333"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "lin-cp"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 28, 2022 7:37:14 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 28, 2022 7:37:13 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "8.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "184"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "35200.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "8462.119"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : lin-cp"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : myang"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-c8361f82"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 28, 2022 7:37:13 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "4"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.4223333"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "9.119667"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "AutoScaling-Security-Group-4"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "3701018e-aa3a-4e6d-8e11-c9c07116343d",
"name": "CPU Options",
"href": "/systems/3701018e-aa3a-4e6d-8e11-c9c07116343d",
"resource_id": "i-083292b1b5756df40",
"type": "vm",
"platform_model": "r5a.4xlarge",
"platform": "AWS",
"total_physical_cpus": "16",
"cores_per_cpu": "1",
"memory": "140800",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2020-07-28 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0a0ddd875a1ea2c7f"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20200610"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_product_codes",
"name": "Product Codes",
"value": "Val1"
},
{
"id": "attr_product_codes",
"name": "Product Codes",
"value": "Val2"
},
{
"id": "attr_product_codes",
"name": "Product Codes",
"value": "Val3"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "145525148011"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2020-06-10"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-62cb7c04"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 28, 2020 9:27:59 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 28, 2020 9:27:58 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "16.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "534.97"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "140800.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : CPU Options"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-6e81d927"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 09:00:28 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 28, 2020 9:27:58 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "8"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "myang"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-6"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "9823822c-6b33-4598-8756-0569e69ea4e6",
"name": "erabby",
"href": "/systems/9823822c-6b33-4598-8756-0569e69ea4e6",
"resource_id": "us-east-2/default/erabby",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "1024",
"attributes": [
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-2:209726931496:task-definition/2parameters:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "1024"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "2parameters:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "1"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "default"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "1024"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "deb6f5cc-2dc4-4cab-a6a2-b7c2144db22f",
"name": "i-01a64ea8fd80bc7a2",
"href": "/systems/deb6f5cc-2dc4-4cab-a6a2-b7c2144db22f",
"resource_id": "i-01a64ea8fd80bc7a2",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.8227147"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Adhere to the launch template"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 14, 2021 8:29:09 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 14, 2021 8:28:58 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "321.21732"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Adhere to the launch template"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-01472aa516ce22661"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-8fd908f9"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:05 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 14, 2021 8:28:58 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.8227147"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.33366668"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "5d459f84-babb-4cbb-b613-cba884c386c8",
"name": "myname",
"href": "/systems/5d459f84-babb-4cbb-b613-cba884c386c8",
"resource_id": "i-036de50c9240d635c",
"type": "vm",
"platform_model": "c4.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4096",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-10-06 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-2d39803a"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20160627"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "host"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Oct 6, 2016 11:58:37 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 6, 2016 11:58:37 AM"
},
{
"id": "CLD.PROJECT",
"name": "Project",
"value": "Demo"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : myname"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Project : Demo"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 06, 2016 11:58:37 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "Cirba VPC"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-2"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-37"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "bd14db25-bf6e-4393-89e8-8dc6327e64c2",
"name": "Infra-ECS-Cluster-bf62b2e4-1447-4ed0-80ef-cb8cc05f3367-ECSAutoScalingGroup-IEAWT1PFACE3",
"href": "/systems/bd14db25-bf6e-4393-89e8-8dc6327e64c2",
"resource_id": "9a0546d2-f4e1-46f0-bc09-a7422a6b7292",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "ecslaunchtemplate_6r71iqaac3wv"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.27415964"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2022-07-19 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-09ce6553a7f2ae75d"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "0.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220630 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.366085"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "0.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "8571.395"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1024.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : ECSAutoScalingGroup"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/Infra-ECS-Cluster-bf62b2e4-1447-4ed0-80ef-cb8cc05f3367/4a9adc40-07a3-11ed-90c6-02adf9d0d0f8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : Infra-ECS-Cluster-bf62b2e4-1447-4ed0-80ef-cb8cc05f3367"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 19, 2022 8:42:43 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Recos suppressed by integration until 2024-04-13 : Suppressed to test integration"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.366085"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "11.073916"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "ECSAutoScalingGroup"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/Infra-ECS-Cluster-bf62b2e4-1447-4ed0-80ef-cb8cc05f3367/4a9adc40-07a3-11ed-90c6-02adf9d0d0f8"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "7f22a229-f1bb-4b45-9306-d0029f5c015c",
"name": "awseb-e-tmqifhqf5f-stack-AWSEBAutoScalingGroup-NECDWWOZKSJZ",
"href": "/systems/7f22a229-f1bb-4b45-9306-d0029f5c015c",
"resource_id": "6f182b4a-3ce4-4f48-b055-ff088901f331",
"type": "asg",
"platform_model": "t1.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "672",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "4"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0f481618"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "aws-elasticbeanstalk-amzn-2016.09.0.x86_64-docker-pv-201610270319"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "672"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "672.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : AWSEBAutoScalingGroup"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/awseb-e-tmqifhqf5f-stack/71858dd0-9d3e-11e6-9c8e-503f23fb55fe"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : awseb-e-tmqifhqf5f-stack"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "elasticbeanstalk:environment-id : e-tmqifhqf5f"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "elasticbeanstalk:environment-name : Default-Environment"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Default-Environment"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "paravirtual"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 28, 2016 6:44:21 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "awseb-e-tmqifhqf5f-stack-awsebautoscalinglaunchconfiguration-1f7jlied2ecr9"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t1.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "0ddb282a-8c01-4fa4-8585-5c708dcdfc87"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "awseb-e-tmqifhqf5f-stack-AWSEBSecurityGroup-E0LEHJNFU3RD"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "AWSEBAutoScalingGroup"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/awseb-e-tmqifhqf5f-stack/71858dd0-9d3e-11e6-9c8e-503f23fb55fe"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "226fc6f3-756a-4f35-8cb2-1a3aaae24d9f",
"name": "i-0e134305fd31c1076",
"href": "/systems/226fc6f3-756a-4f35-8cb2-1a3aaae24d9f",
"resource_id": "i-0e134305fd31c1076",
"type": "vm",
"platform_model": "t2.nano",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "544",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0fc61db8544a617ed"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20200304.0-x86_64-gp2"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20200304.0 x86_64 hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-62cb7c04"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "mar-mix-asg"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 13, 2020 3:34:07 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 13, 2020 3:34:06 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : mar-mix-asg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-3a564ff5-01f5-0753-a612-2b288c8dc00e"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-021c42c25aad26c0e"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-21e9897a"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 13, 2020 3:34:06 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "d1d5c303-5cbc-420d-9ccd-c8be3418a871",
"name": "anna-spot-template",
"href": "/systems/d1d5c303-5cbc-420d-9ccd-c8be3418a871",
"resource_id": "b8949266-9228-4991-9ba9-d007d9c39985",
"type": "asg",
"platform_model": "t2.nano",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "544",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "spot_template"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-02f706d959cedf892"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2018.03.0.20190611-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.0.20190611 x86_64 hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "544"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "544.0"
},
{
"id": "attr_MaxSpotPrice",
"name": "Maximum Spot Price",
"value": "0.015"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:44 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 9, 2019 7:02:25 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "spot"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.nano"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "f0d844c3-e7f2-4798-862b-3e7e55304200"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "c8d67a01-4abf-44bb-826a-af88e7ff67c5",
"name": "i-0a078123ad1fed4ca",
"href": "/systems/c8d67a01-4abf-44bb-826a-af88e7ff67c5",
"resource_id": "i-0a078123ad1fed4ca",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 22, 2023 6:11:35 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 22, 2023 6:11:34 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 22 2023, 03:04:30 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 22, 2023 6:11:34 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "b1bd413d-5394-3ed8-ac21-a78174041f34",
"name": "i-08deb1237bce8a823",
"href": "/systems/b1bd413d-5394-3ed8-ac21-a78174041f34",
"resource_id": "i-08deb1237bce8a823",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 15, 2023 5:05:55 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 15, 2023 2:33:05 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "9a352f71-bb0b-31dc-a5ca-d6bb53b66f67",
"name": "i-07a4a16fb5db2be7d",
"href": "/systems/9a352f71-bb0b-31dc-a5ca-d6bb53b66f67",
"resource_id": "i-07a4a16fb5db2be7d",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.4292932"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 15, 2023 1:28:55 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 15, 2023 1:28:54 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "188485.36"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 20 2023, 12:10:30 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 15, 2023 1:28:54 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.4292932"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "137.86234"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "8246ff53-1f6c-381b-8d1d-d68b148eab83",
"name": "i-00796cb8b7ca9c48f",
"href": "/systems/8246ff53-1f6c-381b-8d1d-d68b148eab83",
"resource_id": "i-00796cb8b7ca9c48f",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.1976411"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 17, 2023 2:11:44 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 17, 2023 2:11:43 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1061.1724"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 17 2023, 02:40:11 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 17, 2023 2:11:43 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.1976411"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "4.3"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "84eeb176-d047-4d26-89f4-b53df9ba3915",
"name": "EC2ContainerService-Tom-ECS-Cluster-EcsInstanceAsg-41MH4ZXJDZ9V",
"href": "/systems/84eeb176-d047-4d26-89f4-b53df9ba3915",
"resource_id": "1efc7b45-9a2b-4e61-850c-1e63df11df27",
"type": "asg",
"platform_model": "t3.micro",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.40506038"
},
{
"id": "attr_CurrentMaxLocalDiskIOThroug",
"name": "Current Max Local Disk IO Throughput (Bytes)",
"value": "10875000"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-028a9de0a7e353ed9"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2018.03.e-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "33.36809"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "5000"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_CurrentMaxLocalDiskIOOperat",
"name": "Current Max Local Disk IO Operations (IOPS)",
"value": "500"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.e x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.0243984"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "33.36809"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3.micro-2X1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "2.0"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-07da982fbc012d2c1"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-Tom-ECS-Cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-Tom-ECS-Cluster"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 16, 2018 3:58:43 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-tom-ecs-cluster-ecsinstancelc-1fsbov3x3dl6z"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "648.83844"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-Tom-ECS-Cluster/26af4cd0-a16d-11e8-a11f-06acaac395bc"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.0243984"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "1.797875"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "c85523a1-e528-4f8a-8e93-3f73c5ff5f58"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "150"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "5000"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-0920318f494736048"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-Tom-ECS-Cluster/26af4cd0-a16d-11e8-a11f-06acaac395bc"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "07b9d962-fb54-49cc-a41d-ba85b35b1cbd",
"name": "i-06e50406defaaf099",
"href": "/systems/07b9d962-fb54-49cc-a41d-ba85b35b1cbd",
"resource_id": "i-06e50406defaaf099",
"type": "vm",
"platform_model": "t2.nano",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "544",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0fc61db8544a617ed"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20200304.0-x86_64-gp2"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20200304.0 x86_64 hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-62cb7c04"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "mar-mix-asg"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 2, 2022 1:21:46 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 2, 2022 1:21:45 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : mar-mix-asg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-38f4457d-03f5-8571-8618-a988deac9d5e"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-021c42c25aad26c0e"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-21e9897a"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 02, 2022 1:21:45 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "915c5ab8-0b04-4ba0-9970-02c957d1f2fb",
"name": "EC2ContainerService-Calsoft-linux-cluster-EcsInstanceAsg-40YSZTVXZGPK",
"href": "/systems/915c5ab8-0b04-4ba0-9970-02c957d1f2fb",
"resource_id": "88fdb8ea-2e54-4ed4-9a2b-d25c31b1d10b",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-ba722dc0"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2017.09.f-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.f x86_64 ecs hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-63d1d41b"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-Calsoft-linux-cluster/26103ee0-f9c2-11e7-a0be-50fae9e50c9a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-Calsoft-linux-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-Calsoft-linux-cluster"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:37 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jan 15, 2018 7:03:57 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-calsoft-linux-cluster-ecsinstancelc-5b6gvd18cs8z"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-6dbfc519"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-Calsoft-linux-cluster/26103ee0-f9c2-11e7-a0be-50fae9e50c9a"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "1efc2125-ff07-4892-99de-8ccebe6e0498",
"name": "test-fragate",
"href": "/systems/1efc2125-ff07-4892-99de-8ccebe6e0498",
"resource_id": "us-east-1/default/test-fragate",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "1024",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "100"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/test-tom-task-def:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "256"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "256"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "test-tom-task-def:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "2"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "fargate"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "1024"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "1024"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "default"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "100"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "1024"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "2"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "1024"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "mysql:100"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "mysql:1024"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "45ce04ae-8f6b-4d9e-8aca-6458ef9df1ad",
"name": "i-00e57f9306e330191",
"href": "/systems/45ce04ae-8f6b-4d9e-8aca-6458ef9df1ad",
"resource_id": "i-00e57f9306e330191",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "16.005836"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 22, 2023 12:47:33 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 22, 2023 12:47:33 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "331301.2"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 22 2023, 03:04:30 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 22, 2023 12:47:33 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "16.005836"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "66.125"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "a3061353-93a3-4155-bdd6-6da0d3f3cac1",
"name": "i-04921dcec3c8f2adc",
"href": "/systems/a3061353-93a3-4155-bdd6-6da0d3f3cac1",
"resource_id": "i-04921dcec3c8f2adc",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.0994537"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Mixed_instance_types"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 7, 2023 7:05:42 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 7, 2023 7:05:42 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:49 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 07, 2023 7:05:42 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "321.29602"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Mixed_instance_types"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-01472aa516ce22661"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.0994537"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.33566666"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "936ac0fb-74ff-3ecd-8024-b7b285346570",
"name": "i-010963134f426f16f",
"href": "/systems/936ac0fb-74ff-3ecd-8024-b7b285346570",
"resource_id": "i-010963134f426f16f",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "4.2155814"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 22, 2023 12:45:04 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 22, 2023 12:45:04 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "188416.2"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 22 2023, 02:35:30 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 22, 2023 12:45:04 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "4.2155814"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "136.15909"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "ca2a325b-4618-4285-8504-94a9b1865cdc",
"name": "Tom-Linux-Classic",
"href": "/systems/ca2a325b-4618-4285-8504-94a9b1865cdc",
"resource_id": "i-0e4bf52766b63d002",
"type": "vm",
"platform_model": "m1.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1856",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-03-08 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-97785bed"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2017.09.1.20180115-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.1.20180115 x86_64 hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 8, 2018 4:36:36 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 13, 2018 7:00:41 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "9.2"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1856.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Tom-Linux-Classic"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "network : classic"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : tom"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:37 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 08, 2018 4:36:36 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "aws-ec2-t4"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-2"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "1fb6255c-c24a-49ac-91e2-fd635a05ee50",
"name": "test-mixed",
"href": "/systems/1fb6255c-c24a-49ac-91e2-fd635a05ee50",
"resource_id": "99be3e71-ecb1-4193-9518-9d97137f7495",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "sw_agent"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.22395577"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2021-09-15 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "9.033392"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_product_codes",
"name": "Product Codes",
"value": "Val1"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.3607488"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "9.033392"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_7",
"name": "Cloud Account Name",
"value": "test-intl-2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "12894.706"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 15, 2021 6:13:39 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Recos suppressed by integration until 2024-04-13 : Suppressed to test integration"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.3607488"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "24.906502"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "1561d54f-9ad0-49f3-b0bd-63c61e4cd83e",
"name": "i-08d3e5eacca441325",
"href": "/systems/1561d54f-9ad0-49f3-b0bd-63c61e4cd83e",
"resource_id": "i-08d3e5eacca441325",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 29, 2023 6:04:37 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 29, 2023 6:04:37 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 29 2023, 05:40:25 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 29, 2023 6:04:37 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "88388795-114e-4d51-8473-0e9833b03b78",
"name": "awu-windows-cw-agent-3",
"href": "/systems/88388795-114e-4d51-8473-0e9833b03b78",
"resource_id": "i-0c71a5f1ce33997fa",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "1.2235552"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2020-03-30 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-09d496c26aa745869"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "awu"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "6.632592"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 30, 2020 4:02:45 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 9, 2020 5:11:16 PM"
},
{
"id": "CLD.INVENTORY.CODE",
"name": "Inventory Code",
"value": "The Code's"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "23.204"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "application : RandomApp"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Inventory Code : The Code's"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : awu-windows-cw-agent-3"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "OE : The Operational Env"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : awu"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "PC : The Product Code"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 30, 2020 4:02:45 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "6.632592"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "albin"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.171"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-90"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "86a2a726-2e1e-440a-826f-b95510f95ffa",
"name": "tem1_3",
"href": "/systems/86a2a726-2e1e-440a-826f-b95510f95ffa",
"resource_id": "i-0c4b5e45d1b8e5683",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "8.704721"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.329431"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "8.704721"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "test-mixed2"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 15, 2021 6:16:36 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 15, 2021 6:16:35 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "12799.519"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : test-mixed2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-185ecddf-a95f-87f3-ae32-a1a88c6fb130"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0ea0cc4cc58bc43b4"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : tem1_3"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-c27d32fd"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 15, 2021 6:16:35 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1e"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.329431"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "temp"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "21.926918"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-86"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1e"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "e0d7f048-82f9-4b5e-bac6-92b35e75dbaa",
"name": "ECS Instance - EC2ContainerService-Tom-ECS-Cluster",
"href": "/systems/e0d7f048-82f9-4b5e-bac6-92b35e75dbaa",
"resource_id": "i-0683fe0e39132f193",
"type": "vm",
"platform_model": "t3.micro",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-028a9de0a7e353ed9"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2018.03.e-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.e x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.3779197"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-07da982fbc012d2c1"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "EC2ContainerService-Tom-ECS-Cluster-EcsInstanceAsg-41MH4ZXJDZ9V"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 23, 2019 12:27:43 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 23, 2019 12:27:42 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1293.9629"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : EC2ContainerService-Tom-ECS-Cluster-EcsInstanceAsg-41MH4ZXJDZ9V"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-Tom-ECS-Cluster/26af4cd0-a16d-11e8-a11f-06acaac395bc"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-Tom-ECS-Cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-Tom-ECS-Cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0596d57a804e8f871"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 23, 2019 12:27:42 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.3779197"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "3.52775"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "EC2ContainerService-Tom-ECS-Cluster-EcsSecurityGroup-SWDHKJ2AAQMA"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-Tom-ECS-Cluster/26af4cd0-a16d-11e8-a11f-06acaac395bc"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "cc8b82c8-9a6c-3691-bbb7-afa9891350e0",
"name": "i-05a1bfc928938cbd8",
"href": "/systems/cc8b82c8-9a6c-3691-bbb7-afa9891350e0",
"resource_id": "i-05a1bfc928938cbd8",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 19, 2023 5:44:43 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 19, 2023 2:32:58 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "6756db0c-c3e7-403a-98ea-e187c53ea15f",
"name": "i-02e425b77c13b2c37",
"href": "/systems/6756db0c-c3e7-403a-98ea-e187c53ea15f",
"resource_id": "i-02e425b77c13b2c37",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00c03f7f7f2ec15c3"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190823.1-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Mark"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190823.1 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.0632772"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Mark-ASG-for-realtime"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 28, 2023 4:05:52 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 28, 2023 4:05:52 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "7446.8643"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Mark-ASG-for-realtime"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-08564fb12e4094238"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Mark"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-5a18ef33"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 28, 2023 4:05:52 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.0632772"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "6.806667"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "a69c3463-4199-470f-bc15-79999f49fcb9",
"name": "c4 Test",
"href": "/systems/a69c3463-4199-470f-bc15-79999f49fcb9",
"resource_id": "i-06d390ca1a0c59d95",
"type": "vm",
"platform_model": "c4.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4096",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "QA"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-09-09 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-2d39803a"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20160627"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "zchen"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_Application",
"name": "Application",
"value": "Testing"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "host"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 9, 2016 6:57:15 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 9, 2016 6:57:14 AM"
},
{
"id": "CLD.PROJECT",
"name": "Project",
"value": "Test"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Application : Testing"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : QA"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Cost Center : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : QA"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Environment : 123456789012345678901234567890123456789012345678901234567890123456789033333"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "id : 8473f0c9-193d-46e4-a2b5-3eaae24e487a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "InventoryCode : RH222"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : c4 Test"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : zchen"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "ProductCode : RH111"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Project : Test"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Provisioning Id : Markham'333"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 09, 2016 6:57:14 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "QA"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_Provisioning_ID",
"name": "Provisioning ID",
"value": "Markham'333"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-24"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "985b6624-9a2a-488b-b7ce-545024a24ab8",
"name": "EC2ContainerService-default-EcsInstanceAsg-RV3KJ8J9H909",
"href": "/systems/985b6624-9a2a-488b-b7ce-545024a24ab8",
"resource_id": "2885962a-7f53-432e-b904-b82c1f1ec853",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "89f4be7e-d19a-4249-ab2d-ac51bab7dbc7",
"name": "us-west-1a",
"href": "/infrastructure-groups/89f4be7e-d19a-4249-ab2d-ac51bab7dbc7"
},
"control_environment": {
"id": "795a231f-9b3e-4584-9074-bd18f714ff4d",
"name": "145525148011",
"platform_category": "External Cloud",
"href": "/control-environments/795a231f-9b3e-4584-9074-bd18f714ff4d",
"icon": "/control-environments/795a231f-9b3e-4584-9074-bd18f714ff4d/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.20453633"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2017-04-27 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-689bc208"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2016.09.g-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "1.6080402"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "145525148011"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.09.g x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.319519"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "1.6080402"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-700ab314"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "344.644"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1024.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-west-1:145525148011:stack/EC2ContainerService-default/b9cba5c0-2b87-11e7-9cd9-50faf0371429"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-default"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-default"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 01:03:57 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 27, 2017 8:26:49 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-default-ecsinstancelcwithoutkeypair-1nji7abegtu8w"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.319519"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "1.57675"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-bc0b5adb"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-west-1:145525148011:stack/EC2ContainerService-default/b9cba5c0-2b87-11e7-9cd9-50faf0371429"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-west-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-west-1"
}
]
},
{
"id": "58bf37cf-184a-4ee5-98c0-ecd00e83198c",
"name": "Test ASG using Test Launch Config",
"href": "/systems/58bf37cf-184a-4ee5-98c0-ecd00e83198c",
"resource_id": "05eeb44f-c4c9-434d-9143-8107c8ee890e",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "06ea40bf-891b-4bfd-b2a9-1197c65493fd",
"name": "us-east-1a",
"href": "/infrastructure-groups/06ea40bf-891b-4bfd-b2a9-1197c65493fd"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupStandbyInstances, GroupDesiredCapacity, GroupMinSize, GroupInServiceInstances, GroupTotalInstances, GroupTerminatingInstances, GroupMaxSize, GroupPendingInstances"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-8c1be5f6"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2017.09.0.20170930-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.0.20170930 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Test Calsoft"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Test ASG"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:49 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 11, 2017 12:12:00 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "test launch config"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "2"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "Test Calsoft"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-70699209"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-854e83f5"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-a12bedd8"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "553dad9b-2527-4b8d-ab79-90d75b9b7719",
"name": "default",
"href": "/systems/553dad9b-2527-4b8d-ab79-90d75b9b7719",
"resource_id": "us-east-2/ohio-maria-cluster/default",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "256",
"attributes": [
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-2:209726931496:task-definition/maria-sample-task-def:7"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "128"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "128"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "maria-sample-task-def:7"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "0"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "ohio-maria-cluster"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "256"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "256"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "c10ce6d2-8b0c-33c8-aeb5-345b8db1a926",
"name": "i-0ea621a666717f9aa",
"href": "/systems/c10ce6d2-8b0c-33c8-aeb5-345b8db1a926",
"resource_id": "i-0ea621a666717f9aa",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 24, 2023 5:14:42 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 24, 2023 2:32:37 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
}
]
},
{
"id": "696916c4-e67b-4e52-8d8e-632b128fe740",
"name": "i-0965fa07cdcafdd65",
"href": "/systems/696916c4-e67b-4e52-8d8e-632b128fe740",
"resource_id": "i-0965fa07cdcafdd65",
"type": "vm",
"platform_model": "t3.nano",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "544",
"infrastructure_group": {
"id": "f1a447da-b054-4047-90a6-12ecee883a61",
"name": "eu-south-1c",
"href": "/infrastructure-groups/f1a447da-b054-4047-90a6-12ecee883a61"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.049152512"
},
{
"id": "attr_CurrentMaxLocalDiskIOThroug",
"name": "Current Max Local Disk IO Throughput (Bytes)",
"value": "5375000"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2021-09-16 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0cf570715a6db14e0"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "ineal"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_CurrentMaxLocalDiskIOOperat",
"name": "Current Max Local Disk IO Operations (IOPS)",
"value": "250"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.23916712"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3.nano-2X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "46.0"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-06e660d59fce19b5a"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 16, 2021 5:44:39 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Dec 24, 2021 5:30:23 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "544"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "544.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1141.5344"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1024.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ineal-test-instance"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : ineal"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-09577a0db00f9b420"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:53 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 16, 2021 5:44:39 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "eu-south-1c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.23916712"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "eu-south-1-keypair"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "7.0250006"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.nano"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "eb61c953-b02f-47eb-8bbf-dddf1447f5c4"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "250"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "5375000"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-1"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eu-south-1c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eu-south-1"
}
]
},
{
"id": "282fbd2e-39e6-4283-a8dc-e4774f92d39c",
"name": "eksctl-test-cluster-ng-2cad2871-Node",
"href": "/systems/282fbd2e-39e6-4283-a8dc-e4774f92d39c",
"resource_id": "i-0cd98a382223280a8",
"type": "vm",
"platform_model": "m5.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "8832",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0d74628ef4e6ed5b6"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.19-v20210526"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eksctl-test-cluster"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.19.6, docker: 19.03.13ce-1.amzn2, containerd: 1.4.1-2.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.9283338"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0e8bc4c2702c894d1"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "eks-80bce954-fcc1-8a48-76d3-2679b52b652e"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 3, 2021 4:18:04 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 3, 2021 4:18:02 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8832.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "25597.447"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-name : ng-2cad2871"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-type : managed"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : eks-80bce954-fcc1-8a48-76d3-2679b52b652e"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-44dd23d7-fc22-645c-841a-0b88f9918c01"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-00194bbe388a480bc"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:eks:cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : ng-2cad2871"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eksctl-test-cluster : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eksctl-test-cluster : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : eksctl-test-cluster-ng-2cad2871-Node"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0485764aa52b8b360"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 03, 2021 4:18:02 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.9283338"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "eks-key"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "22.268665"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eks-cluster-sg-eksctl-test-cluster-1345879230"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eksctl-eksctl-test-cluster-nodegroup-ng-2cad2871-remoteAccess"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "7d7ce230-8dff-4e44-a0f1-dd6253b75a2b",
"name": "sample-webapp",
"href": "/systems/7d7ce230-8dff-4e44-a0f1-dd6253b75a2b",
"resource_id": "us-west-1/default/sample-webapp",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "300",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "10"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-west-1:145525148011:task-definition/console-sample-app-static:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "1024"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "1024"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "console-sample-app-static:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "1"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "300"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "300"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "default"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "300"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "2048"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "simple-app:10"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "simple-app:300"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "1"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-west-1"
}
]
},
{
"id": "135f17f1-0356-3849-ac54-00d8bf67d8bb",
"name": "i-05bc5b2e9d394b9cd",
"href": "/systems/135f17f1-0356-3849-ac54-00d8bf67d8bb",
"resource_id": "i-05bc5b2e9d394b9cd",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 18, 2023 9:38:50 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 18, 2023 9:38:50 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "29f58a02-6709-4f4d-99f1-699c68f74462",
"name": "mar-mix-asg",
"href": "/systems/29f58a02-6709-4f4d-99f1-699c68f74462",
"resource_id": "14d5abb7-c09f-4077-bf88-46cb22423681",
"type": "asg",
"platform_model": "N/A",
"platform": "AWS",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "mark-mix-asg"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0fc61db8544a617ed"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20200304.0-x86_64-gp2"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20200304.0 x86_64 hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-62cb7c04"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 13, 2020 3:32:29 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "true"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "fe60891d-c7d7-4b64-a776-57cefb232b8c",
"name": "win-cp",
"href": "/systems/fe60891d-c7d7-4b64-a776-57cefb232b8c",
"resource_id": "cc65b5fc-d48c-4ad9-975d-9fe119b3abdc",
"type": "asg",
"platform_model": "t3.2xlarge",
"platform": "AWS",
"total_physical_cpus": "8",
"cores_per_cpu": "1",
"memory": "35200",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "35200"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "8.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "184"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "35200.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : myang"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:50 EDT"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 28, 2022 6:18:14 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-mark-win-mix-ecsinstancelc-0wji0hbqutql"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "8"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.2xlarge"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "e23ca001-1946-411a-a68c-db6ab9061463"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-003358e9e27fe2a7a"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "f7ca542b-0798-3cd7-b61d-d315fca26556",
"name": "i-037af4f90dff76bbd",
"href": "/systems/f7ca542b-0798-3cd7-b61d-d315fca26556",
"resource_id": "i-037af4f90dff76bbd",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.8333335"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 29, 2023 2:11:06 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 29, 2023 2:11:06 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "228025.53"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 29 2023, 02:39:00 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 29, 2023 2:11:06 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.8333335"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "162.67001"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "539a24fa-9fc7-4eb0-aed3-db632838b6d1",
"name": "i-066b3b7ca334bb567",
"href": "/systems/539a24fa-9fc7-4eb0-aed3-db632838b6d1",
"resource_id": "i-066b3b7ca334bb567",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Adhere to the launch template"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 14, 2021 10:04:27 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 14, 2021 10:04:26 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Adhere to the launch template"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-01472aa516ce22661"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-8fd908f9"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 14, 2021 10:04:26 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "a5bf15a7-1fb6-3227-add8-46e96d8a9abb",
"name": "eks-test_node_group_2-14c46a2e-42df-860d-04ce-a2b757ce7019",
"href": "/systems/a5bf15a7-1fb6-3227-add8-46e96d8a9abb",
"resource_id": "022f5796-c69f-447c-973b-3fc047bf26d6",
"type": "asg",
"platform_model": "t3.small",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "2176",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "eks-14c46a2e-42df-860d-04ce-a2b757ce7019"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.9686556"
},
{
"id": "attr_CurrentMaxLocalDiskIOThroug",
"name": "Current Max Local Disk IO Throughput (Bytes)",
"value": "21750000"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-06-23 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-07c9c86f18d0ff01e"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.27-v20230607"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eks-test-cluster-2023"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_CurrentMaxLocalDiskIOOperat",
"name": "Current Max Local Disk IO Operations (IOPS)",
"value": "1000"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.27.1, containerd: 1.6.*)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.79"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.8050003"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3.small-2X2"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "46.0"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2176"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "23872.238"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eks-test-cluster-2023"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : test_node_group_2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eks-test-cluster-2023 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eks-test-cluster-2023 : owned"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 19, 2023 3:54:15 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.8050003"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "15.535667"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.small"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "c4b49124-0c6b-404b-818f-d9449379018d"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "1000"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "21750000"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "b94da8be-700f-3717-9215-5175c2249702",
"name": "i-02b099cfc50fc6994",
"href": "/systems/b94da8be-700f-3717-9215-5175c2249702",
"resource_id": "i-02b099cfc50fc6994",
"type": "vm",
"platform_model": "t3.small",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-07c9c86f18d0ff01e"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.27-v20230607"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eks-test-cluster-2023"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.27.1, containerd: 1.6.*)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.8050003"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "eks-test_node_group_2-14c46a2e-42df-860d-04ce-a2b757ce7019"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 19, 2023 3:54:22 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 19, 2023 3:54:21 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "23872.238"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : eks-test_node_group_2-14c46a2e-42df-860d-04ce-a2b757ce7019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-3784e2a6-a3b7-e1bc-0e30-8c82d74dec9d"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0685e473992f62cb7"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:eks:cluster-name : eks-test-cluster-2023"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eks-test-cluster-2023"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : test_node_group_2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eks-test-cluster-2023 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eks-test-cluster-2023 : owned"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 19, 2023 3:54:21 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.8050003"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "15.535667"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eks-cluster-sg-eks-test-cluster-2023-1455543027"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "03f3f60f-59d7-3123-8ad9-dfb6ae5871f1",
"name": "i-04bc97964b2c3d430",
"href": "/systems/03f3f60f-59d7-3123-8ad9-dfb6ae5871f1",
"resource_id": "i-04bc97964b2c3d430",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 12, 2023 4:35:48 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 12, 2023 4:35:48 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 18 2023, 10:50:28 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 12, 2023 4:35:48 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "4207084e-6fd9-374b-9d0a-e623d5d2f40e",
"name": "i-0ee32b91ebd8eb47a",
"href": "/systems/4207084e-6fd9-374b-9d0a-e623d5d2f40e",
"resource_id": "i-0ee32b91ebd8eb47a",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 3, 2023 6:10:32 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 3, 2023 6:10:32 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 03 2023, 02:38:15 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 03, 2023 6:10:32 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "a60ad9e4-4184-4b79-9a92-7a7009e505bb",
"name": "spot",
"href": "/systems/a60ad9e4-4184-4b79-9a92-7a7009e505bb",
"resource_id": "0838f71e-b882-489b-9b42-8dcaf49da189",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-aff65ad2"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2017.09.l-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Owner"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.l x86_64 ecs hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_MaxSpotPrice",
"name": "Maximum Spot Price",
"value": "0.0039"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Engineering"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Owner"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 18, 2019 7:12:59 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "spot"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "spotcopycopy"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "Engineering"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-56384221"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "6798024c-4cfa-3bca-8de9-0e33b5b04f18",
"name": "i-0c7753394437dddc6",
"href": "/systems/6798024c-4cfa-3bca-8de9-0e33b5b04f18",
"resource_id": "i-0c7753394437dddc6",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 29, 2023 4:54:06 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 29, 2023 2:33:00 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "0177510b-7c6e-37d2-b6ef-779902c41ec4",
"name": "eks-test_node_group-dac46a2c-b96a-a9a7-cea0-9b89e3a1c520",
"href": "/systems/0177510b-7c6e-37d2-b6ef-779902c41ec4",
"resource_id": "e6287b34-cd66-41e3-85f4-96b3737a548a",
"type": "asg",
"platform_model": "t3a.medium",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4352",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "eks-dac46a2c-b96a-a9a7-cea0-9b89e3a1c520"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "1.0162114"
},
{
"id": "attr_CurrentMaxLocalDiskIOThroug",
"name": "Current Max Local Disk IO Throughput (Bytes)",
"value": "43750000"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-06-23 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-07c9c86f18d0ff01e"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.27-v20230607"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eks-test-cluster-2023"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_CurrentMaxLocalDiskIOOperat",
"name": "Current Max Local Disk IO Operations (IOPS)",
"value": "2000"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.27.1, containerd: 1.6.*)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.79"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.198287"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3a.medium-2X4"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "37.7"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "4352"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "37.67"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4352.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "14926.288"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eks-test-cluster-2023"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : test_node_group"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eks-test-cluster-2023 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eks-test-cluster-2023 : owned"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 19, 2023 3:50:52 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "2"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.198287"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "19.923252"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3a.medium"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "66390f3a-f5fa-4c40-bf80-f17a469acb01"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "2000"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "43750000"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "3f2349a4-719a-4ef7-91e6-61ca91243a39",
"name": "tem1_3",
"href": "/systems/3f2349a4-719a-4ef7-91e6-61ca91243a39",
"resource_id": "i-04223881961283759",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "8.720979"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.3607488"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "8.720979"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "test-mixed"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 15, 2021 6:13:47 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 15, 2021 6:13:46 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "12894.706"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : test-mixed"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-3a546ffd-21df-2fd9-26ba-8b22667673db"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0ea0cc4cc58bc43b4"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : tem1_3"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 15, 2021 6:13:46 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.3607488"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "temp"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "24.906502"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-86"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "c3bb8749-8ba6-457a-958f-470a10f981c8",
"name": "test-service",
"href": "/systems/c3bb8749-8ba6-457a-958f-470a10f981c8",
"resource_id": "us-east-1/default/test-service",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "300",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "10"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/console-sample-app-static:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "console-sample-app-static:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "1"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "300"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "300"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "default"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "300"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "simple-app:10"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "simple-app:300"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "ae70a454-9846-4b5e-a8c2-c7bb6e66ced9",
"name": "memory-used",
"href": "/systems/ae70a454-9846-4b5e-a8c2-c7bb6e66ced9",
"resource_id": "19f9ef24-05ba-492b-a7a3-1d697ee71528",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupInServiceInstances, GroupMaxSize, GroupMinSize, GroupTotalInstances, GroupDesiredCapacity, GroupPendingInstances, GroupTerminatingInstances, GroupStandbyInstances"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.21315889"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0b898040803850657"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190618-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "8.887572"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190618 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.1517506"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "8.887572"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 15, 2019 3:09:39 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "memory-used"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "8939.404"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.1517506"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "18.171585"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-00d33387509b9c423"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "d73b7898-a4a2-4f2d-aea8-a7adda885241",
"name": "maria-fargate-service",
"href": "/systems/d73b7898-a4a2-4f2d-aea8-a7adda885241",
"resource_id": "us-east-1/maria-cluster/maria-fargate-service",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "512",
"attributes": [
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/maria-fargate-sample:2"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "256"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "256"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "maria-fargate-sample:2"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "0"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "fargate"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "maria-cluster"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "512"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "512"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "09910615-80eb-4618-ab7e-0a276e406e46",
"name": "i-03e6b8b6427bdb683",
"href": "/systems/09910615-80eb-4618-ab7e-0a276e406e46",
"resource_id": "i-03e6b8b6427bdb683",
"type": "vm",
"platform_model": "c4.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4096",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-10-26 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-c481fad3"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2016.09.0.20160923-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.09.0.20160923 x86_64 hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "host"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Oct 26, 2016 6:10:44 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 26, 2016 6:10:43 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 26, 2016 6:10:43 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-38"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "b4164d7a-170c-3af3-b016-3782d0c297e2",
"name": "i-0585369a3f91deb7e",
"href": "/systems/b4164d7a-170c-3af3-b016-3782d0c297e2",
"resource_id": "i-0585369a3f91deb7e",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.4981666"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 19, 2023 12:22:48 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 19, 2023 12:22:48 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "12492.428"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 19, 2023 12:22:48 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.4981666"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "12.253334"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "3c1b0b52-d3ba-4ccb-ba5b-e5c08e377013",
"name": "i-00f53b48b827b8482",
"href": "/systems/3c1b0b52-d3ba-4ccb-ba5b-e5c08e377013",
"resource_id": "i-00f53b48b827b8482",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-05-06 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** No Match in Catalog ***"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 6, 2023 5:05:31 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Unable to Process"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 06 2023, 04:55:26 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 06, 2023 2:39:16 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
}
]
},
{
"id": "66879baa-5747-3032-ba4f-4ca754a9dd73",
"name": "i-0d64fcc85aaccd784",
"href": "/systems/66879baa-5747-3032-ba4f-4ca754a9dd73",
"resource_id": "i-0d64fcc85aaccd784",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 17, 2023 4:53:35 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 17, 2023 2:32:44 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
}
]
},
{
"id": "59fe22a0-8dc2-4256-b0b6-3c5bfdeda77f",
"name": "EC2ContainerService-Calsoft-EcsInstanceAsg-1HBH89HP6AEJN",
"href": "/systems/59fe22a0-8dc2-4256-b0b6-3c5bfdeda77f",
"resource_id": "13437763-0cf3-4b0a-855f-25f9a383796f",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2017-06-28 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-04351e12"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2017.03.d-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.03.d x86_64 ecs hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-2bb90352"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-Calsoft/90805c60-5c06-11e7-9023-500c217b1cd2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-Calsoft"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-Calsoft"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 28, 2017 1:35:43 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-calsoft-ecsinstancelc-15m3z7w0asclk"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-2365d552"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-Calsoft/90805c60-5c06-11e7-9023-500c217b1cd2"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "757f3c5e-94fb-4a30-98ae-c26f97146fcc",
"name": "tom-vpc-m1.small",
"href": "/systems/757f3c5e-94fb-4a30-98ae-c26f97146fcc",
"resource_id": "i-019b8705b588a8b8b",
"type": "vm",
"platform_model": "m1.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1856",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-03-08 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-97785bed"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2017.09.1.20180115-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.1.20180115 x86_64 hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 8, 2018 8:39:48 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 8, 2018 8:39:47 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "9.2"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1856.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:actual-workload-pattern : https://acme.densify.com/workload/X4BQN6774DY8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:ideal-instance-type : t2.medium"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:monthly-savings-potential : 192"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:predicted-uptime : 0.85"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:recommended-family : t2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:recommended-size : medium"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:recommend-RI-coverage : Yes"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:remediation-effort : Low"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:required-cpus : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:required-memory : 3328"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:sizing-basis : Sized via actual workload data"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-ideal-instance-type : t2.small"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-monthly-savings-potential : $22.29"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-predicted-uptime : 100%"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-recommended-family : t2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-recommended-size : small"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-recommend-RI-coverage : Yes"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-remediation-effort : Low"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-required-cpus : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-required-memory : 2.1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-sizing-basis : No Memory Utilization Data"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-workload-pattern-id : e05ef2c3-9cdf-4127-a714-076b33f93ab8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "name : tom-m1-small-vpc"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : tom-vpc-m1.small"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "network : vpc"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "url : http://www.densify.com"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 08, 2018 8:39:47 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "aws-ec2-t4"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-63"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "c7451810-9b3d-4dc4-a5c4-1cd460f116cf",
"name": "eks-80bce954-fcc1-8a48-76d3-2679b52b652e",
"href": "/systems/c7451810-9b3d-4dc4-a5c4-1cd460f116cf",
"resource_id": "902de86b-4275-412f-af9b-8ed7bbcf9949",
"type": "asg",
"platform_model": "m5.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "8832",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "eks-80bce954-fcc1-8a48-76d3-2679b52b652e"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "1.8224148"
},
{
"id": "attr_CurrentMaxLocalDiskIOThroug",
"name": "Current Max Local Disk IO Throughput (Bytes)",
"value": "81250000"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "1342177280"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0d74628ef4e6ed5b6"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.19-v20210526"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eksctl-test-cluster"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "1342177280"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_CurrentMaxLocalDiskIOOperat",
"name": "Current Max Local Disk IO Operations (IOPS)",
"value": "3600"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.19.6, docker: 19.03.13ce-1.amzn2, containerd: 1.4.1-2.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.7550004"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "m5.large-2X9"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "75.3"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0e8bc4c2702c894d1"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "8832"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "2"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8832.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "13930.06"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : ng-2cad2871"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eksctl-test-cluster : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eksctl-test-cluster : owned"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 3, 2021 4:17:55 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.7550004"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "15.441335"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "m5.large"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "b251e9c6-1d10-4c9a-8714-41beb68752b8"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "3600"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "81250000"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "469cca07-db63-419d-8676-e654a4e08fd9",
"name": "EC2ContainerService-test-cluster-EcsInstanceAsg-CYCIPFA9RM2S",
"href": "/systems/469cca07-db63-419d-8676-e654a4e08fd9",
"resource_id": "41546fbd-df5a-4f41-98d7-d609650f5346",
"type": "asg",
"platform_model": "t3.small",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "2176",
"infrastructure_group": {
"id": "06ea40bf-891b-4bfd-b2a9-1197c65493fd",
"name": "us-east-1a",
"href": "/infrastructure-groups/06ea40bf-891b-4bfd-b2a9-1197c65493fd"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.41770342"
},
{
"id": "attr_CurrentMaxLocalDiskIOThroug",
"name": "Current Max Local Disk IO Throughput (Bytes)",
"value": "21750000"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0b22c910bce7178b6"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "0.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_CurrentMaxLocalDiskIOOperat",
"name": "Current Max Local Disk IO Operations (IOPS)",
"value": "1000"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20200603 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.8577836"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "0.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3.small-2X2"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "46.0"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2176"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "9095.568"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-test-cluster/fffa0130-aa88-11ea-b5d5-0ea47a628cf7"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-test-cluster"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:49 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 9, 2020 7:40:22 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-test-cluster-ecsinstancelc-1vkh7luz5hsmf"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.8577836"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "17.022833"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.small"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "c4b49124-0c6b-404b-818f-d9449379018d"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "250"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "5375000"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-07fc16a00f14d6248"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-test-cluster/fffa0130-aa88-11ea-b5d5-0ea47a628cf7"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "0d42440e-134e-4b89-8a3f-b8e015309b51",
"name": "mark-lin-t2micro",
"href": "/systems/0d42440e-134e-4b89-8a3f-b8e015309b51",
"resource_id": "i-026fe99d372b89e8e",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "fa0485c7-2bb3-44b0-b14b-c0c0aa780056",
"name": "us-east-2c",
"href": "/infrastructure-groups/fa0485c7-2bb3-44b0-b14b-c0c0aa780056"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.054947186"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-05-09 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-08333bccc35d71140"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "al2023-ami-2023.0.20230503.0-kernel-6.1-x86_64"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2023 ami 2023.0.20230503.0 x86_64 hvm kernel-6.1"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.5164815"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 9, 2023 6:50:51 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 2, 2023 9:33:49 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_7",
"name": "Cloud Account Name",
"value": "test-intl-1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "779.8626"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : mark-lin-t2micro"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-c8361f82"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:51 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 09, 2023 6:50:50 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Recos suppressed by integration until 2024-04-13 : Suppressed to test integration"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.5164815"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "mark-test-key"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "5.2895"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-27"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "0f54a1ef-9b2d-43c5-95c7-380ad61d9231",
"name": "mariadb-multiaz",
"href": "/systems/0f54a1ef-9b2d-43c5-95c7-380ad61d9231",
"resource_id": "db-ypjeuu47e7exgq5tqmeqmqo3sy",
"type": "rds",
"platform_model": "db.t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"infrastructure_group": {
"id": "eb7a6d1b-b6a2-4ed5-b5b3-f49a9582fbb6",
"name": "us-east-1c",
"href": "/infrastructure-groups/eb7a6d1b-b6a2-4ed5-b5b3-f49a9582fbb6"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "4.117726"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-01-18 00:00:00"
},
{
"id": "attr_maintenance_window",
"name": "Maintenance Window",
"value": "sat:09:09-sat:09:39"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "78.47421"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_storage_type",
"name": "Storage Type",
"value": "aurora"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "8.198422"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "21.340794"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "78.47421"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "db.t2.medium-2X4"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "36.8"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "4352"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.RDS.CLUSTERID",
"name": "__RDS Cluster Id",
"value": "mariadb-multiaz-cluster"
},
{
"id": "VE.AWS.RDS.ENDPOINTID",
"name": "__RDS Endpoint Id",
"value": "z2r2itugpm61am"
},
{
"id": "VE.AWS.RDS.REPLICATIONROLE",
"name": "__RDS Replication Role",
"value": "reader"
},
{
"id": "attr_7",
"name": "Cloud Account Name",
"value": "rds-intl-4"
},
{
"id": "attr_backup_retention_period",
"name": "Backup Retention Period",
"value": "1"
},
{
"id": "attr_backup_window",
"name": "Backup Window",
"value": "09:46-10:16"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "5.00392E-4"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "2304.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "workload-type : other"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:08 EDT"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jan 18, 2018 7:24:30 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "general-public-license"
},
{
"id": "VE.AWS.RDS.ENDPOINTADDRESS",
"name": "__RDS Endpoint Address",
"value": "mariadb-multiaz.ceuqka6azq3r.us-east-1.rds.amazonaws.com"
},
{
"id": "VE.AWS.RI.RDSMULTIAZ",
"name": "__ RDS Multi-AZ Deployment",
"value": "false"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "21.340794"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "db.t2.medium"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "5a7a8712-8e0e-47b0-91a7-e231ff9f6bfd"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "d4355863-4e36-4dde-94b8-235f848cefc7",
"name": "hello_w_test",
"href": "/systems/d4355863-4e36-4dde-94b8-235f848cefc7",
"resource_id": "us-east-2/tom-ecs-cluster/hello_w_test",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "600",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "20"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-2:209726931496:task-definition/hello_world:6"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_task_container_mem_resv",
"name": "__Container Memory Reservation",
"value": "600"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "hello_world:6"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "2"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "600"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "500"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "tom-ecs-cluster"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "20"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "500"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "2"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "maria-wordpress:10"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "mysql:10"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "mysql:500"
},
{
"id": "VE.Container_MEM_RES_MiB",
"name": "__Memory Reservation",
"value": "maria-wordpress:300"
},
{
"id": "VE.Container_MEM_RES_MiB",
"name": "__Memory Reservation",
"value": "mysql:300"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "1"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "71532c0c-5947-4b4c-9f74-1d95bfcd27a4",
"name": "i-03397e74a8eef80fd",
"href": "/systems/71532c0c-5947-4b4c-9f74-1d95bfcd27a4",
"resource_id": "i-03397e74a8eef80fd",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.1661203"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Mixed_instance_types"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 27, 2023 8:21:20 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 27, 2023 8:21:20 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "320.91498"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Mixed_instance_types"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-01472aa516ce22661"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:49 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 27, 2023 8:21:20 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.1661203"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.33366668"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "6b36c9d5-ffa3-4eba-979b-e80073818492",
"name": "sguci-no-image-2-asg",
"href": "/systems/6b36c9d5-ffa3-4eba-979b-e80073818492",
"resource_id": "5220f968-0c95-4f46-a066-26b90281c9ac",
"type": "asg",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupTerminatingCapacity, GroupTerminatingInstances, GroupStandbyCapacity, WarmPoolMinSize, GroupDesiredCapacity, GroupPendingCapacity, GroupTotalCapacity, GroupMinSize, WarmPoolWarmedCapacity, WarmPoolDesiredCapacity, GroupAndWarmPoolDesiredCapacity, Warm"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2022-06-08 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 8, 2022 8:38:52 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "sguci-no-image-2-launch-tmpl"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-0276c377cd03a4d01"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "a333d495-87c9-474c-9e31-94916c0dffe9",
"name": "Attr_Test_Maria",
"href": "/systems/a333d495-87c9-474c-9e31-94916c0dffe9",
"resource_id": "i-071386a536c22a542",
"type": "vm",
"platform_model": "t1.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "672",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "CLD.COST.CENTER",
"name": "Cost Center",
"value": "Cost Center 123"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2017-04-19 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-27ce4931"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-pv-2017.03.0.20170401-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Owner Maria 2"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "145525148011"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.03.0.20170401 x86_64 pv ebs"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 19, 2017 6:55:55 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 19, 2017 6:55:55 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "672.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "!@#$%^&*()_+,.<>;\"'|\\{}_- : aaa"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit222 : Business Unit 222"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Cost Center : Cost Center 123"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Abcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghi"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Dept : Replace Dep"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Attr_Test_Maria"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Operational Environment 1 : Operational Environment 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Owner Maria 2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Product Code 1 : my xxx code 1"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 09:00:31 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "paravirtual"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 19, 2017 6:55:55 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_2",
"name": "Department",
"value": "Abcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstu"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-1"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "e64b8200-5b32-48f9-acb5-622652105889",
"name": "eksctl-test-cluster-ng-2cad2871-Node",
"href": "/systems/e64b8200-5b32-48f9-acb5-622652105889",
"resource_id": "i-060767c6bfc475bc3",
"type": "vm",
"platform_model": "m5.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "8832",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0d74628ef4e6ed5b6"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.19-v20210526"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eksctl-test-cluster"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.19.6, docker: 19.03.13ce-1.amzn2, containerd: 1.4.1-2.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.3433337"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0e8bc4c2702c894d1"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "eks-80bce954-fcc1-8a48-76d3-2679b52b652e"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 3, 2021 4:18:04 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 3, 2021 4:18:03 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8832.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "25738.266"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-name : ng-2cad2871"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-type : managed"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : eks-80bce954-fcc1-8a48-76d3-2679b52b652e"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-ee578b57-f688-6cf4-0692-2100442252e1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-00194bbe388a480bc"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:eks:cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : ng-2cad2871"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eksctl-test-cluster : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eksctl-test-cluster : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : eksctl-test-cluster-ng-2cad2871-Node"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0e7011aced902660c"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 03, 2021 4:18:03 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.3433337"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "eks-key"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "22.144583"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eks-cluster-sg-eksctl-test-cluster-1345879230"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eksctl-eksctl-test-cluster-nodegroup-ng-2cad2871-remoteAccess"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "edc4dd0a-b6c0-347d-becd-ecd0e721247c",
"name": "i-09f486af72ba8abaf",
"href": "/systems/edc4dd0a-b6c0-347d-becd-ecd0e721247c",
"resource_id": "i-09f486af72ba8abaf",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 29, 2023 5:47:04 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 29 2023, 02:39:00 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 29, 2023 2:32:58 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "43267a6c-003b-4b83-abae-0369afac0bcf",
"name": "ECS Instance - EC2ContainerService-ECS-t2-small",
"href": "/systems/43267a6c-003b-4b83-abae-0369afac0bcf",
"resource_id": "i-0c712c2d4b97233cb",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-689bc208"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2016.09.g-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "145525148011"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.09.g x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.43335187"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-e47cc480"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "EC2ContainerService-ECS-t2-small-EcsInstanceAsg-WQLT6I3LWXOM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 28, 2017 7:52:05 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 28, 2017 7:52:04 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "48.360336"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : EC2ContainerService-ECS-t2-small-EcsInstanceAsg-WQLT6I3LWXOM"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-west-1:145525148011:stack/EC2ContainerService-ECS-t2-small/0490bae0-2c4c-11e7-9c34-503f2fe15236"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-ECS-t2-small"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-ECS-t2-small"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-4b792d2f"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 01:03:57 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 28, 2017 7:52:04 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-west-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.43335187"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.263"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "EC2ContainerService-ECS-t2-small-EcsSecurityGroup-1GSRK3DXB4IOV"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-west-1:145525148011:stack/EC2ContainerService-ECS-t2-small/0490bae0-2c4c-11e7-9c34-503f2fe15236"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-west-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-west-1"
}
]
},
{
"id": "25f51fa5-83fb-4fef-b703-79ffc45fb3d4",
"name": "i-0a8542f59f44449e2",
"href": "/systems/25f51fa5-83fb-4fef-b703-79ffc45fb3d4",
"resource_id": "i-0a8542f59f44449e2",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 6, 2023 5:59:42 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 6, 2023 5:59:41 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 06 2023, 04:55:26 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 06, 2023 5:59:41 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "88eb466e-3856-33c8-8f6c-46673bb54912",
"name": "i-0764f658f72b31915",
"href": "/systems/88eb466e-3856-33c8-8f6c-46673bb54912",
"resource_id": "i-0764f658f72b31915",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.3358667"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 3, 2023 1:41:42 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 3, 2023 1:41:41 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1055.9364"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 03 2023, 02:38:15 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 03, 2023 1:41:41 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.3358667"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "3.9299998"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "ee4bc6b1-9661-4d96-a6cf-b794a4fa9026",
"name": "awu-cwagent-ubuntu-3",
"href": "/systems/ee4bc6b1-9661-4d96-a6cf-b794a4fa9026",
"resource_id": "i-008b9bf3ccf6890a6",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.21393794"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2020-06-09 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-085925f297f89fce1"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-20200408"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "32.218197"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "awu"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 18.04 lts, amd64 bionic image build on 2020-04-08"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.7330139"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "32.218197"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 9, 2020 4:37:31 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 9, 2020 4:37:30 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "2254.1646"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : awu-cwagent-ubuntu-3"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : awu"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 09, 2020 4:37:30 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.7330139"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "albin"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "8.805"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-92"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "b999a48c-cd41-3b20-a7f3-ef1022bc8d94",
"name": "i-04e47407d5d03d66f",
"href": "/systems/b999a48c-cd41-3b20-a7f3-ef1022bc8d94",
"resource_id": "i-04e47407d5d03d66f",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 12, 2023 5:29:51 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 12, 2023 2:33:10 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
}
]
},
{
"id": "41e254f6-3dd5-4590-ab9f-ef802d968da5",
"name": "ineal1",
"href": "/systems/41e254f6-3dd5-4590-ab9f-ef802d968da5",
"resource_id": "60397326-5572-45d8-846e-881992f35277",
"type": "asg",
"platform_model": "N/A",
"platform": "AWS",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2022-03-29 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "ineal"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Benchmark ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "-1.0"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "-1.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "10321.722"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Benchmark"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : ineal"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 29, 2022 8:42:02 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "28.257"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "ab24ab2e-3776-42cf-b054-c3c5efa53e8a",
"name": "i-02f2b533b52cf702e",
"href": "/systems/ab24ab2e-3776-42cf-b054-c3c5efa53e8a",
"resource_id": "i-02f2b533b52cf702e",
"type": "vm",
"platform_model": "t2.nano",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "544",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0de53d8956e8dcf80"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190313-x86_64-gp2"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190313 x86_64 hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-62cb7c04"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "test-overrides"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Nov 2, 2021 3:26:31 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Nov 2, 2021 3:26:30 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : test-overrides"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-ba5eeddf-0bdf-0dd9-86b2-2b2afe67cdcf"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-093f9b03344450a56"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-6e81d927"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Nov 02, 2021 3:26:30 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "a5726983-e3df-4fc9-8b4a-3beea24953a4",
"name": "EC2ContainerService-ohio-maria-cluster-EcsInstanceAsg-1XN56N7NWGSE",
"href": "/systems/a5726983-e3df-4fc9-8b4a-3beea24953a4",
"resource_id": "b59a1c47-3151-42eb-8c9c-44680346c6ad",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupTerminatingCapacity, GroupDesiredCapacity, GroupPendingCapacity, GroupPendingInstances, WarmPoolDesiredCapacity, GroupStandbyInstances, GroupAndWarmPoolDesiredCapacity, GroupMinSize, GroupTerminatingInstances, GroupMaxSize, GroupStandbyCapacity, Group"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.73778534"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-956e52f0"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2018.03.a-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "4.2553196"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.a x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "4.3861628"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "4.2553196"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "4545.717"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-ohio-maria-cluster/9297eb90-6d93-11e8-9546-503f3144f9c5"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-ohio-maria-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-ohio-maria-cluster"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 11, 2018 4:22:20 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-ohio-maria-cluster-ecsinstancelc-1gjuzrmdixksc"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "4.3861628"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "3.953083"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-388b3152"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-ohio-maria-cluster/9297eb90-6d93-11e8-9546-503f3144f9c5"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "d054a20e-d0ee-384d-9066-3abbc40794e4",
"name": "i-0717eafbf5fb17fea",
"href": "/systems/d054a20e-d0ee-384d-9066-3abbc40794e4",
"resource_id": "i-0717eafbf5fb17fea",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 8, 2023 5:33:40 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 08, 2023 2:32:30 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "9d24117c-6204-4040-8916-3f7d7cc9d6c5",
"name": "i-0e386a1eb9b984d7c",
"href": "/systems/9d24117c-6204-4040-8916-3f7d7cc9d6c5",
"resource_id": "i-0e386a1eb9b984d7c",
"type": "vm",
"platform_model": "t3.2xlarge",
"platform": "AWS",
"total_physical_cpus": "8",
"cores_per_cpu": "1",
"memory": "35200",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-014ddabf5947b9cbe"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220627 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.45732844"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "lin-cp"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 28, 2022 7:53:16 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 28, 2022 7:53:16 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "8.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "184"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "35200.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "8475.066"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : lin-cp"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : myang"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-d7333aaf"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 28, 2022 7:53:16 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "4"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.45732844"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "9.128584"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "AutoScaling-Security-Group-4"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "d88c72ec-1fbe-45f8-b88a-0c9da80f4c48",
"name": "i-0fef91852a9e46af2",
"href": "/systems/d88c72ec-1fbe-45f8-b88a-0c9da80f4c48",
"resource_id": "i-0fef91852a9e46af2",
"type": "vm",
"platform_model": "t3.small",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "aalfonsoleon"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "anna-asg-mixed"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 20, 2021 7:57:52 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 20, 2021 7:57:51 PM"
},
{
"id": "CLD.INVENTORY.CODE",
"name": "Inventory Code",
"value": "1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "A"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : anna-asg-mixed"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-1af4e5d7-29fd-8f51-8c9a-83801e77760f"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-01472aa516ce22661"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Inventory Code : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Operational Environment : A"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : aalfonsoleon"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 20, 2021 7:57:51 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "d20e6781-e436-4c75-b39f-d043ed650fc3",
"name": "tem1_4",
"href": "/systems/d20e6781-e436-4c75-b39f-d043ed650fc3",
"resource_id": "i-0113b67377ee899e4",
"type": "vm",
"platform_model": "t3.micro",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-06-05 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 5, 2019 2:18:02 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Nov 12, 2019 2:06:03 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0ea0cc4cc58bc43b4"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : tem1_4"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 05, 2019 2:18:02 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "temp"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-86"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "d99dd761-17c8-422e-a340-78a4a57a7cef",
"name": "jltest-asg",
"href": "/systems/d99dd761-17c8-422e-a340-78a4a57a7cef",
"resource_id": "524e2a3d-af86-4b1a-84f3-c5c8af61709a",
"type": "asg",
"platform_model": "t3.nano",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "544",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "jlondon-template"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.0782625"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-04-21 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-02238ac43d6385ab3"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-kernel-5.10-hvm-2.0.20230307.0-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "5.0"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 kernel 5.10 ami 2.0.20230307.0 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.63334143"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3.nano-2X1"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "544"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "544.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "2890.9634"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 06 2023, 04:55:26 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 18, 2023 1:07:09 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "2"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.63334143"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "3.898167"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.nano"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "eb61c953-b02f-47eb-8bbf-dddf1447f5c4"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
}
]
},
{
"id": "5973ca84-70b1-498c-8e06-44fbd76e7fb2",
"name": "Test Instance 152",
"href": "/systems/5973ca84-70b1-498c-8e06-44fbd76e7fb2",
"resource_id": "i-0fb20642d484c568f",
"type": "vm",
"platform_model": "c4.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4096",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-10-28 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-c481fad3"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2016.09.0.20160923-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.09.0.20160923 x86_64 hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "host"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Oct 28, 2016 9:20:07 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 28, 2016 9:34:01 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Test Instance 152"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Schedule : qaz"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 28, 2016 9:20:07 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-39"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "aws:usertag_schedule",
"name": "Schedule",
"value": "qaz"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "99688759-a46e-4f2e-bebc-b3f126295991",
"name": "i-0b972c7f1926f75b3",
"href": "/systems/99688759-a46e-4f2e-bebc-b3f126295991",
"resource_id": "i-0b972c7f1926f75b3",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0de53d8956e8dcf80"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190313-x86_64-gp2"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190313 x86_64 hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-62cb7c04"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "test-overrides"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 24, 2023 9:15:53 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 24, 2023 9:15:53 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : test-overrides"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-ef37079f-3424-46a7-869a-2b20c5fc9a1a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-093f9b03344450a56"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-6e81d927"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 24, 2023 9:15:53 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "spot"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
}
]
},
{
"id": "b80098c1-8428-4a98-b122-4ef54eda6160",
"name": "myangwin2012",
"href": "/systems/b80098c1-8428-4a98-b122-4ef54eda6160",
"resource_id": "i-0b6116e5863691a2b",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.30864605"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2021-07-19 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00b8c4dc8b8281a68"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "69.13603"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "14.93"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "14.93"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.0639162"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "69.13603"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 19, 2021 1:49:59 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 2, 2023 9:31:33 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "2018.0034"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "myang : 2012"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : myangwin2012"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 19, 2021 1:49:58 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.0639162"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "myangawspair"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "8.198"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-95"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "53423e3c-ae32-3cfb-aed2-4de3d69c6349",
"name": "i-08ef8cdc53a270a93",
"href": "/systems/53423e3c-ae32-3cfb-aed2-4de3d69c6349",
"resource_id": "i-08ef8cdc53a270a93",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 15, 2023 5:59:56 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 15, 2023 5:59:55 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 20 2023, 12:10:30 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 15, 2023 5:59:55 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "4ba1b9a2-4e4c-4072-8cbb-125cf50b431d",
"name": "test-svc",
"href": "/systems/4ba1b9a2-4e4c-4072-8cbb-125cf50b431d",
"resource_id": "us-east-1/maria-cluster/test-svc",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "256",
"attributes": [
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/hello_world:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "128"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "128"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "hello_world:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "2"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "svc_tag : test"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "maria-cluster"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "256"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "256"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "846fa854-c0c2-4c08-85af-e189a34d57ee",
"name": "test-tags",
"href": "/systems/846fa854-c0c2-4c08-85af-e189a34d57ee",
"resource_id": "us-east-1/test-cluster/test-tags",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "128",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "10"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/console-sample-app-static:3"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "bu@oct14"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "2"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_task_container_mem_resv",
"name": "__Container Memory Reservation",
"value": "128"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "console-sample-app-static:3"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "128"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : bu@oct14"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "test-tag1014 : oct14"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "user:Department : test ecs department@oct14"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "300"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "test-cluster"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "300"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "simple-app:10"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "simple-app:300"
},
{
"id": "VE.Container_MEM_RES_MiB",
"name": "__Memory Reservation",
"value": "simple-app:128"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "614d186e-fdd3-419b-857e-e7639647fcc8",
"name": "ECS Instance - EC2ContainerService-default",
"href": "/systems/614d186e-fdd3-419b-857e-e7639647fcc8",
"resource_id": "i-0f1799f70587fb2a9",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-689bc208"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2016.09.g-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "145525148011"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.09.g x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.319519"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-700ab314"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "EC2ContainerService-default-EcsInstanceAsg-RV3KJ8J9H909"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 27, 2017 8:26:54 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 27, 2017 8:26:54 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "344.644"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : EC2ContainerService-default-EcsInstanceAsg-RV3KJ8J9H909"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-west-1:145525148011:stack/EC2ContainerService-default/b9cba5c0-2b87-11e7-9cd9-50faf0371429"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-default"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-default"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-7bd1841f"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 01:03:57 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 27, 2017 8:26:54 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-west-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.319519"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "1.57675"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "EC2ContainerService-default-EcsSecurityGroup-13ZDGEQ7D0K4C"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-west-1:145525148011:stack/EC2ContainerService-default/b9cba5c0-2b87-11e7-9cd9-50faf0371429"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-west-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-west-1"
}
]
},
{
"id": "7508df14-7297-4f63-bc78-e25709eb3fe7",
"name": "testdebug",
"href": "/systems/7508df14-7297-4f63-bc78-e25709eb3fe7",
"resource_id": "us-east-2/default/testdebug",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "256",
"attributes": [
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-2:209726931496:task-definition/myangdebug:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "256"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "256"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "myangdebug:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "1"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "default"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "256"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "256"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "1"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "3f21cee9-adbd-448e-8d17-0f774fa9fc65",
"name": "i-02c328b57eda358c0",
"href": "/systems/3f21cee9-adbd-448e-8d17-0f774fa9fc65",
"resource_id": "i-02c328b57eda358c0",
"type": "vm",
"platform_model": "t3.2xlarge",
"platform": "AWS",
"total_physical_cpus": "8",
"cores_per_cpu": "1",
"memory": "35200",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2021-06-07 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-09e67e426f25ce0d7"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-20210430"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "awu"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 20.04 lts, amd64 focal image build on 2021-04-30"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 7, 2021 3:46:54 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 7, 2021 3:46:53 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "8.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "184"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "35200.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : awu"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 07, 2021 3:46:53 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "4"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "albin"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "f24128dd-857c-388c-be79-c84423d7490d",
"name": "ECS Instance - EC2ContainerService-ohio-maria-cluster",
"href": "/systems/f24128dd-857c-388c-be79-c84423d7490d",
"resource_id": "i-0647fb8085c578a05",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-956e52f0"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2018.03.a-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.a x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "4.3861628"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "EC2ContainerService-ohio-maria-cluster-EcsInstanceAsg-1XN56N7NWGSE"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 12, 2023 4:07:32 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 12, 2023 4:07:31 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "4545.717"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : EC2ContainerService-ohio-maria-cluster-EcsInstanceAsg-1XN56N7NWGSE"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-ohio-maria-cluster/9297eb90-6d93-11e8-9546-503f3144f9c5"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-ohio-maria-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-ohio-maria-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-5a18ef33"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 12, 2023 4:07:31 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "4.3861628"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "3.953083"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "EC2ContainerService-ohio-maria-cluster-EcsSecurityGroup-18NALR33R21H0"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-ohio-maria-cluster/9297eb90-6d93-11e8-9546-503f3144f9c5"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "63935b6a-948f-4a00-a2ca-dbfc1ce673a5",
"name": "New Instance 1",
"href": "/systems/63935b6a-948f-4a00-a2ca-dbfc1ce673a5",
"resource_id": "i-07d3af583d28fd7d4",
"type": "vm",
"platform_model": "m4.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "8832",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-09-21 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-6869aa05"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2016.03.3.x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.03.3 x86_64 hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "host"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 21, 2016 5:24:47 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 21, 2016 5:24:47 AM"
},
{
"id": "CLD.PROJECT",
"name": "Project",
"value": "Demo"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "59.8"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8832.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : New Instance 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Project : Demo"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 21, 2016 5:24:47 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-29"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "a7106819-78b0-4a52-b9ee-6b621475f412",
"name": "ECS Instance - EC2ContainerService-test-cluster",
"href": "/systems/a7106819-78b0-4a52-b9ee-6b621475f412",
"resource_id": "i-0036bfe8b3a661645",
"type": "vm",
"platform_model": "t3.small",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0b22c910bce7178b6"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 18, 2022 2:41:30 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 18, 2022 2:41:29 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20200603 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.8577836"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "EC2ContainerService-test-cluster-EcsInstanceAsg-CYCIPFA9RM2S"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "9095.568"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : EC2ContainerService-test-cluster-EcsInstanceAsg-CYCIPFA9RM2S"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-test-cluster/fffa0130-aa88-11ea-b5d5-0ea47a628cf7"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-test-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:49 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 18, 2022 2:41:29 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.8577836"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "17.022833"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "EC2ContainerService-test-cluster-EcsSecurityGroup-16QX2YJTQXTXT"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-test-cluster/fffa0130-aa88-11ea-b5d5-0ea47a628cf7"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "6ced7edb-650c-4f15-80ec-d36278f6cec7",
"name": "eks summer2019",
"href": "/systems/6ced7edb-650c-4f15-80ec-d36278f6cec7",
"resource_id": "i-036c9368e55928691",
"type": "vm",
"platform_model": "t3a.medium",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4352",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0483887b9600d714d"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.21-v20220303"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eks-cluster-test-summer2019"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.21.5, docker: 20.10.7-5.amzn2, containerd: 1.4.6-8.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "7.8599024"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "eks-eabbfd16-97ae-8e7d-aeb2-85bbcbbcc8d2"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 8, 2022 8:55:57 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 8, 2022 8:55:56 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "37.67"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4352.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "21106.45"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : eks-eabbfd16-97ae-8e7d-aeb2-85bbcbbcc8d2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-6c5589ff-5400-6ed6-0c32-a382b374a060"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-04188607d066ebf24"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 3"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:eks:cluster-name : eks-cluster-test-summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eks-cluster-test-summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : test_node_group"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eks-cluster-test-summer2019 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eks-cluster-test-summer2019 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : eks summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : kgillan"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 10 2023, 02:38:54 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 08, 2022 8:55:56 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "7.8599024"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "60.203835"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eks-cluster-sg-eks-cluster-test-summer2019-946350621"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "976afd2d-4d11-4e9d-a586-59fb254e79bf",
"name": "i-02adf37bea9eee18c",
"href": "/systems/976afd2d-4d11-4e9d-a586-59fb254e79bf",
"resource_id": "i-02adf37bea9eee18c",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 12, 2023 2:55:39 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 12, 2023 12:21:53 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
}
]
},
{
"id": "29630f14-4369-4e19-a00a-83f17b3374fd",
"name": "anna-asg-mixed",
"href": "/systems/29630f14-4369-4e19-a00a-83f17b3374fd",
"resource_id": "2b55d224-4f65-4bf5-a284-343c98a084a5",
"type": "asg",
"platform_model": "N/A",
"platform": "AWS",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupMaxSize, WarmPoolWarmedCapacity, GroupTotalCapacity, GroupDesiredCapacity, GroupMinSize, GroupTotalInstances, GroupAndWarmPoolDesiredCapacity, WarmPoolTotalCapacity, GroupTerminatingInstances, GroupStandbyCapacity, WarmPoolPendingCapacity, GroupPendin"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "cal_template"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "4"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "edr"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "aalfonsoleon"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "CLD.INVENTORY.CODE",
"name": "Inventory Code",
"value": "1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "A"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : edr"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "BusinessUnit : edr"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Inventory Code : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Operational Environment : A"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : aalfonsoleon"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 9, 2019 2:11:58 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "true"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "3"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "2d8bc3a7-98dd-4bac-acb9-148002b9845b",
"name": "Densify Gateway Tom",
"href": "/systems/2d8bc3a7-98dd-4bac-acb9-148002b9845b",
"resource_id": "i-0d87edcd864820ac1",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.044283558"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-09-24 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-01945499792201081"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "7.4131336"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 24, 2018 1:33:18 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 24, 2018 1:33:17 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_7",
"name": "Cloud Account Name",
"value": "test-intl-3"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "57.405666"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Kubex Gateway Tom"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 24, 2018 1:33:17 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "7.4131336"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "densify-gateway-tom"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.263"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-71"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "b207870f-f1aa-3157-8d64-0b735f394b58",
"name": "i-072dd58705a4a7c2b",
"href": "/systems/b207870f-f1aa-3157-8d64-0b735f394b58",
"resource_id": "i-072dd58705a4a7c2b",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 22, 2023 6:09:06 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 22, 2023 6:09:05 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 22 2023, 02:35:30 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 22, 2023 6:09:05 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "3a49d5d9-387e-4404-8f99-ba5c6385f816",
"name": "ECS Instance - EC2ContainerService-default",
"href": "/systems/3a49d5d9-387e-4404-8f99-ba5c6385f816",
"resource_id": "i-036053e8345fe9e5a",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.93399"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "EC2ContainerService-default-EcsInstanceAsg-SXHCBSRBJOJ6"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 23, 2022 5:40:11 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 23, 2022 5:40:10 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "8612.674"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : EC2ContainerService-default-EcsInstanceAsg-SXHCBSRBJOJ6"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-default/3e31e6e0-aad0-11ec-88ee-024d7323ee20"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-default"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-default"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 23, 2022 5:40:10 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.93399"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "9.336333"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-default/3e31e6e0-aad0-11ec-88ee-024d7323ee20"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "c7ff637e-2a6e-4339-a999-bfda269bfcfb",
"name": "i-0a75df7b61fba0d0c",
"href": "/systems/c7ff637e-2a6e-4339-a999-bfda269bfcfb",
"resource_id": "i-0a75df7b61fba0d0c",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 27, 2023 6:00:41 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 27, 2023 6:00:40 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 31 2023, 09:19:23 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 27, 2023 6:00:40 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "1e696992-69aa-3b13-a281-b17ea1963d37",
"name": "i-0f1d971814fb2936a",
"href": "/systems/1e696992-69aa-3b13-a281-b17ea1963d37",
"resource_id": "i-0f1d971814fb2936a",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "15.451979"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 10, 2023 2:46:42 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 10, 2023 2:46:41 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "722558.56"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 10 2023, 02:38:54 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 10, 2023 2:46:41 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "15.451979"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "1616.55"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "91b702ef-a6cb-4e68-95fa-ccdbb3e8f08f",
"name": "i-0c8e2fea8c1f602dc",
"href": "/systems/91b702ef-a6cb-4e68-95fa-ccdbb3e8f08f",
"resource_id": "i-0c8e2fea8c1f602dc",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "7.7245226"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 21, 2023 10:59:36 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 21, 2023 10:59:35 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "326191.78"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 22 2023, 03:04:30 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 21, 2023 10:59:35 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "7.7245226"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "1106.6167"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "fec664e7-4eb7-4592-8760-ff79121eb626",
"name": "jltest-c6g",
"href": "/systems/fec664e7-4eb7-4592-8760-ff79121eb626",
"resource_id": "i-01ca865c7c424aced",
"type": "vm",
"platform_model": "c6g.medium",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.29414698"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-03-09 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-08dce1b4dac6e3211"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-kernel-5.10-hvm-2.0.20230307.0-arm64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "50.21"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "arm64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 lts arm64 kernel 5.10 ami 2.0.20230307.0 arm64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "51.94"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.6725"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "c6g.medium-1X2"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 9, 2023 9:33:50 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 4, 2023 6:46:51 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2176"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "44.16"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "10391.173"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : jltest-c6g"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-d7333aaf"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 06 2023, 04:55:34 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 09, 2023 9:33:50 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.6725"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "jltest"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "8.840126"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "c6g.medium"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "e6c6ab0e-63ce-470b-8319-8e5fdc2c08da"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-40"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
}
]
},
{
"id": "ecb4590b-30bf-4d2e-ade3-2b3d67b265ca",
"name": "myang001",
"href": "/systems/ecb4590b-30bf-4d2e-ade3-2b3d67b265ca",
"resource_id": "c4e5ac9d-4a4c-4937-a5e7-e3b7e8d422fa",
"type": "asg",
"platform_model": "t3.nano",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "544",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "myang-cw"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-02e136e904f3da870"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20211001.1-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20211001.1 x86_64 hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0ba97072"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "544"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "544.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Nov 12, 2021 3:33:43 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.nano"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "eb61c953-b02f-47eb-8bbf-dddf1447f5c4"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "3b817030-7731-4130-a4a4-234dc230edea",
"name": "Test-Service",
"href": "/systems/3b817030-7731-4130-a4a4-234dc230edea",
"resource_id": "us-east-1/calsoft/test-service",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "1024",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "100"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/test-tom-task-def:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "256"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "256"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "test-tom-task-def:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "1"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "fargate"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "1024"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "1024"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "calsoft"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "100"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "1024"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "2"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "1024"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "mysql:100"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "mysql:1024"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "11dca9a5-41bd-4aed-b478-ec149e29d835",
"name": "sample-webapp",
"href": "/systems/11dca9a5-41bd-4aed-b478-ec149e29d835",
"resource_id": "us-east-1/default/sample-webapp",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "300",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "10"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/console-sample-app-static:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "console-sample-app-static:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "3"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "300"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "300"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "default"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "300"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "simple-app:10"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "simple-app:300"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "5d6d21e4-3543-45a0-bdf8-8849d3b7d375",
"name": "i-04d88b881ccc56117",
"href": "/systems/5d6d21e4-3543-45a0-bdf8-8849d3b7d375",
"resource_id": "i-04d88b881ccc56117",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "41.333336"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 26, 2023 10:48:35 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 26, 2023 10:48:34 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "730827.5"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 31 2023, 09:19:23 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 26, 2023 10:48:34 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "41.333336"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "517.63336"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "11eee41e-3034-47f2-ba4b-6d043fdd4490",
"name": "i-08fcee9d4e6890fdb",
"href": "/systems/11eee41e-3034-47f2-ba4b-6d043fdd4490",
"resource_id": "i-08fcee9d4e6890fdb",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "26.073912"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 26, 2023 11:42:39 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 26, 2023 11:42:38 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1052179.4"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 31 2023, 09:19:23 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 26, 2023 11:42:38 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "26.073912"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "1514.2832"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "583cfa59-92ea-3461-9b9e-1a11877d3d20",
"name": "i-0893ed465e785f00f",
"href": "/systems/583cfa59-92ea-3461-9b9e-1a11877d3d20",
"resource_id": "i-0893ed465e785f00f",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "12.768188"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 4, 2023 11:01:30 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 4, 2023 11:01:29 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "264739.8"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 05 2023, 02:35:50 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 04, 2023 11:01:29 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "12.768188"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "137.57889"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "2dd8adac-30a5-43b9-8bd8-0ab476b9e404",
"name": "EC2ContainerService-default-EcsInstanceAsg-SXHCBSRBJOJ6",
"href": "/systems/2dd8adac-30a5-43b9-8bd8-0ab476b9e404",
"resource_id": "e0bbe755-c4df-4582-b05e-c90e832a448d",
"type": "asg",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.36523655"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2022-03-23 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "0.20100503"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_product_codes",
"name": "Product Codes",
"value": "Val1"
},
{
"id": "attr_product_codes",
"name": "Product Codes",
"value": "Val2"
},
{
"id": "attr_product_codes",
"name": "Product Codes",
"value": "Val3"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.93399"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "0.20100503"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.small-1X2"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2176"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "8612.674"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1024.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-default/3e31e6e0-aad0-11ec-88ee-024d7323ee20"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-default"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-default"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 23, 2022 5:40:03 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-default-ecsinstancelc-gwt8uetxtezv"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.93399"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "9.336333"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.small"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "3d4d9ae2-d571-4f24-a704-26628f303662"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-055cead5c56ed0a73"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-default/3e31e6e0-aad0-11ec-88ee-024d7323ee20"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "a1104f13-48cb-48e8-8c6c-dff5ea7fbc4b",
"name": "i-01b4531fc4199e747",
"href": "/systems/a1104f13-48cb-48e8-8c6c-dff5ea7fbc4b",
"resource_id": "i-01b4531fc4199e747",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 15, 2023 6:13:37 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 15, 2023 6:13:36 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 15 2023, 05:31:21 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 15, 2023 6:13:36 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "e46f8261-7d58-428f-86a2-5671c64f0678",
"name": "i-09bbe1dbdacb19faf",
"href": "/systems/e46f8261-7d58-428f-86a2-5671c64f0678",
"resource_id": "i-09bbe1dbdacb19faf",
"type": "vm",
"platform_model": "t3.small",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "aalfonsoleon"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "anna-asg-mixed"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 20, 2021 7:49:44 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 20, 2021 7:49:43 PM"
},
{
"id": "CLD.INVENTORY.CODE",
"name": "Inventory Code",
"value": "1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "A"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : anna-asg-mixed"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-38deedf5-a37d-257b-a692-ab221b0a704c"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-01472aa516ce22661"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Inventory Code : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Operational Environment : A"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : aalfonsoleon"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 20, 2021 7:49:43 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "7cf7a647-22c3-4b51-ab3b-2cd1455682c5",
"name": "ECS Instance - EC2ContainerService-maria-cluster",
"href": "/systems/7cf7a647-22c3-4b51-ab3b-2cd1455682c5",
"resource_id": "i-0f6cf7d6fb19b0d60",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-aff65ad2"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2017.09.l-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "ASG-EC2ContainerService-maria-cluster-EcsInstanceAsg-K1YL0P6M5K4M"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.l x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.4692287"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "EC2ContainerService-maria-cluster-EcsInstanceAsg-K1YL0P6M5K4M"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 9, 2020 7:30:06 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 9, 2020 7:30:05 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1011.85535"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : EC2ContainerService-maria-cluster-EcsInstanceAsg-K1YL0P6M5K4M"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-maria-cluster/f5d8d460-4a4f-11e8-9293-500c524058f2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-maria-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-maria-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : ASG-EC2ContainerService-maria-cluster-EcsInstanceAsg-K1YL0P6M5K4M"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 09, 2020 7:30:05 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.4692287"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "5.0585833"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-62"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-maria-cluster/f5d8d460-4a4f-11e8-9293-500c524058f2"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "f0a518de-5dad-450b-86f6-0b8c4a02827d",
"name": "i-099ad57dc94f0e20c",
"href": "/systems/f0a518de-5dad-450b-86f6-0b8c4a02827d",
"resource_id": "i-099ad57dc94f0e20c",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 22, 2023 5:18:37 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 22, 2023 2:34:44 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
}
]
},
{
"id": "cdf8440a-f87e-4e78-8913-4e70d986d843",
"name": "myang004",
"href": "/systems/cdf8440a-f87e-4e78-8913-4e70d986d843",
"resource_id": "1f049d98-0c38-4d12-a2ef-95b532ad3524",
"type": "asg",
"platform_model": "N/A",
"platform": "AWS",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "myang-ttt"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-02e136e904f3da870"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20211001.1-x86_64-gp2"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20211001.1 x86_64 hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Nov 12, 2021 3:35:51 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "true"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "23a75eda-c150-44b5-871f-1542d63e000d",
"name": "Adhere to the launch template",
"href": "/systems/23a75eda-c150-44b5-871f-1542d63e000d",
"resource_id": "d12a067c-17fe-4ac6-8942-954daed8f50f",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "94819810-9df0-4357-88e4-9b57cbd2f1f0",
"name": "us-east-1d",
"href": "/infrastructure-groups/94819810-9df0-4357-88e4-9b57cbd2f1f0"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupMaxSize, WarmPoolWarmedCapacity, GroupTotalCapacity, GroupInServiceCapacity, GroupMinSize, WarmPoolPendingCapacity, GroupPendingCapacity, GroupStandbyInstances, GroupTotalInstances, WarmPoolDesiredCapacity, WarmPoolMinSize, GroupAndWarmPoolTotalCapaci"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "cal_template"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.037018728"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "5000"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.8227147"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "2.0"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "321.21732"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:05 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 24, 2019 2:26:04 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.8227147"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.33366668"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "150"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "5000"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "90d98fb4-9feb-4334-9c5f-c3048e3ee358",
"name": "sguci-no-image-instance",
"href": "/systems/90d98fb4-9feb-4334-9c5f-c3048e3ee358",
"resource_id": "i-0f3cdace7a1f3cd27",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.116194524"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2022-06-08 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0f54d3fa6e91e7167"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.5987706"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 8, 2022 7:58:10 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 9, 2022 1:30:46 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "98629.41"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : sguci-no-image-instance"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 08, 2022 7:58:10 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.5987706"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "110.33117"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-12"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "c12a32ef-2786-4b9e-9de4-769a3c61d0b5",
"name": "lin-cp",
"href": "/systems/c12a32ef-2786-4b9e-9de4-769a3c61d0b5",
"resource_id": "f4e6a5e5-7865-40d8-bc78-9914e6f31106",
"type": "asg",
"platform_model": "t3.2xlarge",
"platform": "AWS",
"total_physical_cpus": "8",
"cores_per_cpu": "1",
"memory": "35200",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "3"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.728959"
},
{
"id": "attr_CurrentMaxLocalDiskIOThroug",
"name": "Current Max Local Disk IO Throughput (Bytes)",
"value": "86875000"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-014ddabf5947b9cbe"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "1342177280"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_CurrentMaxLocalDiskIOOperat",
"name": "Current Max Local Disk IO Operations (IOPS)",
"value": "4000"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220627 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.42277604"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3.2xlarge-8X34"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "143.2"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "35200"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "8.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "184"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "35200.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "3702.2148"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : myang"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "M"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 28, 2022 6:08:47 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "3"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-mark-lin-mix-ecsinstancelc-kwjimtyxt2ed"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "8"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.42277604"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "5.8280277"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.2xlarge"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "e23ca001-1946-411a-a68c-db6ab9061463"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "6000"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "135625000"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-003358e9e27fe2a7a"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "e35547c9-2ae7-42ab-ba7c-6974eb3cedee",
"name": "eksctl-test-cluster-ng-b5a2c6e8-Node",
"href": "/systems/e35547c9-2ae7-42ab-ba7c-6974eb3cedee",
"resource_id": "i-03caeacb7f9924cae",
"type": "vm",
"platform_model": "m5.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "8832",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0d74628ef4e6ed5b6"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.19-v20210526"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eksctl-test-cluster"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.19.6, docker: 19.03.13ce-1.amzn2, containerd: 1.4.1-2.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.0766668"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0e8bc4c2702c894d1"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8-NodeGroup-1MBL2QXST71ES"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 3, 2021 5:08:46 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 3, 2021 5:08:45 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-type : unmanaged"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8-NodeGroup-1MBL2QXST71ES"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : NodeGroup"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8/ef624600-c48d-11eb-b299-02901252d834"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-055ca56d7c813f8a0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:eks:cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eksctl.cluster.k8s.io/v1alpha1/cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eksctl.io/v1alpha2/nodegroup-name : ng-b5a2c6e8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eksctl-test-cluster : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : eksctl-test-cluster-ng-b5a2c6e8-Node"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0e7011aced902660c"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 03, 2021 5:08:45 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8832.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "9513.127"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/cluster-name : eksctl-test-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/eksctl-version : 0.52.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-name : ng-b5a2c6e8"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.0766668"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "12.462334"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eksctl-eksctl-test-cluster-cluster-ClusterSharedNodeSecurityGroup-166CTR4NLWIAJ"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8-SG-J3CSXSCWSBKH"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "NodeGroup"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/eksctl-eksctl-test-cluster-nodegroup-ng-b5a2c6e8/ef624600-c48d-11eb-b299-02901252d834"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "49b2cb92-ff60-4487-a43b-50174c88c1a6",
"name": "odesk,base,odesk-dnsclient,odesk-pythia,odesk-match,odesk-tomcat7,odesk-feed,odesk-mysql,odesk-fimi,odesk-eventlog,odesk-match-i",
"href": "/systems/49b2cb92-ff60-4487-a43b-50174c88c1a6",
"resource_id": "i-08c436b05fb5e987d",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "977d99be-25db-458d-98e8-93e54542dfe1",
"name": "us-east-2b",
"href": "/infrastructure-groups/977d99be-25db-458d-98e8-93e54542dfe1"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.03178603"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "~`!@#$%^&*()-=_+{}[]:;\"'<,>.?/"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-04-18 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0cd3dfa4e37921605"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2018.03.0.20181129-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "myang"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.0.20181129 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.9552099"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 18, 2019 2:16:55 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Feb 16, 2021 4:18:09 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "794.07153"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : ~`!@#$%^&*()-=_+{}[]:;\"'<,>.?/"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : odesk,base,odesk-dnsclient,odesk-pythia,odesk-match,odesk-tomcat7,odesk-feed,odesk-mysql,odesk-fimi,odesk-eventlog,odesk-match-index,odesk-match-index-synchronizer [chef]"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : myang"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-d7333aaf"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:54 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 18, 2019 2:16:55 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Recos suppressed by integration until 2024-04-13 : Suppressed to test integration"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.9552099"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "mark-test-key"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "4.8618336"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-25"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "65189757-70c6-4922-b13a-574f6674e856",
"name": "Mixed_instance_types",
"href": "/systems/65189757-70c6-4922-b13a-574f6674e856",
"resource_id": "e84f16b9-0026-45b2-baab-9186224c7677",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "06ea40bf-891b-4bfd-b2a9-1197c65493fd",
"name": "us-east-1a",
"href": "/infrastructure-groups/06ea40bf-891b-4bfd-b2a9-1197c65493fd"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "WarmPoolTotalCapacity, GroupPendingInstances, GroupAndWarmPoolDesiredCapacity, GroupAndWarmPoolTotalCapacity, WarmPoolDesiredCapacity, GroupInServiceCapacity, GroupInServiceInstances, GroupMaxSize, WarmPoolTerminatingCapacity, GroupStandbyInstances, WarmPo"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "cal_template"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "8"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.028353808"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "5000"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.63361585"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "2.0"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "162.23"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:49 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 13, 2019 6:50:19 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.63361585"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.19016667"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "150"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "5000"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "a55f68ca-83e1-4346-9d81-f13251af2489",
"name": "awu-ubuntu-cw-agent",
"href": "/systems/a55f68ca-83e1-4346-9d81-f13251af2489",
"resource_id": "i-0912a65d505dc1400",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.18256949"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2020-03-12 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-07ebfd5b3428b6f4d"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-20200112"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "36.98346"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "awu"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 18.04 lts, amd64 bionic image build on 2020-01-12"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.667211"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "36.98346"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 12, 2020 6:05:40 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 12, 2020 6:05:39 PM"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "2059.8828"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : awu-ubuntu-cw-agent"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : awu"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 12, 2020 6:05:39 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.667211"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "albin"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "8.503166"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-89"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "liliana-test"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "31780765-34cf-3317-92cd-51ee26356996",
"name": "i-085b9e0419268feae",
"href": "/systems/31780765-34cf-3317-92cd-51ee26356996",
"resource_id": "i-085b9e0419268feae",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00c03f7f7f2ec15c3"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190823.1-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Mark"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190823.1 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.1994538"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Mark-ASG-for-realtime"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 31, 2023 2:54:44 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 31, 2023 2:54:44 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "7401.915"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Mark-ASG-for-realtime"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0fc2ad2bea7edb1dd"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Mark"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-5a18ef33"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 31, 2023 2:54:44 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.1994538"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "5.694333"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "919980db-9dc1-4295-9165-7f62f8f1b139",
"name": "i-0459958ec17408ece",
"href": "/systems/919980db-9dc1-4295-9165-7f62f8f1b139",
"resource_id": "i-0459958ec17408ece",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0b898040803850657"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190618-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "8.662689"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190618 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.333445"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "8.662689"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "memory-used"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Oct 25, 2021 8:30:20 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 25, 2021 8:30:19 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "12685.558"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : memory-used"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 25, 2021 8:30:19 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.333445"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "temp"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "21.263084"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-76"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "a190e2db-ef8a-4e74-ade5-0ff79ab53e77",
"name": "ECS Instance - EC2ContainerService-maria-cluster",
"href": "/systems/a190e2db-ef8a-4e74-ade5-0ff79ab53e77",
"resource_id": "i-034f9a088c3f71013",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-aff65ad2"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2017.09.l-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.l x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.6570716"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "EC2ContainerService-maria-cluster-EcsInstanceAsg-K1YL0P6M5K4M"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 30, 2021 2:27:40 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 30, 2021 2:27:39 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1573.794"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : EC2ContainerService-maria-cluster-EcsInstanceAsg-K1YL0P6M5K4M"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-maria-cluster/f5d8d460-4a4f-11e8-9293-500c524058f2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-maria-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-maria-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 30, 2021 2:27:39 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.6570716"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "6.7093334"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-62"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-maria-cluster/f5d8d460-4a4f-11e8-9293-500c524058f2"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "a4015d8b-ed95-4633-97b0-2d4a77e1b033",
"name": "Mark-Tag-Mapping-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1",
"href": "/systems/a4015d8b-ed95-4633-97b0-2d4a77e1b033",
"resource_id": "i-0af01a4f4efb1e8be",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Engineering"
},
{
"id": "CLD.COST.CENTER",
"name": "Cost Center",
"value": "Richmond Hill"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-04-18 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0cd3dfa4e37921605"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2018.03.0.20181129-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "myang"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.0.20181129 x86_64 hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 18, 2019 2:00:56 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 18, 2019 2:00:55 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "_Name : QA"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Engineering"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Cost Center : Richmond Hill"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Engineering"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Mark-Tag-Mapping-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "name : qa'"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : !@#$%^&*()'?<>"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : myang"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "user_NAME : qa"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-c8361f82"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:44 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 18, 2019 2:00:55 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "Engineering"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "mark-test-key"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-24"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "c369997d-206b-4c51-bce6-4e210239ce64",
"name": "mixed policy set",
"href": "/systems/c369997d-206b-4c51-bce6-4e210239ce64",
"resource_id": "49ca961a-d88d-48a8-865b-81624acdf660",
"type": "asg",
"platform_model": "N/A",
"platform": "AWS",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupInServiceCapacity, GroupTotalInstances, GroupDesiredCapacity, GroupMinSize, GroupPendingCapacity, GroupTotalCapacity, GroupStandbyCapacity, GroupTerminatingCapacity, GroupTerminatingInstances, GroupPendingInstances, GroupStandbyInstances, GroupMaxSize"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "cal_template"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "bjackson-test"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : bjackson-test"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 5, 2019 4:57:11 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "true"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "705946e3-81db-40c4-a8bb-7feb96b0904e",
"name": "i-0d1264d71845e60e9",
"href": "/systems/705946e3-81db-40c4-a8bb-7feb96b0904e",
"resource_id": "i-0d1264d71845e60e9",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 29, 2023 5:09:43 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 29, 2023 3:04:38 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
}
]
},
{
"id": "840fef74-f95b-3937-9355-458cb7180d43",
"name": "i-0c5389e9540715362",
"href": "/systems/840fef74-f95b-3937-9355-458cb7180d43",
"resource_id": "i-0c5389e9540715362",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "25.333336"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 24, 2023 1:37:37 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 24, 2023 1:37:36 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1083540.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 24 2023, 02:43:17 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 24, 2023 1:37:36 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "25.333336"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "804.35834"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "6a46043d-b277-381d-accd-7d3e9e4a6872",
"name": "i-032108cbf59d75c18",
"href": "/systems/6a46043d-b277-381d-accd-7d3e9e4a6872",
"resource_id": "i-032108cbf59d75c18",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 17, 2023 5:48:42 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 17, 2023 5:48:41 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 17 2023, 02:40:11 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 17, 2023 5:48:41 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "1661d221-d8d8-4617-afe4-0e3f2dcd8b94",
"name": "i-0012b3b02422c1c59",
"href": "/systems/1661d221-d8d8-4617-afe4-0e3f2dcd8b94",
"resource_id": "i-0012b3b02422c1c59",
"type": "vm",
"platform_model": "t2.nano",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "544",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "ineal"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "5.6982036"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "ineal1"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 29, 2022 8:42:10 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 29, 2022 8:42:10 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "544.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "10321.722"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : ineal1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0090d04184b93d16c"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : ineal"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-5a18ef33"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 29, 2022 8:42:10 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "5.6982036"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "28.257"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "ineal1"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "a8c624fc-9677-4447-8273-87fae86a212a",
"name": "calsoft-mysql",
"href": "/systems/a8c624fc-9677-4447-8273-87fae86a212a",
"resource_id": "db-smswixvatsgsybx56fdzliarbq",
"type": "rds",
"platform_model": "db.t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "94819810-9df0-4357-88e4-9b57cbd2f1f0",
"name": "us-east-1d",
"href": "/infrastructure-groups/94819810-9df0-4357-88e4-9b57cbd2f1f0"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.730216"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Engineering"
},
{
"id": "CLD.COST.CENTER",
"name": "Cost Center",
"value": "Richmond Hill"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-01-02 00:00:00"
},
{
"id": "attr_maintenance_window",
"name": "Maintenance Window",
"value": "fri:05:03-fri:05:33"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "76.08205"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Densify"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_storage_type",
"name": "Storage Type",
"value": "gp2"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_db_name",
"name": "DB Name",
"value": "calsoft_masterdb"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "9129.917"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.9038534"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "76.08205"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "db.t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.RDS.ENDPOINTID",
"name": "__RDS Endpoint Id",
"value": "z2r2itugpm61am"
},
{
"id": "attr_7",
"name": "Cloud Account Name",
"value": "rds-intl-2"
},
{
"id": "attr_backup_retention_period",
"name": "Backup Retention Period",
"value": "1"
},
{
"id": "attr_backup_window",
"name": "Backup Window",
"value": "04:05-04:35"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "1.1145788"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_latest_restorable_time",
"name": "Latest Restorable Time",
"value": "Aug 19, 2023 6:25:00 AM"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "47953.555"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Engineering"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Cost Center : Richmond Hill"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "env : prod"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : BB Radar Team"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Densify"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "workload-type : production"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:05 EDT"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jan 2, 2018 10:12:37 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "general-public-license"
},
{
"id": "VE.AWS.RDS.ENDPOINTADDRESS",
"name": "__RDS Endpoint Address",
"value": "calsoft-mysql.ceuqka6azq3r.us-east-1.rds.amazonaws.com"
},
{
"id": "VE.AWS.RI.RDSMULTIAZ",
"name": "__ RDS Multi-AZ Deployment",
"value": "false"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.9038534"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "db.t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "f6c24313-2316-472b-88a8-3dabb7c435c8"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "a86060d1-eadd-4f1b-a302-e6559f0ae2b5",
"name": "EC2ContainerService-default-EcsInstanceAsg-1SCER88I1U6RK",
"href": "/systems/a86060d1-eadd-4f1b-a302-e6559f0ae2b5",
"resource_id": "2df2c1b0-205f-4c25-a0cc-facfe3b4fb7b",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "5"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-275ffe31"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2016.09.g-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.09.g x86_64 ecs hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0ba97072"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-default/bdf01260-4b55-11e7-9dcc-500c286e44d1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-default"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-default"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 7, 2017 7:49:38 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-default-ecsinstancelc-u4a42byy5mrh"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-f33c2d8d"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-default/bdf01260-4b55-11e7-9dcc-500c286e44d1"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "46367a8c-5736-3d65-82d2-15d874725386",
"name": "i-00738458652060202",
"href": "/systems/46367a8c-5736-3d65-82d2-15d874725386",
"resource_id": "i-00738458652060202",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.3185148"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 22, 2023 2:36:06 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 22, 2023 2:36:05 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1075.7666"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 22 2023, 02:35:30 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 22, 2023 2:36:05 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.3185148"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "4.0633335"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "13bcb090-f099-30b3-a02c-553c3acea06e",
"name": "i-0d705e8ded2e2465e",
"href": "/systems/13bcb090-f099-30b3-a02c-553c3acea06e",
"resource_id": "i-0d705e8ded2e2465e",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "27.203224"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 17, 2023 1:17:43 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 17, 2023 1:17:42 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1082928.2"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 17 2023, 02:40:11 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 17, 2023 1:17:42 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "27.203224"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "542.1556"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "2c3403bd-8f13-32a2-b84e-d399362f93b9",
"name": "i-0ef46d05de6e9f362",
"href": "/systems/2c3403bd-8f13-32a2-b84e-d399362f93b9",
"resource_id": "i-0ef46d05de6e9f362",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 8, 2023 4:40:32 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 8, 2023 4:40:31 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 08, 2023 4:40:31 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "fe4e5956-ef4c-4a87-ae18-6abfa013dad0",
"name": "tem1_3",
"href": "/systems/fe4e5956-ef4c-4a87-ae18-6abfa013dad0",
"resource_id": "i-068b442078c8e0135",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "16.221682"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "ASG-Template with CloudWatch agent"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.8307505"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "16.221682"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Template with CloudWatch agent"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Nov 12, 2019 2:03:23 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Nov 12, 2019 2:03:23 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "12525.848"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Template with CloudWatch agent"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0ea0cc4cc58bc43b4"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : tem1_3"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : ASG-Template with CloudWatch agent"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Nov 12, 2019 2:03:23 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.8307505"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "temp"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "21.132168"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-86"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "8a2bafe7-2934-4714-a459-72324281e302",
"name": "cp-default-cluster",
"href": "/systems/8a2bafe7-2934-4714-a459-72324281e302",
"resource_id": "c1334f63-385b-4c36-a0c1-d5297d14f8d8",
"type": "asg",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.3271381"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "0.20100503"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.1819983"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "0.20100503"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.small-1X2"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2176"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "35156.344"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 24, 2022 2:17:55 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-default-ecsinstancelc-gwt8uetxtezv"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.1819983"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "28.356169"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.small"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "3d4d9ae2-d571-4f24-a704-26628f303662"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-055cead5c56ed0a73"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "d9cf4437-2ca2-46ad-a422-28a566c5f91b",
"name": "maria-ecs-service",
"href": "/systems/d9cf4437-2ca2-46ad-a422-28a566c5f91b",
"resource_id": "us-east-1/maria-cluster/maria-ecs-service",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "128",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "10"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/console-sample-app-static:3"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_task_container_mem_resv",
"name": "__Container Memory Reservation",
"value": "128"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "console-sample-app-static:3"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "2"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "128"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "300"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "maria-cluster"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "300"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "simple-app:10"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "simple-app:300"
},
{
"id": "VE.Container_MEM_RES_MiB",
"name": "__Memory Reservation",
"value": "simple-app:128"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "3752a00c-2906-3322-8b88-0066a8c12438",
"name": "anna-instTypeAttribute",
"href": "/systems/3752a00c-2906-3322-8b88-0066a8c12438",
"resource_id": "22943f22-868f-47b9-a09d-d410838e66f5",
"type": "asg",
"platform_model": "N/A",
"platform": "AWS",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "anna-insttypeattribute"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 31, 2023 3:13:17 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "true"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "20955fcd-5eea-4b97-9fde-f9bab94192be",
"name": "Template with CloudWatch agent",
"href": "/systems/20955fcd-5eea-4b97-9fde-f9bab94192be",
"resource_id": "96c82659-4c36-43e9-9875-6e166a21297d",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupInServiceInstances, GroupPendingInstances, GroupMaxSize, GroupTerminatingInstances, GroupDesiredCapacity, GroupTotalInstances, GroupStandbyInstances, GroupMinSize"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "sw_agent"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.19480146"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "16.28227"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.0941195"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "16.28227"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "8976.48"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 6, 2019 2:12:46 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.0941195"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "18.234167"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "e5ab7925-d162-400c-abcc-26c04d885605",
"name": "i-0fb77012638f5ae39",
"href": "/systems/e5ab7925-d162-400c-abcc-26c04d885605",
"resource_id": "i-0fb77012638f5ae39",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "9.403353"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 15, 2023 3:29:34 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 15, 2023 3:29:33 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "133260.5"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 15 2023, 05:31:21 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 15, 2023 3:29:33 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "9.403353"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "32.41"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "b5d3b414-196d-4a38-a101-2a084a45c304",
"name": "i-0216964d56abd76fe",
"href": "/systems/b5d3b414-196d-4a38-a101-2a084a45c304",
"resource_id": "i-0216964d56abd76fe",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "9.770788"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 6, 2023 3:19:38 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 6, 2023 3:19:38 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "408585.44"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 06 2023, 04:55:26 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 06, 2023 3:19:38 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "9.770788"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "302.60333"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "d90975d4-0ad2-48f6-b240-537ab1b8344a",
"name": "i-0a391e267f2fafae5",
"href": "/systems/d90975d4-0ad2-48f6-b240-537ab1b8344a",
"resource_id": "i-0a391e267f2fafae5",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "6.9883766"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 14, 2023 10:59:39 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 14, 2023 10:59:39 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "113469.83"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 15 2023, 05:31:21 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 14, 2023 10:59:39 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "6.9883766"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "123.25"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "9cc662a4-5d39-456f-9893-9d51b82d0d6a",
"name": "i-00aae56f9ab567433",
"href": "/systems/9cc662a4-5d39-456f-9893-9d51b82d0d6a",
"resource_id": "i-00aae56f9ab567433",
"type": "vm",
"platform_model": "t3.micro",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "bjackson-test"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "mixed policy set"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Feb 5, 2022 10:55:12 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Feb 5, 2022 10:55:11 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : mixed policy set"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-387c6757-217f-25d9-249a-ab00f846962f"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-01472aa516ce22661"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : bjackson-test"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Feb 05, 2022 10:55:11 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "794cdaff-4f8f-3f1a-9eea-6ee7c5738037",
"name": "i-0dfb531d85eaa8a57",
"href": "/systems/794cdaff-4f8f-3f1a-9eea-6ee7c5738037",
"resource_id": "i-0dfb531d85eaa8a57",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 10, 2023 6:22:35 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 10, 2023 6:22:35 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 10 2023, 02:38:54 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 10, 2023 6:22:35 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "b2e8ae1e-ec0e-31a1-889f-8e0d8f1db697",
"name": "i-028f9c8292dfcba3f",
"href": "/systems/b2e8ae1e-ec0e-31a1-889f-8e0d8f1db697",
"resource_id": "i-028f9c8292dfcba3f",
"type": "vm",
"platform_model": "t3a.medium",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4352",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-07c9c86f18d0ff01e"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.27-v20230607"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eks-test-cluster-2023"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.27.1, containerd: 1.6.*)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.823391"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "eks-test_node_group-dac46a2c-b96a-a9a7-cea0-9b89e3a1c520"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 19, 2023 3:50:59 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 19, 2023 3:50:59 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "37.67"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4352.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "24718.104"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : eks-test_node_group-dac46a2c-b96a-a9a7-cea0-9b89e3a1c520"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-8b35df37-462c-4c27-8690-a108b916094c"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0fb7b27eaa9009a2a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:eks:cluster-name : eks-test-cluster-2023"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eks-test-cluster-2023"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : test_node_group"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eks-test-cluster-2023 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eks-test-cluster-2023 : owned"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 19, 2023 3:50:59 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.823391"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "24.388416"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eks-cluster-sg-eks-test-cluster-2023-1455543027"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "684adbcb-5086-45fb-b3b5-8d62b0c8a327",
"name": "i-09d6a44cd0b9621de",
"href": "/systems/684adbcb-5086-45fb-b3b5-8d62b0c8a327",
"resource_id": "i-09d6a44cd0b9621de",
"type": "vm",
"platform_model": "t3.nano",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "544",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-02238ac43d6385ab3"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-kernel-5.10-hvm-2.0.20230307.0-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 kernel 5.10 ami 2.0.20230307.0 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.1150165"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "jltest-asg"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 20, 2023 2:19:32 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 20, 2023 2:19:32 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "544.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "5686.0146"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : jltest-asg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-b7244aac-8135-4914-a430-84a265a0695b"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-07b3c5e80a3ee5077"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-d7333aaf"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 06 2023, 04:55:26 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 20, 2023 2:19:32 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.1150165"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "jltest"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "7.613834"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-40"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "f6c53c52-eecf-3481-b8d2-5f3d8dab8a26",
"name": "i-0c11343ed9af246b1",
"href": "/systems/f6c53c52-eecf-3481-b8d2-5f3d8dab8a26",
"resource_id": "i-0c11343ed9af246b1",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 5, 2023 5:20:36 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 05, 2023 2:32:50 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "7c0bfe0c-4e06-4a03-803c-bae680b18735",
"name": "Mark-ASG-for-realtime",
"href": "/systems/7c0bfe0c-4e06-4a03-803c-bae680b18735",
"resource_id": "004bc5c1-23d9-440d-87b7-ad441da31417",
"type": "asg",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupDesiredCapacity, WarmPoolTerminatingCapacity, WarmPoolDesiredCapacity, WarmPoolMinSize, GroupAndWarmPoolTotalCapacity, GroupInServiceInstances, GroupTotalInstances, WarmPoolTotalCapacity, GroupMinSize, GroupTerminatingInstances, GroupStandbyCapacity, "
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "mark-lin-temp-t2.small"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.028958438"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-04-28 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00c03f7f7f2ec15c3"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190823.1-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Mark"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190823.1 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.1494629"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.small-1X2"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2176"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_asg_insttype_updated",
"name": "ASG Instance Type Updated On",
"value": "May 20, 2023, 2:30 AM"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "3731.5144"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Mark"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 28, 2023 4:05:45 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.1494629"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "3.5232916"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.small"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "3d4d9ae2-d571-4f24-a704-26628f303662"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "67df07b9-e07d-435f-9dbd-1c35c5e28e47",
"name": "eks summer2019",
"href": "/systems/67df07b9-e07d-435f-9dbd-1c35c5e28e47",
"resource_id": "i-07e57ecf0699dd2d6",
"type": "vm",
"platform_model": "t3.small",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0483887b9600d714d"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.21-v20220303"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eks-cluster-test-summer2019"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.21.5, docker: 20.10.7-5.amzn2, containerd: 1.4.6-8.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "6.1883183"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "eks-38b98897-2e07-119a-d249-006ae2cbfe47"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 8, 2022 8:55:54 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 8, 2022 8:55:53 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "26329.225"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : eks-38b98897-2e07-119a-d249-006ae2cbfe47"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-e4772b57-5c80-c6de-ac30-8b20caa4c74e"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0ac432556723caec1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 10"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:eks:cluster-name : eks-cluster-test-summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eks-cluster-test-summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : test-node-group2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eks-cluster-test-summer2019 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eks-cluster-test-summer2019 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : eks summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : kgillan"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 10 2023, 02:38:49 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 08, 2022 8:55:53 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "6.1883183"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "61.9295"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eks-cluster-sg-eks-cluster-test-summer2019-946350621"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "a6f1389f-35c8-4e17-a0ae-4251db87607c",
"name": "eks-stack-test-summer2019-NodeGroup-EKTN1LA7JSHG",
"href": "/systems/a6f1389f-35c8-4e17-a0ae-4251db87607c",
"resource_id": "a4b333a5-23e2-4058-baf5-f3694088b0a8",
"type": "asg",
"platform_model": "t3a.medium",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4352",
"infrastructure_group": {
"id": "6fe9c2be-a693-4170-9781-e5fb83c6d44b",
"name": "us-east-2a",
"href": "/infrastructure-groups/6fe9c2be-a693-4170-9781-e5fb83c6d44b"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "nodelaunchtemplate_ahy3jykhmk1c"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "5"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "2.9652395"
},
{
"id": "attr_CurrentMaxLocalDiskIOThroug",
"name": "Current Max Local Disk IO Throughput (Bytes)",
"value": "43750000"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0483887b9600d714d"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.21-v20220303"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eks-cluster-test-summer2019"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.0"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "671088640"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_CurrentMaxLocalDiskIOOperat",
"name": "Current Max Local Disk IO Operations (IOPS)",
"value": "2000"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.21.5, docker: 20.10.7-5.amzn2, containerd: 1.4.6-8.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.0"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "9.053421"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3a.medium-2X4"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "37.7"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "4352"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "37.67"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4352.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "7534.588"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "alpha.eksctl.io/nodegroup-name : test-eksctl"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : NodeGroup"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/eks-stack-test-summer2019/0333d0c0-a8c2-11e9-be27-060ae44bf6ec"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : eks-stack-test-summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/node-template/label/kops.k8s.io/instancegroup : test-kops"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eks-cluster-test-summer2019 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : eks-cluster-test-summer2019-node-test-summer2019-Node"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : kgillan"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 17, 2019 6:40:35 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "9.053421"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "5.795334"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3a.medium"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "66390f3a-f5fa-4c40-bf80-f17a469acb01"
},
{
"id": "attr_RecommMaxLocalDiskIOOperati",
"name": "Recomm Max Local Disk IO Operations (IOPS)",
"value": "2000"
},
{
"id": "attr_RecommMaxLocalDiskIOThrough",
"name": "Recomm Max Local Disk IO Throughput (Bytes)",
"value": "43750000"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "NodeGroup"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/eks-stack-test-summer2019/0333d0c0-a8c2-11e9-be27-060ae44bf6ec"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "759973ba-55a3-4f74-8ebf-fe3f49f60ff6",
"name": "tem1_3",
"href": "/systems/759973ba-55a3-4f74-8ebf-fe3f49f60ff6",
"resource_id": "i-06ee52a401b2a2b71",
"type": "vm",
"platform_model": "t3.micro",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-06-05 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 5, 2019 1:44:43 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Nov 12, 2019 2:12:28 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-00c18c6f25f6eaf10"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : tem1_3"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 05, 2019 1:44:43 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "temp"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-86"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "4cce0744-e6b6-4202-9ef4-6c89046f2743",
"name": "ECS Instance - EC2ContainerService-ohio-maria-cluster",
"href": "/systems/4cce0744-e6b6-4202-9ef4-6c89046f2743",
"resource_id": "i-02495bed435212ede",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-956e52f0"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2018.03.a-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.a x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "4.650783"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "EC2ContainerService-ohio-maria-cluster-EcsInstanceAsg-1XN56N7NWGSE"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 4, 2022 3:05:19 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 4, 2022 3:05:19 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "847.46826"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : EC2ContainerService-ohio-maria-cluster-EcsInstanceAsg-1XN56N7NWGSE"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-ohio-maria-cluster/9297eb90-6d93-11e8-9546-503f3144f9c5"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-ohio-maria-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-ohio-maria-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-5a18ef33"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 31 2023, 09:19:23 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 04, 2022 3:05:19 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "4.650783"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "1.3463334"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "EC2ContainerService-ohio-maria-cluster-EcsSecurityGroup-18NALR33R21H0"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-ohio-maria-cluster/9297eb90-6d93-11e8-9546-503f3144f9c5"
}
]
},
{
"id": "bdcbe439-432c-4494-88d2-fd0e287b3a10",
"name": "eks-38b98897-2e07-119a-d249-006ae2cbfe47",
"href": "/systems/bdcbe439-432c-4494-88d2-fd0e287b3a10",
"resource_id": "cb8db689-ce21-4bdc-94f9-205e8d401d3f",
"type": "asg",
"platform_model": "t3.small",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "eks-38b98897-2e07-119a-d249-006ae2cbfe47"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "2.1593454"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0483887b9600d714d"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.21-v20220303"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eks-cluster-test-summer2019"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "16.67"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.21.5, docker: 20.10.7-5.amzn2, containerd: 1.4.6-8.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "16.67"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "6.1883183"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3.small-2X2"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2176"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "26329.225"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eks-cluster-test-summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : test-node-group2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eks-cluster-test-summer2019 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eks-cluster-test-summer2019 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : eks summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : kgillan"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 10 2023, 02:38:49 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 2, 2020 8:19:14 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "6.1883183"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "61.9295"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.small"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "c4b49124-0c6b-404b-818f-d9449379018d"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
}
]
},
{
"id": "456025eb-19e3-4f19-a8f5-3af4bcccf892",
"name": "i-0cb89c4e4eac9dd47",
"href": "/systems/456025eb-19e3-4f19-a8f5-3af4bcccf892",
"resource_id": "i-0cb89c4e4eac9dd47",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-66506c1c"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180126"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2018-01-26"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Adhere to the launch template"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Feb 9, 2023 4:15:40 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Feb 9, 2023 4:15:40 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Adhere to the launch template"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-01472aa516ce22661"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-8fd908f9"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Feb 09, 2023 4:15:40 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "0fe9d487-29e1-45f9-8e4a-f7d3069824bc",
"name": "i-0ab2b53b7c052998c",
"href": "/systems/0fe9d487-29e1-45f9-8e4a-f7d3069824bc",
"resource_id": "i-0ab2b53b7c052998c",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "28.376358"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "May 20, 2023 1:03:37 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 20, 2023 1:03:37 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "603675.1"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 20 2023, 02:37:45 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 20, 2023 1:03:37 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "28.376358"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "448.16574"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "c0deb055-b6fa-4318-af56-95376e60be7d",
"name": "i-02fec69ee7eef202f",
"href": "/systems/c0deb055-b6fa-4318-af56-95376e60be7d",
"resource_id": "i-02fec69ee7eef202f",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-09ce6553a7f2ae75d"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220630 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.366085"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "Infra-ECS-Cluster-bf62b2e4-1447-4ed0-80ef-cb8cc05f3367-ECSAutoScalingGroup-IEAWT1PFACE3"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 19, 2022 8:42:47 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 19, 2022 8:42:46 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "8571.395"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : Infra-ECS-Cluster-bf62b2e4-1447-4ed0-80ef-cb8cc05f3367-ECSAutoScalingGroup-IEAWT1PFACE3"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : ECSAutoScalingGroup"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/Infra-ECS-Cluster-bf62b2e4-1447-4ed0-80ef-cb8cc05f3367/4a9adc40-07a3-11ed-90c6-02adf9d0d0f8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : Infra-ECS-Cluster-bf62b2e4-1447-4ed0-80ef-cb8cc05f3367"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-044a83002b487841a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-d7333aaf"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 19, 2022 8:42:46 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.366085"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "11.073916"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "ECSAutoScalingGroup"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/Infra-ECS-Cluster-bf62b2e4-1447-4ed0-80ef-cb8cc05f3367/4a9adc40-07a3-11ed-90c6-02adf9d0d0f8"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "4b81ed7e-219c-41d1-849a-8c55d19b21c9",
"name": "calsoft-service",
"href": "/systems/4b81ed7e-219c-41d1-849a-8c55d19b21c9",
"resource_id": "us-east-1/calsoft/calsoft-service",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "300",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "10"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/console-sample-app-static:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "console-sample-app-static:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "2"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "300"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "300"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "calsoft"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "300"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "simple-app:10"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "simple-app:300"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "4c0f43c9-7fd8-4825-93f2-53a32d77b955",
"name": "maria-service-6",
"href": "/systems/4c0f43c9-7fd8-4825-93f2-53a32d77b955",
"resource_id": "us-east-2/ohio-maria-cluster/maria-service-6",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "128",
"attributes": [
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-2:209726931496:task-definition/maria-sample-task-def:9"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "128"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "128"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "maria-sample-task-def:9"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "10"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "ohio-maria-cluster"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "128"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "128"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "6"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "dcdbdab9-9303-3354-9343-2fc172279e75",
"name": "i-03634251f70d4d5df",
"href": "/systems/dcdbdab9-9303-3354-9343-2fc172279e75",
"resource_id": "i-03634251f70d4d5df",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 10, 2023 5:28:43 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 10, 2023 2:32:30 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
}
]
},
{
"id": "ca843e2f-a143-4645-b159-1239c5959de8",
"name": "test-mixed2",
"href": "/systems/ca843e2f-a143-4645-b159-1239c5959de8",
"resource_id": "b5cf226e-fc2f-4c61-a05f-7d4b46376beb",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"infrastructure_group": {
"id": "17500b0c-b6a8-49d8-be5b-3d2776de6fb3",
"name": "us-east-1b",
"href": "/infrastructure-groups/17500b0c-b6a8-49d8-be5b-3d2776de6fb3"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupPendingCapacity, GroupTotalCapacity, GroupDesiredCapacity, GroupMaxSize, GroupMinSize, WarmPoolMinSize, WarmPoolDesiredCapacity, GroupStandbyInstances, GroupInServiceInstances, WarmPoolTerminatingCapacity, GroupInServiceCapacity, GroupAndWarmPoolTotal"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "sw_agent"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.2223131"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2021-09-15 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "9.304239"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.329431"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "9.304239"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.micro-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "12799.519"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 15, 2021 6:16:31 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Recos suppressed by integration until 2024-04-13 : Suppressed to test integration"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.329431"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "21.926918"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "575f4301-30de-408e-9c1f-5c8d8d9c690e",
"name": "i-09cddc6e72f1547da",
"href": "/systems/575f4301-30de-408e-9c1f-5c8d8d9c690e",
"resource_id": "i-09cddc6e72f1547da",
"type": "vm",
"platform_model": "t3.small",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0485258c2d1c3608f"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.13-v20190701"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image (k8s: 1.13.7, docker:18.06)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.9949813"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "anna-asg"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 18, 2020 3:35:23 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 18, 2020 3:35:22 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "10634.245"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : anna-asg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : "
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:51 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 18, 2020 3:35:22 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.9949813"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "eks"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "13.8925"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eks-stack-test-summer2019-NodeSecurityGroup-198SHY1XEIFE6"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "b1d02f8b-afe0-49f9-9d87-808d19068aaa",
"name": "i-02e6beef794166534",
"href": "/systems/b1d02f8b-afe0-49f9-9d87-808d19068aaa",
"resource_id": "i-02e6beef794166534",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 15, 2023 5:18:42 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 15, 2023 2:43:45 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
}
]
},
{
"id": "5a73034e-f6ba-4d1d-85a4-8fc2ef3efcc5",
"name": "qa_service",
"href": "/systems/5a73034e-f6ba-4d1d-85a4-8fc2ef3efcc5",
"resource_id": "us-east-1/maria-cluster/qa_service",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "128",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "10"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/console-sample-app-static:3"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_task_container_mem_resv",
"name": "__Container Memory Reservation",
"value": "128"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "console-sample-app-static:3"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "4"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "128"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "300"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "maria-cluster"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "300"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "1"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "simple-app:10"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "simple-app:300"
},
{
"id": "VE.Container_MEM_RES_MiB",
"name": "__Memory Reservation",
"value": "simple-app:128"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "0045977d-d909-4d69-8cb0-342cba9886ec",
"name": "anna-asg",
"href": "/systems/0045977d-d909-4d69-8cb0-342cba9886ec",
"resource_id": "35b15a0b-ec78-44dc-bcf6-c3e6eda1877a",
"type": "asg",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"infrastructure_group": {
"id": "fa0485c7-2bb3-44b0-b14b-c0c0aa780056",
"name": "us-east-2c",
"href": "/infrastructure-groups/fa0485c7-2bb3-44b0-b14b-c0c0aa780056"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.ENABLEDMETRICS",
"name": "__ASG Enabled Metrics",
"value": "GroupMinSize, GroupInServiceInstances, GroupTotalInstances, GroupDesiredCapacity, GroupPendingInstances, GroupStandbyInstances, GroupMaxSize, GroupTerminatingInstances"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "jing-template-asg-t2-small"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.36555603"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-08-23 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0d8f6eb4f641ef691"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190618-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190618 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.9949813"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t2.small-1X2"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2176"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_7",
"name": "Cloud Account Name",
"value": "test1-atif-test1"
},
{
"id": "attr_asg_insttype_updated",
"name": "ASG Instance Type Updated On",
"value": "Apr 29, 2023, 2:30 AM"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "10634.245"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:51 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 23, 2019 2:56:47 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.9949813"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "13.8925"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.small"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "3d4d9ae2-d571-4f24-a704-26628f303662"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "d35c7b98-c777-30de-b165-c8c3f767ad61",
"name": "i-0a51e14cc4960948c",
"href": "/systems/d35c7b98-c777-30de-b165-c8c3f767ad61",
"resource_id": "i-0a51e14cc4960948c",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 10, 2023 4:34:42 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 10, 2023 4:34:42 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 10 2023, 02:38:54 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 10, 2023 4:34:42 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "0e795317-4ef4-475a-a12d-8af3b8c0a78d",
"name": "i-027c1df516047d757",
"href": "/systems/0e795317-4ef4-475a-a12d-8af3b8c0a78d",
"resource_id": "i-027c1df516047d757",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "13.714027"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 12, 2023 12:16:34 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 12, 2023 12:16:33 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "228678.84"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 12 2023, 14:31:08 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 12, 2023 12:16:33 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "13.714027"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "257.39166"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "b5f4bc59-32c1-496f-ad5a-6dd59feb80b5",
"name": "i-04a9f85ea7f5d5bd1",
"href": "/systems/b5f4bc59-32c1-496f-ad5a-6dd59feb80b5",
"resource_id": "i-04a9f85ea7f5d5bd1",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0b898040803850657"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190618-x86_64-gp2"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "8.787998"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190618 x86_64 hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.2328982"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "8.787998"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "memory-used"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Oct 25, 2021 8:30:20 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 25, 2021 8:30:19 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "12484.911"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : memory-used"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:35:59 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 25, 2021 8:30:19 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.2328982"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "temp"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "19.628666"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-76"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "fca0da1c-3a64-39cb-a982-d4dd50a0f8b2",
"name": "i-0b156a82f32d24cc9",
"href": "/systems/fca0da1c-3a64-39cb-a982-d4dd50a0f8b2",
"resource_id": "i-0b156a82f32d24cc9",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 7, 2023 11:12:31 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 7, 2023 11:12:31 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 07, 2023 11:12:31 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "82a3fdba-e8cc-4644-a853-4ff2aaf70273",
"name": "ECS Instance - EC2ContainerService-Tom-ECS-Cluster",
"href": "/systems/82a3fdba-e8cc-4644-a853-4ff2aaf70273",
"resource_id": "i-06f57cedeaa7f0a8f",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-028a9de0a7e353ed9"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2018.03.e-amazon-ecs-optimized"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.e x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "0.9011975"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-07da982fbc012d2c1"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "EC2ContainerService-Tom-ECS-Cluster-EcsInstanceAsg-41MH4ZXJDZ9V"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 16, 2018 3:58:47 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 16, 2018 3:58:47 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "45.973335"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : EC2ContainerService-Tom-ECS-Cluster-EcsInstanceAsg-41MH4ZXJDZ9V"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-Tom-ECS-Cluster/26af4cd0-a16d-11e8-a11f-06acaac395bc"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-Tom-ECS-Cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Inventory Codeash : ashval"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-Tom-ECS-Cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0e2f528debfe3cc93"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 16, 2018 3:58:47 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "0.9011975"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "0.238"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "EC2ContainerService-Tom-ECS-Cluster-EcsSecurityGroup-SWDHKJ2AAQMA"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-2:209726931496:stack/EC2ContainerService-Tom-ECS-Cluster/26af4cd0-a16d-11e8-a11f-06acaac395bc"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "3a98d691-3dc4-4b22-9e31-15bd6ca70239",
"name": "mariadb-multiaz-us-east-1d",
"href": "/systems/3a98d691-3dc4-4b22-9e31-15bd6ca70239",
"resource_id": "db-kymsa5b6fvoincshikpixti6le",
"type": "rds",
"platform_model": "db.t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"infrastructure_group": {
"id": "94819810-9df0-4357-88e4-9b57cbd2f1f0",
"name": "us-east-1d",
"href": "/infrastructure-groups/94819810-9df0-4357-88e4-9b57cbd2f1f0"
},
"control_environment": {
"id": "fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"name": "209726931496",
"platform_category": "External Cloud",
"href": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176",
"icon": "/control-environments/fe8e64ce-ebee-4fbe-94c3-4f796afaa176/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "4.58587"
},
{
"id": "attr_CurrentMaxNetworkIOThroughp",
"name": "Current Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-01-18 00:00:00"
},
{
"id": "attr_maintenance_window",
"name": "Maintenance Window",
"value": "sat:04:11-sat:04:41"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "83.84625"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.00"
},
{
"id": "attr_RecommMaxNetworkIOThroughpu",
"name": "Recomm Max Network IO Throughput (Bytes)",
"value": "22937600"
},
{
"id": "attr_storage_type",
"name": "Storage Type",
"value": "aurora"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "4285.442"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "15.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "23.760296"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "83.84625"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "db.t2.medium-2X4"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RecommendedCPUBenchmark",
"name": "Recommended CPU Benchmark",
"value": "36.8"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "4352"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.RDS.CLUSTERID",
"name": "__RDS Cluster Id",
"value": "mariadb-multiaz-cluster"
},
{
"id": "VE.AWS.RDS.ENDPOINTID",
"name": "__RDS Endpoint Id",
"value": "z2r2itugpm61am"
},
{
"id": "VE.AWS.RDS.REPLICATIONROLE",
"name": "__RDS Replication Role",
"value": "writer"
},
{
"id": "attr_7",
"name": "Cloud Account Name",
"value": "rds-intl-3"
},
{
"id": "attr_backup_retention_period",
"name": "Backup Retention Period",
"value": "1"
},
{
"id": "attr_backup_window",
"name": "Backup Window",
"value": "09:46-10:16"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "6.70189"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "2304.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : IT"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Location : Pune"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:05 EDT"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jan 18, 2018 7:25:59 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "general-public-license"
},
{
"id": "VE.AWS.RDS.ENDPOINTADDRESS",
"name": "__RDS Endpoint Address",
"value": "mariadb-multiaz-us-east-1d.ceuqka6azq3r.us-east-1.rds.amazonaws.com"
},
{
"id": "VE.AWS.RI.RDSMULTIAZ",
"name": "__ RDS Multi-AZ Deployment",
"value": "false"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "IT"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "23.760296"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "db.t2.medium"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "5a7a8712-8e0e-47b0-91a7-e231ff9f6bfd"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "fbee5124-dfdd-33b2-9480-a009e43766b7",
"name": "i-01b02ec3194126f04",
"href": "/systems/fbee5124-dfdd-33b2-9480-a009e43766b7",
"resource_id": "i-01b02ec3194126f04",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 19, 2023 4:52:49 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 19, 2023 4:52:49 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 19, 2023 4:52:49 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "b9117cdb-f79e-4e50-806c-2fcf5dc37169",
"name": "default",
"href": "/systems/b9117cdb-f79e-4e50-806c-2fcf5dc37169",
"resource_id": "us-east-1/default/default",
"type": "ecs_svc",
"platform_model": "N/A",
"platform": "AWS",
"memory": "1024",
"attributes": [
{
"id": "attr_task_container_cpu",
"name": "__Container CPU",
"value": "100"
},
{
"id": "attr_ecs_service_type",
"name": "__Service Type",
"value": "replica"
},
{
"id": "attr_task_definition_arn",
"name": "__Task Definition Arn",
"value": "arn:aws:ecs:us-east-1:209726931496:task-definition/test-tom-task-def:1"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "256"
},
{
"id": "attr_task_cpu",
"name": "__Task CPU",
"value": "256"
},
{
"id": "attr_task_definition",
"name": "__Task Definition Name",
"value": "test-tom-task-def:1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.DESIREDTASKS",
"name": "__Desired Tasks Count",
"value": "2"
},
{
"id": "VE.LAUNCHTYPE",
"name": "__Launch Type",
"value": "ec2"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "1024"
},
{
"id": "attr_task_container_mem",
"name": "__Container Memory",
"value": "1024"
},
{
"id": "VE.AWS.ECS.CLUSTERNAME",
"name": "__ECS Cluster Name",
"value": "default"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "100"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "1024"
},
{
"id": "attr_task_container_defs",
"name": "__Container Definitions",
"value": "2"
},
{
"id": "attr_task_mem",
"name": "__Task Memory",
"value": "1024"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE.Container_CPU_UNITS",
"name": "__CPU (Units)",
"value": "mysql:100"
},
{
"id": "VE.Container_MEM_MiB",
"name": "__Memory (MiB)",
"value": "mysql:1024"
},
{
"id": "VE.RUNNINGTASKS",
"name": "__Running Tasks Count",
"value": "0"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "80490ccb-d516-482d-be20-857c7e3b794d",
"name": "test-overrides",
"href": "/systems/80490ccb-d516-482d-be20-857c7e3b794d",
"resource_id": "c47f05fd-ddd1-4071-8f49-b2cdd92120f9",
"type": "asg",
"platform_model": "N/A",
"platform": "AWS",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "tom-launch-template-1"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0de53d8956e8dcf80"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190313-x86_64-gp2"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190313 x86_64 hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-62cb7c04"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Nov 2, 2021 3:26:22 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "true"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "1ce47dd4-d961-473f-ab36-e878348a5288",
"name": "i-095557db0f12d6f38",
"href": "/systems/1ce47dd4-d961-473f-ab36-e878348a5288",
"resource_id": "i-095557db0f12d6f38",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 27, 2023 5:06:38 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 27, 2023 2:32:44 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
}
]
},
{
"id": "b8b44b26-b7f0-4716-b79d-2fc04a8543f5",
"name": "i-076abc2e04c34790d",
"href": "/systems/b8b44b26-b7f0-4716-b79d-2fc04a8543f5",
"resource_id": "i-076abc2e04c34790d",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "May 20, 2023 5:34:37 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Terminated"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "May 20, 2023 2:33:07 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
}
]
},
{
"id": "d80c60aa-35a1-3e3e-ab43-b32425ecac60",
"name": "i-0d6ca2fbbfc02556c",
"href": "/systems/d80c60aa-35a1-3e3e-ab43-b32425ecac60",
"resource_id": "i-0d6ca2fbbfc02556c",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Aug 5, 2023 6:13:33 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Aug 5, 2023 6:13:33 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 05 2023, 02:35:50 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 05, 2023 6:13:33 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "b6085970-e681-4603-890b-621115b2104a",
"name": "i-0a42e572d4e0b94b3",
"href": "/systems/b6085970-e681-4603-890b-621115b2104a",
"resource_id": "i-0a42e572d4e0b94b3",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "11.289758"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 12, 2023 3:50:37 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 12, 2023 3:50:36 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "171065.44"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 12 2023, 14:31:08 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 12, 2023 3:50:36 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "11.289758"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "244.16669"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
},
{
"id": "50d4c13c-c723-44e4-b9af-1ae4fb5afca7",
"name": "Test Name",
"href": "/systems/50d4c13c-c723-44e4-b9af-1ae4fb5afca7",
"resource_id": "i-0732cb7755ff87961",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-10-05 00:00:00"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-ee7805f9"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_6",
"name": "TEST AALBAR",
"value": "Test 1"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Oct 5, 2016 10:50:57 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 5, 2016 10:55:19 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Test Name"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Schedule : sg-test1"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 05, 2016 10:50:57 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "test"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-36"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "aws:usertag_schedule",
"name": "Schedule",
"value": "sg-test1"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
}
]
},
{
"id": "2eac8e8f-b698-3660-aab3-72129227cea0",
"name": "i-01ed1f3659365eb29",
"href": "/systems/2eac8e8f-b698-3660-aab3-72129227cea0",
"resource_id": "i-01ed1f3659365eb29",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 8, 2023 6:28:32 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 8, 2023 6:28:32 AM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0a9ad09948288a4c8"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 08, 2023 6:28:32 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2a"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
}
]
},
{
"id": "a61c7ad4-c7f9-363d-8b49-80627e0d6e1f",
"name": "i-0f157d20bf971754e",
"href": "/systems/a61c7ad4-c7f9-363d-8b49-80627e0d6e1f",
"resource_id": "i-0f157d20bf971754e",
"type": "vm",
"platform_model": "t3a.medium",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4352",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-07c9c86f18d0ff01e"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.27-v20230607"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eks-test-cluster-2023"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.27.1, containerd: 1.6.*)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.8234932"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "eks-test_node_group-dac46a2c-b96a-a9a7-cea0-9b89e3a1c520"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 19, 2023 4:03:07 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 19, 2023 4:03:06 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "37.67"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4352.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "25814.117"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : eks-test_node_group-dac46a2c-b96a-a9a7-cea0-9b89e3a1c520"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2:fleet-id : fleet-9f26488e-a91d-6334-ac30-ae2a20840f40"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0fb7b27eaa9009a2a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:eks:cluster-name : eks-test-cluster-2023"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eks-test-cluster-2023"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : test_node_group"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eks-test-cluster-2023 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eks-test-cluster-2023 : owned"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-0386c386747888237"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Aug 19 2023, 02:36:14 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 19, 2023 4:03:06 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.8234932"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "28.557085"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "eks-cluster-sg-eks-test-cluster-2023-1455543027"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
}
]
},
{
"id": "feb5aa9b-35ed-468e-9bd6-97d2803a8d88",
"name": "eks-eabbfd16-97ae-8e7d-aeb2-85bbcbbcc8d2",
"href": "/systems/feb5aa9b-35ed-468e-9bd6-97d2803a8d88",
"resource_id": "aa701a12-4905-4e2f-996c-4fd7a4e85a0c",
"type": "asg",
"platform_model": "t3a.medium",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4352",
"attributes": [
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "eks-eabbfd16-97ae-8e7d-aeb2-85bbcbbcc8d2"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "2.751788"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-02-10 00:00:00"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0483887b9600d714d"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amazon-eks-node-1.21-v20220303"
},
{
"id": "kubernetes_cluster",
"name": "Kubernetes Cluster",
"value": "eks-cluster-test-summer2019"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "16.67"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "eks kubernetes worker ami with amazonlinux2 image, (k8s: 1.21.5, docker: 20.10.7-5.amzn2, containerd: 1.4.6-8.amzn2)"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "16.67"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "7.8599024"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "t3a.medium-2X4"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "4352"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "37.67"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4352.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "21106.45"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:cluster-name : eks-cluster-test-summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "eks:nodegroup-name : test_node_group"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/eks-cluster-test-summer2019 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "k8s.io/cluster-autoscaler/enabled : true"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "kubernetes.io/cluster/eks-cluster-test-summer2019 : owned"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : eks summer2019"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : kgillan"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 10 2023, 02:38:54 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 3, 2021 10:20:42 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "1"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "1"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "7.8599024"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "60.203835"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3a.medium"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "66390f3a-f5fa-4c40-bf80-f17a469acb01"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
}
]
},
{
"id": "0f104498-dad3-4ac3-9bb7-82832d5bedb0",
"name": "i-0b495f3b9bd374cbd",
"href": "/systems/0f104498-dad3-4ac3-9bb7-82832d5bedb0",
"resource_id": "i-0b495f3b9bd374cbd",
"type": "vm",
"platform_model": "t2.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2176",
"attributes": [
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-00f030d3d7a345389"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2.0.20220318 x86_64 ecs hvm gp2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "12.16617"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0be64750e10bd93d9"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "cp-default-cluster"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 11, 2023 10:30:33 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 11, 2023 10:30:32 PM"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2176.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "505329.2"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:autoscaling:groupName : cp-default-cluster"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-01eed5d770d1948a0"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 12 2023, 14:31:08 EDT"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 11, 2023 10:30:32 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2b"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "12.16617"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "366.22083"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
}
]
}
]
- name: Get AWS Systems with Insufficient Workload
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems?attribute_name_value=Insufficient+Workload,true&platform=AWS"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
query:
- key: attribute_name_value
value: Insufficient+Workload,true
- key: platform
value: AWS
description: |-
To improve analysis performance, Kubex now removes instances that do not have
sufficient workload to produce valid recommendations. These instances are either transient systems
or have insufficient workload data to be analyzed accurately.
Using the 3 policy settings that define the amount of required workload and a table of required
workload types for each container and cloud provider, Kubex then filters out instances that do not
meet both the volume and type of workload data, requirements.
Once enable this feature applies to auto-created analysis and to analysis that are initiated through the
Kubex API.
Contact [Support@Densify.com](https://mailto:Support@Densify.com) for detail on enabling this feature
Refer to Kubex Online Help [Densify Docs](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/API_New_Features.htm)
response:
- name: Get Systems with Insufficient Workload
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems?attribute_name_value=Insufficient+Workload,true&platform=AWS"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
query:
- key: attribute_name_value
value: Insufficient+Workload,true
- key: platform
value: AWS
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Access-Control-Max-Age
value: "86400"
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Pragma
value: no-cache
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Mon, 24 Jul 2023 10:39:11 GMT
- key: Keep-Alive
value: timeout=20
- key: Connection
value: keep-alive
cookie: []
body: |-
[
{
"id": "a410ecb4-f3be-4877-afcc-3398e6b8b60f",
"name": "Nov 2 2:49",
"href": "/systems/a410ecb4-f3be-4877-afcc-3398e6b8b60f",
"resource_id": "i-08cf7875f0f149d37",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-09-22 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "moving"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-ddacd4ca"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "from_i-0017615fe5407d78e"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "test"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Nov 2 2:49"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Project : Demo"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-32"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-8fd908f9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:36 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 22, 2016 5:13:44 AM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 22, 2016 5:13:44 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 5, 2016 6:04:32 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "CLD.PROJECT",
"name": "Project",
"value": "Demo"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1d"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1d"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "fe60891d-c7d7-4b64-a776-57cefb232b8c",
"name": "win-cp",
"href": "/systems/fe60891d-c7d7-4b64-a776-57cefb232b8c",
"resource_id": "cc65b5fc-d48c-4ad9-975d-9fe119b3abdc",
"type": "asg",
"platform_model": "t3.2xlarge",
"platform": "AWS",
"total_physical_cpus": "8",
"cores_per_cpu": "1",
"memory": "35200",
"attributes": [
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "8"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "8.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "184"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "35200.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.2xlarge"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "e23ca001-1946-411a-a68c-db6ab9061463"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "AmazonECSManaged : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : myang"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-003358e9e27fe2a7a"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:50 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 28, 2022 6:18:14 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "35200"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-mark-win-mix-ecsinstancelc-0wji0hbqutql"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "ca2a325b-4618-4285-8504-94a9b1865cdc",
"name": "Tom-Linux-Classic",
"href": "/systems/ca2a325b-4618-4285-8504-94a9b1865cdc",
"resource_id": "i-0e4bf52766b63d002",
"type": "vm",
"platform_model": "m1.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1856",
"attributes": [
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-03-08 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "9.2"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1856.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.1.20180115 x86_64 hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-97785bed"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2017.09.1.20180115-x86_64-gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "aws-ec2-t4"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Tom-Linux-Classic"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "network : classic"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : tom"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-2"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:37 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 08, 2018 4:36:36 PM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 8, 2018 4:36:36 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 13, 2018 7:00:41 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1c"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "59fe22a0-8dc2-4256-b0b6-3c5bfdeda77f",
"name": "EC2ContainerService-Calsoft-EcsInstanceAsg-1HBH89HP6AEJN",
"href": "/systems/59fe22a0-8dc2-4256-b0b6-3c5bfdeda77f",
"resource_id": "13437763-0cf3-4b0a-855f-25f9a383796f",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2017-06-28 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.03.d x86_64 ecs hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-04351e12"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2017.03.d-amazon-ecs-optimized"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-Calsoft/90805c60-5c06-11e7-9023-500c217b1cd2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-Calsoft"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-Calsoft"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-2365d552"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-2bb90352"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-Calsoft/90805c60-5c06-11e7-9023-500c217b1cd2"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 28, 2017 1:35:43 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-calsoft-ecsinstancelc-15m3z7w0asclk"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "1"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "a4015d8b-ed95-4633-97b0-2d4a77e1b033",
"name": "Mark-Tag-Mapping-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1",
"href": "/systems/a4015d8b-ed95-4633-97b0-2d4a77e1b033",
"resource_id": "i-0af01a4f4efb1e8be",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Engineering"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-04-18 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.0.20181129 x86_64 hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0cd3dfa4e37921605"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2018.03.0.20181129-x86_64-gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "mark-test-key"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "_Name : QA"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Engineering"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Cost Center : Richmond Hill"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Engineering"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Mark-Tag-Mapping-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1234567890-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "name : qa'"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : !@#$%^&*()'?<>"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : myang"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "user_NAME : qa"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-24"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-c8361f82"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:44 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 18, 2019 2:00:55 PM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 18, 2019 2:00:56 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 18, 2019 2:00:55 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Engineering"
},
{
"id": "CLD.COST.CENTER",
"name": "Cost Center",
"value": "Richmond Hill"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "myang"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-2c"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "3701018e-aa3a-4e6d-8e11-c9c07116343d",
"name": "CPU Options",
"href": "/systems/3701018e-aa3a-4e6d-8e11-c9c07116343d",
"resource_id": "i-083292b1b5756df40",
"type": "vm",
"platform_model": "r5a.4xlarge",
"platform": "AWS",
"total_physical_cpus": "16",
"cores_per_cpu": "1",
"memory": "140800",
"attributes": [
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "8"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2020-07-28 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "16.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "534.97"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "140800.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 16.04 lts, amd64 xenial image build on 2020-06-10"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0a0ddd875a1ea2c7f"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20200610"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "myang"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_product_codes",
"name": "Product Codes",
"value": "Val1"
},
{
"id": "attr_product_codes",
"name": "Product Codes",
"value": "Val2"
},
{
"id": "attr_product_codes",
"name": "Product Codes",
"value": "Val3"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : CPU Options"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-6"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-6e81d927"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 09:00:28 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "145525148011"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-62cb7c04"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jul 28, 2020 9:27:58 PM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jul 28, 2020 9:27:59 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jul 28, 2020 9:27:58 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "757f3c5e-94fb-4a30-98ae-c26f97146fcc",
"name": "tom-vpc-m1.small",
"href": "/systems/757f3c5e-94fb-4a30-98ae-c26f97146fcc",
"resource_id": "i-019b8705b588a8b8b",
"type": "vm",
"platform_model": "m1.small",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1856",
"attributes": [
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-03-08 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "9.2"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1856.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.1.20180115 x86_64 hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-97785bed"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2017.09.1.20180115-x86_64-gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "aws-ec2-t4"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:actual-workload-pattern : https://acme.densify.com/workload/X4BQN6774DY8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:ideal-instance-type : t2.medium"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:monthly-savings-potential : 192"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:predicted-uptime : 0.85"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:recommended-family : t2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:recommended-size : medium"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:recommend-RI-coverage : Yes"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:remediation-effort : Low"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:required-cpus : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:required-memory : 3328"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify:sizing-basis : Sized via actual workload data"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-ideal-instance-type : t2.small"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-monthly-savings-potential : $22.29"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-predicted-uptime : 100%"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-recommended-family : t2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-recommended-size : small"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-recommend-RI-coverage : Yes"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-remediation-effort : Low"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-required-cpus : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-required-memory : 2.1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-sizing-basis : No Memory Utilization Data"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-workload-pattern-id : e05ef2c3-9cdf-4127-a714-076b33f93ab8"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "name : tom-m1-small-vpc"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : tom-vpc-m1.small"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "network : vpc"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "url : http://www.densify.com"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-63"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Mar 08, 2018 8:39:47 PM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Mar 8, 2018 8:39:48 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Mar 8, 2018 8:39:47 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "a86060d1-eadd-4f1b-a302-e6559f0ae2b5",
"name": "EC2ContainerService-default-EcsInstanceAsg-1SCER88I1U6RK",
"href": "/systems/a86060d1-eadd-4f1b-a302-e6559f0ae2b5",
"resource_id": "2df2c1b0-205f-4c25-a0cc-facfe3b4fb7b",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.09.g x86_64 ecs hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-275ffe31"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2016.09.g-amazon-ecs-optimized"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-default/bdf01260-4b55-11e7-9dcc-500c286e44d1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-default"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-default"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-f33c2d8d"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0ba97072"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-default/bdf01260-4b55-11e7-9dcc-500c286e44d1"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 7, 2017 7:49:38 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-default-ecsinstancelc-u4a42byy5mrh"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "5"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "ecb4590b-30bf-4d2e-ade3-2b3d67b265ca",
"name": "myang001",
"href": "/systems/ecb4590b-30bf-4d2e-ade3-2b3d67b265ca",
"resource_id": "c4e5ac9d-4a4c-4937-a5e7-e3b7e8d422fa",
"type": "asg",
"platform_model": "t3.nano",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "544",
"attributes": [
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "544.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20211001.1 x86_64 hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-02e136e904f3da870"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20211001.1-x86_64-gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t3.nano"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "eb61c953-b02f-47eb-8bbf-dddf1447f5c4"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-0ba97072"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Nov 12, 2021 3:33:43 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "544"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "myang-cw"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "3f21cee9-adbd-448e-8d17-0f774fa9fc65",
"name": "i-02c328b57eda358c0",
"href": "/systems/3f21cee9-adbd-448e-8d17-0f774fa9fc65",
"resource_id": "i-02c328b57eda358c0",
"type": "vm",
"platform_model": "t3.2xlarge",
"platform": "AWS",
"total_physical_cpus": "8",
"cores_per_cpu": "1",
"memory": "35200",
"attributes": [
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "4"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2021-06-07 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "8.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "184"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "35200.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "canonical, ubuntu, 20.04 lts, amd64 focal image build on 2021-04-30"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-09e67e426f25ce0d7"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-20210430"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "albin"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : awu"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 07, 2021 3:46:53 PM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 7, 2021 3:46:54 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Jun 7, 2021 3:46:53 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "awu"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "a60ad9e4-4184-4b79-9a92-7a7009e505bb",
"name": "spot",
"href": "/systems/a60ad9e4-4184-4b79-9a92-7a7009e505bb",
"resource_id": "0838f71e-b882-489b-9b42-8dcaf49da189",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Engineering"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.l x86_64 ecs hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-aff65ad2"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2017.09.l-amazon-ecs-optimized"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MaxSpotPrice",
"name": "Maximum Spot Price",
"value": "0.0039"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Engineering"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Owner"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-56384221"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 18, 2019 7:12:59 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "spot"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Owner"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "spotcopycopy"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "63935b6a-948f-4a00-a2ca-dbfc1ce673a5",
"name": "New Instance 1",
"href": "/systems/63935b6a-948f-4a00-a2ca-dbfc1ce673a5",
"resource_id": "i-07d3af583d28fd7d4",
"type": "vm",
"platform_model": "m4.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "8832",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-09-21 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "59.8"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8832.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.03.3 x86_64 hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-6869aa05"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2016.03.3.x86_64-gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "host"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : New Instance 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Project : Demo"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-29"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 21, 2016 5:24:47 AM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 21, 2016 5:24:47 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 21, 2016 5:24:47 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "CLD.PROJECT",
"name": "Project",
"value": "Demo"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "a69c3463-4199-470f-bc15-79999f49fcb9",
"name": "c4 Test",
"href": "/systems/a69c3463-4199-470f-bc15-79999f49fcb9",
"resource_id": "i-06d390ca1a0c59d95",
"type": "vm",
"platform_model": "c4.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4096",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "QA"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_Application",
"name": "Application",
"value": "Testing"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-09-09 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-2d39803a"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20160627"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "host"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_Provisioning_ID",
"name": "Provisioning ID",
"value": "Markham'333"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Application : Testing"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : QA"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Cost Center : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : QA"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Environment : 123456789012345678901234567890123456789012345678901234567890123456789033333"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "id : 8473f0c9-193d-46e4-a2b5-3eaae24e487a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "InventoryCode : RH222"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : c4 Test"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : zchen"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "ProductCode : RH111"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Project : Test"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Provisioning Id : Markham'333"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-24"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Sep 09, 2016 6:57:14 AM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Sep 9, 2016 6:57:15 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Sep 9, 2016 6:57:14 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "QA"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "zchen"
},
{
"id": "CLD.PROJECT",
"name": "Project",
"value": "Test"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "5d459f84-babb-4cbb-b613-cba884c386c8",
"name": "myname",
"href": "/systems/5d459f84-babb-4cbb-b613-cba884c386c8",
"resource_id": "i-036de50c9240d635c",
"type": "vm",
"platform_model": "c4.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4096",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-10-06 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-2d39803a"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20160627"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "host"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : myname"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tdubovchenko"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Project : Demo"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "Cirba VPC"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "default"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-2"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-37"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 06, 2016 11:58:37 AM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Oct 6, 2016 11:58:37 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 6, 2016 11:58:37 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tdubovchenko"
},
{
"id": "CLD.PROJECT",
"name": "Project",
"value": "Demo"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "50d4c13c-c723-44e4-b9af-1ae4fb5afca7",
"name": "Test Name",
"href": "/systems/50d4c13c-c723-44e4-b9af-1ae4fb5afca7",
"resource_id": "i-0732cb7755ff87961",
"type": "vm",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-10-05 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-ee7805f9"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "test"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Test Name"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Schedule : sg-test1"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-36"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 05, 2016 10:50:57 AM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Oct 5, 2016 10:50:57 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 5, 2016 10:55:19 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:usertag_schedule",
"name": "Schedule",
"value": "sg-test1"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "d20e6781-e436-4c75-b39f-d043ed650fc3",
"name": "tem1_4",
"href": "/systems/d20e6781-e436-4c75-b39f-d043ed650fc3",
"resource_id": "i-0113b67377ee899e4",
"type": "vm",
"platform_model": "t3.micro",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-06-05 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "temp"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-0ea0cc4cc58bc43b4"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : tem1_4"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-86"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 05, 2019 2:18:02 AM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 5, 2019 2:18:02 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Nov 12, 2019 2:06:03 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "7f22a229-f1bb-4b45-9306-d0029f5c015c",
"name": "awseb-e-tmqifhqf5f-stack-AWSEBAutoScalingGroup-NECDWWOZKSJZ",
"href": "/systems/7f22a229-f1bb-4b45-9306-d0029f5c015c",
"resource_id": "6f182b4a-3ce4-4f48-b055-ff088901f331",
"type": "asg",
"platform_model": "t1.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "672",
"attributes": [
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "672.0"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0f481618"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "aws-elasticbeanstalk-amzn-2016.09.0.x86_64-docker-pv-201610270319"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t1.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "0ddb282a-8c01-4fa4-8585-5c708dcdfc87"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : AWSEBAutoScalingGroup"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/awseb-e-tmqifhqf5f-stack/71858dd0-9d3e-11e6-9c8e-503f23fb55fe"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : awseb-e-tmqifhqf5f-stack"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "elasticbeanstalk:environment-id : e-tmqifhqf5f"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "elasticbeanstalk:environment-name : Default-Environment"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Default-Environment"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "awseb-e-tmqifhqf5f-stack-AWSEBSecurityGroup-E0LEHJNFU3RD"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "paravirtual"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "AWSEBAutoScalingGroup"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/awseb-e-tmqifhqf5f-stack/71858dd0-9d3e-11e6-9c8e-503f23fb55fe"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 28, 2016 6:44:21 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "672"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "awseb-e-tmqifhqf5f-stack-awsebautoscalinglaunchconfiguration-1f7jlied2ecr9"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "4"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "a333d495-87c9-474c-9e31-94916c0dffe9",
"name": "Attr_Test_Maria",
"href": "/systems/a333d495-87c9-474c-9e31-94916c0dffe9",
"resource_id": "i-071386a536c22a542",
"type": "vm",
"platform_model": "t1.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "672",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Abcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstu"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2017-04-19 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "672.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.03.0.20170401 x86_64 pv ebs"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-27ce4931"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-pv-2017.03.0.20170401-x86_64-ebs"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "!@#$%^&*()_+,.<>;\"'|\\{}_- : aaa"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit222 : Business Unit 222"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Cost Center : Cost Center 123"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Abcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghijklmnopqrstuvwzyzabcdefghi"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Dept : Replace Dep"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Attr_Test_Maria"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Operational Environment 1 : Operational Environment 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Owner Maria 2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Product Code 1 : my xxx code 1"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/sda1"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-1"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 09:00:31 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "145525148011"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "paravirtual"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Apr 19, 2017 6:55:55 PM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Apr 19, 2017 6:55:55 PM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Apr 19, 2017 6:55:55 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.COST.CENTER",
"name": "Cost Center",
"value": "Cost Center 123"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Owner Maria 2"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "145525148011-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "145525148011-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "145525148011"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "5973ca84-70b1-498c-8e06-44fbd76e7fb2",
"name": "Test Instance 152",
"href": "/systems/5973ca84-70b1-498c-8e06-44fbd76e7fb2",
"resource_id": "i-0fb20642d484c568f",
"type": "vm",
"platform_model": "c4.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4096",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-10-28 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.09.0.20160923 x86_64 hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-c481fad3"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2016.09.0.20160923-x86_64-gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "host"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : Test Instance 152"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Schedule : qaz"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-39"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 28, 2016 9:20:07 AM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Oct 28, 2016 9:20:07 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 28, 2016 9:34:01 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:usertag_schedule",
"name": "Schedule",
"value": "qaz"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "09910615-80eb-4618-ab7e-0a276e406e46",
"name": "i-03e6b8b6427bdb683",
"href": "/systems/09910615-80eb-4618-ab7e-0a276e406e46",
"resource_id": "i-03e6b8b6427bdb683",
"type": "vm",
"platform_model": "c4.large",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4096",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Product Management"
},
{
"id": "attr_3",
"name": "Custom Suppress Reason",
"value": "Suppress due to existing RIs"
},
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_Custom1",
"name": "Custom 1",
"value": "Locked"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2016-10-26 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "73.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2016.09.0.20160923 x86_64 hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-c481fad3"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2016.09.0.20160923-x86_64-gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "cirba123"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "host"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : Product Management"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : tyuyitung"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-38"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-e112fab9"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:40 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-998cebfd"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Oct 26, 2016 6:10:43 AM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Oct 26, 2016 6:10:44 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Oct 26, 2016 6:10:43 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Product Management"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "tyuyitung"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1a"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "d1d5c303-5cbc-420d-9ccd-c8be3418a871",
"name": "anna-spot-template",
"href": "/systems/d1d5c303-5cbc-420d-9ccd-c8be3418a871",
"resource_id": "b8949266-9228-4991-9ba9-d007d9c39985",
"type": "asg",
"platform_model": "t2.nano",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "544",
"attributes": [
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "544.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2018.03.0.20190611 x86_64 hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-02f706d959cedf892"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-hvm-2018.03.0.20190611-x86_64-gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MaxSpotPrice",
"name": "Maximum Spot Price",
"value": "0.015"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.nano"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "f0d844c3-e7f2-4798-862b-3e7e55304200"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:44 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-8ee50de7"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Aug 9, 2019 7:02:25 PM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "spot"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "544"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHTPLNAME",
"name": "__ASG Launch Template Name",
"value": "spot_template"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "2"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-2c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-2"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "759973ba-55a3-4f74-8ebf-fe3f49f60ff6",
"name": "tem1_3",
"href": "/systems/759973ba-55a3-4f74-8ebf-fe3f49f60ff6",
"resource_id": "i-06ee52a401b2a2b71",
"type": "vm",
"platform_model": "t3.micro",
"platform": "AWS",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_arch",
"name": "OS Architecture",
"value": "x86_64"
},
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "true"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_cpuopt_cores",
"name": "__CPU cores",
"value": "1"
},
{
"id": "attr_cpuopt_threads_per_core",
"name": "__CPU threads per core",
"value": "2"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-06-05 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "46"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux 2 ami 2.0.20190508 x86_64 hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-0c6b1d09930fac512"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn2-ami-hvm-2.0.20190508-x86_64-gp2"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_key_name",
"name": "Key Name",
"value": "temp"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:id : lt-00c18c6f25f6eaf10"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:ec2launchtemplate:version : 1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : tem1_3"
},
{
"id": "attr_root_dev_name",
"name": "Root Device Name",
"value": "/dev/xvda"
},
{
"id": "attr_root_dev_type",
"name": "Root Device Type",
"value": "ebs"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "launch-wizard-86"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_subnet_id",
"name": "Subnet ID",
"value": "subnet-9ff9c9fb"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:59 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-26a1585d"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jun 05, 2019 1:44:43 AM"
},
{
"id": "aws:imageattachtime",
"name": "Image Attach Time",
"value": "Jun 5, 2019 1:44:43 AM"
},
{
"id": "aws:launchtime",
"name": "Launch Time",
"value": "Nov 12, 2019 2:12:28 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "us-east-1b"
},
{
"id": "state_power",
"name": "Power State",
"value": "Stopped"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
},
{
"id": "915c5ab8-0b04-4ba0-9970-02c957d1f2fb",
"name": "EC2ContainerService-Calsoft-linux-cluster-EcsInstanceAsg-40YSZTVXZGPK",
"href": "/systems/915c5ab8-0b04-4ba0-9970-02c957d1f2fb",
"resource_id": "88fdb8ea-2e54-4ed4-9a2b-d25c31b1d10b",
"type": "asg",
"platform_model": "t2.micro",
"platform": "AWS",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1088",
"attributes": [
{
"id": "attr_aws_ebs_optimized",
"name": "EBS Optimized",
"value": "false"
},
{
"id": "attr_aws_health_check",
"name": "Health Check",
"value": "ec2"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ena_support",
"name": "ENA Support",
"value": "true"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "18.4"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1088.0"
},
{
"id": "attr_image_description",
"name": "Image Description",
"value": "amazon linux ami 2017.09.f x86_64 ecs hvm gp2"
},
{
"id": "attr_image_id",
"name": "Image ID",
"value": "ami-ba722dc0"
},
{
"id": "attr_image_name",
"name": "Image Name",
"value": "amzn-ami-2017.09.f-amazon-ecs-optimized"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.0"
},
{
"id": "attr_placement_tenancy",
"name": "Placement Tenancy",
"value": "default"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "t2.micro"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "a1dcc3a7-d90b-4938-bc93-5b7ec6d431b6"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:logical-id : EcsInstanceAsg"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-Calsoft-linux-cluster/26103ee0-f9c2-11e7-a0be-50fae9e50c9a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "aws:cloudformation:stack-name : EC2ContainerService-Calsoft-linux-cluster"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Description : This instance is the part of the Auto Scaling group which was created through ECS Console"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : ECS Instance - EC2ContainerService-Calsoft-linux-cluster"
},
{
"id": "attr_security_groups",
"name": "Security Groups",
"value": "sg-6dbfc519"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 30 2023, 07:14:37 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "209726931496"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "hvm"
},
{
"id": "attr_vpc_id",
"name": "VPC ID",
"value": "vpc-63d1d41b"
},
{
"id": "aws:cloudformation:logical-id",
"name": "CloudFormation Logical ID",
"value": "EcsInstanceAsg"
},
{
"id": "aws:cloudformation:stack-id",
"name": "CloudFormation Stack ID",
"value": "arn:aws:cloudformation:us-east-1:209726931496:stack/EC2ContainerService-Calsoft-linux-cluster/26103ee0-f9c2-11e7-a0be-50fae9e50c9a"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "Jan 15, 2018 7:03:57 AM"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "no license required"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "aws:mixedpolicy",
"name": "Mixed Instance Policy Set",
"value": "false"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1088"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "209726931496-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "209726931496-Tier2"
},
{
"id": "VE.AWS.ASG.CURSZ",
"name": "__ASG Current Size",
"value": "0"
},
{
"id": "VE.AWS.ASG.DESIREDCAP",
"name": "__ASG Desired Capacity",
"value": "0"
},
{
"id": "VE.AWS.ASG.LAUNCHCFG",
"name": "__ASG Launch Configuration Name",
"value": "ec2containerservice-calsoft-linux-cluster-ecsinstancelc-5b6gvd18cs8z"
},
{
"id": "VE.AWS.ASG.MAXSZ",
"name": "__ASG Max Size",
"value": "3"
},
{
"id": "VE.AWS.ASG.MINSZ",
"name": "__ASG Min Size",
"value": "0"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east-1c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east-1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "209726931496"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AWS"
}
]
}
]
description: |-
After detailed analysis of your cloud environment, Kubex generates recommendations to help you reduce risk and cost.
The next step is to decide which recommendations to action. Kubex provides useful additional details. The following requests demonstrate some of the available options.
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
description: |-
Before Kubex can make recommendations for optimizing your AWS environment, data collection must be initialized. Once your instance data begins rolling in, the analysis can be performed and recommendations generated.
See [Optimizing AWS EC2 Instances](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_AWS_EC2_Instances.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 2.2 Analyzing Azure
item:
- name: 2.2.1 Azure Setup
item:
- name: List All Azure Policies
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/azure/policy?details=true"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- policy
query:
- key: details
value: "true"
description: |-
_This is an optional step as the analysis runs with the default policy if no policy is specified._
Kubex Policy affects Recommendations. You have a choice of policies ranging from more aggressive (lowest operating cost, a bit of work on your end for review) to more conservative (more modest operating cost savings, minimal to no work on your end for review).
Regardless of which policy you choose, Kubex recommendations are always safe. Most can be fully automated with an orchestration tool of your choice.
Note:
> Currently for Azure you need to contact your Kubex Advisor to make changes to the policy.
See example. Refer to Kubex Online Help [Policy](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Policy.htm?Highlight=policy)
response:
- name: Review Policy
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/azure/policy?details=true"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- policy
query:
- key: details
value: "true"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Content-Encoding
value: gzip
- key: Vary
value: Accept-Encoding
- key: Date
value: Sat, 16 Feb 2019 13:48:36 GMT
cookie: []
body: |-
[
{
"policyId": "20b1afdf-9c24-447f-8eca-759005fd5a54",
"policyInstanceId": "21099d91-560b-4358-9da6-284cc4f44811",
"name": "DevOps-Efficiency",
"description": "This policy is intended for generating instance sizing and family optimization that provide maximum operational efficiency (and lowest operating cost). This policy also includes recommendations rated as Moderate effort, generating higher cost reduction than the Kubex Defaults policy. Because of this, any recommendations should be reviewed before implementing.\r\nThe resource utilization of each system is modeled using a minimum of 3 day and up to 30 days of historical workload.\r\nWhen optimizing instance sizes and families, the predicted CPU and memory usage levels must not exceed 75% and 95%, respectively.\r\nWhen memory usage metrics are not available, the analysis effectively assumes the existing memory allocation of the instance is required and will not change the memory configuration."
},
{
"policyId": "20b1afdf-9c24-447f-8eca-759005fd5a54",
"policyInstanceId": "78007044-2354-431a-a4eb-f48361128c82",
"name": "DevOps-Automation",
"description": "This policy is intended for generating instance sizing and instance family optimization recommendations that require little or no review before being implemented. CLOE utilizes rule-driven analytics to predict the effort of changing instance type from current to recommended, and this policy favors Low effort recommendations, producing higher automation at the expense of lower cost savings.\r\nThe resource utilization of each system is modeled using a minimum of 7 days and up to 90 days of historical workload.\r\nWhen optimizing instance sizes and families, the predicted CPU and memory usage must not exceed 65% and 85%, respectively.\r\nThis policy will not specify burstable (T-series) instance families for workloads unless they are already running in a burstable family and will not change CPU Architecture from Intel to AMD or vice versa.\r\nWhen memory usage metrics are not available, the analysis assumes the existing memory allocation is required and will not change the memory configuration."
},
{
"policyId": "20b1afdf-9c24-447f-8eca-759005fd5a54",
"policyInstanceId": "e1cc3669-71dd-4d9f-bed8-5f959b67fd75",
"name": "DevOps-Default",
"description": "This policy reflects best practices for generating instance sizing and instance family optimization recommendations.\r\nThe resource utilization of each system is modeled using a minimum of 7 days and up to 60 days of historical workload.\r\nWhen optimizing instance sizes and families, the predicted CPU and memory usage levels must not exceed 70% and 90%, respectively.\r\nWhen memory usage metrics are not available, the analysis effectively assumes the existing memory allocation of the instance is required and will not change the memory configuration."
}
]
description: In this section you will get a listing of available polices that can be used when analyzing your collected data.
- name: 2.2.2 Azure Data Collection and Analysis
item:
- name: Initiate Data Collection and Analysis
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"subscriptionId": "{{Azure_SubsID}}",
"applicationId": "{{Azure_ApplicationId}}",
"secretKey": "{{Azure_secretKey}}",
"tenantId": "{{Azure_tenantId}}",
"connectionName": "{{Azure_connectionName}}"
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/azure/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- analyze
description: |-
The /analysis/cloud/azure/analyze request kicks this process off and schedules it to automatically repeat nightly.
Notes:
> This process typically takes a minimum of 30 minutes to complete the first time you run it. You can poll status or setup a webhook to check when it's done.
> Body of POST request references variables `subscriptionId`, `applicationId`, `secretKey`, `tenantId` and `connectionName`. See overview in the Collection documentation.
See example. Refer to Refer to Kubex Online Help [AZURE Analysis](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Azure_Analyze.htm).
response:
- name: Initiate Data Collection and Analysis - returned response after initiating
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"subscriptionId": "{{Azure_SubsID}}",
"applicationID": "{{Azure_applicationID}}",
"secretKey": "{{Azure_secretKey}}",
"tenantID": "{{Azure_tenantID}}",
"serviceAcctJSON": "",
"connectionName": "",
"policyInstanceId": "",
"webHook": ""
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/azure/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- azure
- analyze
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-length
value: "70"
- key: date
value: Fri, 24 Jul 2020 18:56:40 GMT
- key: x-envoy-upstream-service-time
value: "9822"
- key: server
value: istio-envoy
cookie: []
body: |-
{
"href": "Not available",
"message": "Analysis in progress",
"status": 200
}
- name: Initiate Data Collection and Analysis
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"subscriptionId": "{{Azure_SubsID}}",
"applicationID": "{{Azure_applicationID}}",
"secretKey": "{{Azure_secretKey}}",
"tenantID": "{{Azure_tenantID}}",
"serviceAcctJSON": "",
"connectionName": "",
"policyInstanceId": "",
"webHook": ""
}
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/azure/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- azure
- analyze
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "70"
- key: Date
value: Fri, 15 Feb 2019 17:17:56 GMT
cookie: []
body: |-
{
"href": "/analysis/azure/null/status",
"message": "OK",
"status": 200
}
- name: Initiate Data Collection and Analysis (Historical Audit)
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"subscriptionId": "{{Azure_SubsID}}",
"applicationId": "{{Azure_ApplicationId}}",
"secretKey": "{{Azure_secretKey}}",
"tenantId": "{{Azure_tenantId}}",
"connectionName": "{{Azure_connectionName}}",
"triggerAdhocAudit": "", //optional
"startDayOffset": "", //optional
"endDayOffset": "" //optional
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/azure/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- analyze
description: |-
Historical Data Collection:
The /analysis/cloud/azure/analyze request kicks this process off and schedules it to automatically repeat nightly.
Notes:
When Kubex initiates data collection, normally the first audit collects 30 days of historical data. This is run once and subsequent audits collect only the last day's data.
If the initial historical audit has been disabled for performance reasons, you will need to run an ad-hoc task to collect the historical data.
The following settings define the range of historical data to be collected:
`Start date offset` --This is number of days from the 30-day maximum, used to define the start of the range.
`End date offset` -- This is number of days from yesterday, to end the range of data collected. When AFv2 is enabled, this setting is not used and the end date is always "yesterday".
These parameters allow you to reduce the number of days of historical data to be collected.
> Body of POST request references variables `subscriptionId`, `applicationId`, `secretKey`, `tenantId` and `connectionName`. See overview in the Collection documentation.
See example. Refer to Refer to Kubex Online Help [AZURE Analysis](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Azure_Analyze.htm).
response:
- name: Initiate Data Collection and Analysis (Historical Audit) - returned response after initiating
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"subscriptionId": "{{Azure_SubsID}}",
"applicationID": "{{Azure_applicationID}}",
"secretKey": "{{Azure_secretKey}}",
"tenantID": "{{Azure_tenantID}}",
"triggerAdhocAudit": "",
"startDayOffset": "", //optional
"endDayOffset": "" //optional
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/azure/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- analyze
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-length
value: "70"
- key: date
value: Fri, 24 Jul 2020 18:56:40 GMT
- key: x-envoy-upstream-service-time
value: "9822"
- key: server
value: istio-envoy
cookie: []
body: |-
{
"href": "Not available",
"message": "Analysis in progress",
"status": 200
}
- name: Initiate Data Collection and Analysis (Historical Audit)
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"subscriptionId": "{{Azure_SubsID}}",
"applicationID": "{{Azure_applicationID}}",
"secretKey": "{{Azure_secretKey}}",
"tenantID": "{{Azure_tenantID}}",
"triggerAdhocAudit": "",
"startDayOffset": "", //optional
"endDayOffset": "" //optional
}
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/azure/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- analyze
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "70"
- key: Date
value: Fri, 15 Feb 2019 17:17:56 GMT
cookie: []
body: |-
{
"href": "/analysis/cloud/azure/null/status",
"message": "OK",
"status": 200
}
- name: Setup Data Collection via Kubex UI
request:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/api/ping"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- api
- ping
description: |-
_This Ping request is a no-op and simply a placeholder for somewhere to hang a description_.
---
Currently, Azure Cloud data collection is initiated from the Kubex Console using the _Public Cloud Connections_ wizard. Before you can use the wizard, you need Azure credentials for your subscription.
> Refer to Kubex Online Help [Azure Credentials](https://densify.com/docs/WebHelp_Densify_Cloud/Content/Data_Collection_for_Public_Cloud_Systems/Microsoft_Azure_Data_Collection_Prerequisites.htm) for setup details.
> Once you have Azure Cloud credentials, refer to Kubex Online Help [Public Cloud Connection Wizard > Configuring a Connection to Microsoft Azure](https://densify.com/docs/WebHelp_Densify_Cloud/Content/Densify_Com/Using_the_Public_Cloud_Connection_Wizard.htm#Azure_Connection) for details.
After you click **Save Connection** on the wizard, the data collection process starts. When data collection completes, the _Analysis_ process is automatically triggered.
Important Note:
> **Analysis requests such as /analysis/cloud/azure will only return data after data collection is complete and the Analysis process has begun.**
response: []
- name: List all Azure Analyses
event:
- listen: test
script:
exec:
- "var firstdata = pm.response.json()[0];\r"
- pm.environment.set("analysisId", firstdata.analysisId);
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/azure"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
description: |-
Returns a list of all existing Azure analyses, with associated references and status.
The elements `analysisResults`, `analysisStatus` and `analysisId` are commonly used in many other requests.
Note:
> In this example, the environment variable `analysisId` is set to the first returned _analysisId_ element for future use.
See example. Refer to Kubex Online Help [Analysis Entity](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Entity.htm?Highlight=analysis%20entity)
response:
- name: List all Generated Analyses
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: https://your_densify_instance:443/api/v2/analysis/cloud/azure
protocol: https
host:
- your_densify_instance
port: "443"
path:
- api
- v2
- analysis
- cloud
- azure
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "1615"
- key: Date
value: Fri, 04 Sep 2020 16:20:45 GMT
cookie: []
body: |-
[
{
"accountId": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"policyInstanceId": "72aa4f1a-906a-4af4-94e9-f8fb606cdfe9",
"analysisCompletedOn": 1589935057627,
"analysisResults": "/analysis/cloud/azure/b3573fb3-0a37-406d-bb08-24f088e8bc63/results",
"accountName": "Test Subscription",
"policyName": "Initial Assessment",
"analysisId": "b3573fb3-0a37-406d-bb08-24f088e8bc63",
"href": "/analysis/cloud/azure/b3573fb3-0a37-406d-bb08-24f088e8bc63",
"analysisStatus": "/analysis/cloud/azure/b3573fb3-0a37-406d-bb08-24f088e8bc63/status",
"analysisName": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"accountId": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f",
"policyInstanceId": "72aa4f1a-906a-4af4-94e9-f8fb606cdfe9",
"analysisCompletedOn": 1589978789707,
"analysisResults": "/analysis/cloud/azure/c1e0bb64-6582-41e8-b7f6-341797af4436/results",
"policyName": "Initial Assessment",
"analysisId": "c1e0bb64-6582-41e8-b7f6-341797af4436",
"href": "/analysis/cloud/azure/c1e0bb64-6582-41e8-b7f6-341797af4436",
"analysisStatus": "/analysis/cloud/azure/c1e0bb64-6582-41e8-b7f6-341797af4436/status",
"analysisName": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"accountId": "00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc",
"policyInstanceId": "129fa559-2db5-40ff-8a57-94c56900308a",
"analysisCompletedOn": 1585726564073,
"analysisResults": "/analysis/cloud/azure/6b8ab8e1-a026-4db9-a4ae-2d684446731f/results",
"policyName": "Azure Assessement",
"analysisId": "6b8ab8e1-a026-4db9-a4ae-2d684446731f",
"href": "/analysis/cloud/azure/6b8ab8e1-a026-4db9-a4ae-2d684446731f",
"analysisStatus": "/analysis/cloud/azure/6b8ab8e1-a026-4db9-a4ae-2d684446731f/status",
"analysisName": "00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc"
}
]
- name: Get Analysis Status
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
name: Content-Type
type: text
value: application/json
- key: Content-Type
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/azure/{{analysisId}}/status"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- "{{analysisId}}"
- status
description: |-
Check Azure analysis status.
_This requests will only return data after the initial Data Collection has completed_
Note:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
See example. Refer to Kubex Online Help [Analysis Status](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Status.htm)
response:
- name: Get Analysis Status
originalRequest:
method: GET
header:
- key: Accept
name: Content-Type
type: text
value: application/json
- key: Content-Type
value: application/json
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/azure/6b8ab8e1-a026-4db9-a4ae-2d684446731f/status
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- azure
- 6b8ab8e1-a026-4db9-a4ae-2d684446731f
- status
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "164"
- key: Date
value: Tue, 19 Feb 2019 19:05:13 GMT
cookie: []
body: |-
{
"analysisStage": "Completed",
"webHookStatus": "",
"statusMessage": "Analysis 00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc was last completed on Thu Feb 07 15:34:59 EST 2019."
}
- name: Delete Azure data collection and analysis
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header:
- key: Accept
type: text
value: application/json
body:
mode: raw
raw: "{\r\n\_\_\_\_\"webHook\":\_//optional\r\n{\r\n\_\_\_\_\_\_\_\_\"uri\": \"http://mywebhookserver/webhook/results\",\r\n\_\_\_\_\_\_\_\_\"authType\": \"basic\",\r\n\_\_\_\_\_\_\_\_\"authValue\": \"tester:testerpassword\"\r\n\_\_\_\_\_\_\_\_\_}\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\r\n}"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/azure/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- "{{analysisId}}"
description: |-
The DEL /webhook/analysis/{{platform}}/{{subplatform}}/{{analysisId}} resource is used to delete a webhook definition from an existing Analysis.
In this example, the webhook definition is removed from a specific AWS cloud Analysis.
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to delete a webhook for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
See example. Refer to [Analysis Webhook](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Webhook.htm?Highlight=webhook).
response:
- name: Delete Azure data collection and analysis
originalRequest:
method: DELETE
header:
- key: Accept
type: text
value: application/json
- key: Content-Type
name: Content-Type
value: application/json
type: text
body:
mode: raw
raw: "{\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\r\n\_\_\_\_\"webHook\": //optional\r\n{\r\n\_\_\_\_\_\_\_\_\"uri\": \"http://mywebhookserver/webhook/results\",\r\n\_\_\_\_\_\_\_\_\"authType\": \"basic\",\r\n\_\_\_\_\_\_\_\_\"authValue\": \"tester:testerpassword\"\r\n\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_}\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\r\n}"
options:
raw:
language: json
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/azure/your_analysis_id
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- azure
- your_analysis_id
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "29"
- key: Date
value: Tue, 23 Jun 2020 20:35:37 GMT
cookie: []
body: |-
{
"message": "ok",
"status": 200
}
description: |-
Before initiating data collection you must configure your public cloud as outlined in [Microsoft Azure Data Collection Prerequisites](https://www.densify.com/docs/WebHelp_Densify_Cloud/Content/Data_Collection_for_Public_Cloud_Systems/Microsoft_Azure_Data_Collection_Prerequisites.htm).
The first audit collects 30 days of historical data. After that, daily nightly audits collect the last 24 hours of data.
After data collection completes, the analyses run automatically. See [Optimizing Microsoft Azure Virtual Machine Instances](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_Microsoft_Azure_Virtual_Machine_Instances.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 2.2.3 Azure Analysis Results
item:
- name: Get Analysis System List
event:
- listen: test
script:
exec:
- "var firstdata = pm.response.json()[0];\r"
- pm.environment.set("entityId", firstdata.entityId);
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/azure/{{analysisId}}/systems"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- "{{analysisId}}"
- systems
description: |-
Return a collection of all the systems that were included in the optimization analysis.
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
> In this example, the environment variable `entityId` is set to the first returned _entityId_ element for future use.
See example. Refer to Kubex Online Help [Azure Analysis Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Azure_Systems.htm).
response:
- name: Get Analysis System List
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/azure/your_analysis_id/systems
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- azure
- your_analysis_id
- systems
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: vary
value: accept-encoding
- key: content-encoding
value: gzip
- key: content-type
value: application/json;charset=UTF-8
- key: date
value: Tue, 09 Jun 2020 22:19:47 GMT
- key: x-envoy-upstream-service-time
value: "31"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"serviceType": "Virtual Machine",
"resourceId": "952d21d6-9ba2-4217-8df1-f5f6417ded45",
"powerState": "Running",
"currentType": "basic_a0",
"displayName": "TestVMTestSub",
"entityId": "0d2f5815-1dbe-439c-83e3-788180e41fb2",
"href": "/systems/0d2f5815-1dbe-439c-83e3-788180e41fb2"
},
{
"serviceType": "Virtual Machine",
"resourceId": "0a5d756b-e70c-42ca-b02a-b3887c52ba49",
"powerState": "Offline",
"currentType": "standard_f1s",
"displayName": "match-ri",
"entityId": "28e4548b-f739-4c20-86ce-f3667cd56865",
"href": "/systems/28e4548b-f739-4c20-86ce-f3667cd56865"
},
{
"serviceType": "Virtual Machine",
"resourceId": "7a5316a0-4063-4123-a036-3625fea91033",
"powerState": "Offline",
"currentType": "basic_a0",
"displayName": "SQLServerWeb-Ubuntu",
"entityId": "321cbabe-dc9e-400a-9988-7e84c58e5369",
"href": "/systems/321cbabe-dc9e-400a-9988-7e84c58e5369"
},
{
"serviceType": "Virtual Machine",
"resourceId": "sql-developer-ubuntu3545.cloudapp.net",
"powerState": "Offline",
"currentType": "standard_ds12_v2",
"displayName": "SQL-Developer-Ubuntu",
"entityId": "33d2c6d6-c307-428c-96f6-723c21516927",
"href": "/systems/33d2c6d6-c307-428c-96f6-723c21516927"
},
{
"serviceType": "Virtual Machine",
"resourceId": "4292cf24-e5ce-44f2-82bf-29f06f0f7500",
"powerState": "Offline",
"currentType": "standard_b1s",
"displayName": "ML-Windows",
"entityId": "3eaf5bdd-d12c-466e-9047-bc39d06e1e09",
"href": "/systems/3eaf5bdd-d12c-466e-9047-bc39d06e1e09"
},
{
"serviceType": "Virtual Machine",
"resourceId": "f9dca589-739e-4184-b599-9c83e09777dd",
"powerState": "Offline",
"currentType": "standard_b2s",
"displayName": "SQL-Web",
"entityId": "aac61d71-fc90-4eab-853a-4b7ca5a497bc",
"href": "/systems/aac61d71-fc90-4eab-853a-4b7ca5a497bc"
},
{
"serviceType": "Virtual Machine",
"resourceId": "d248d614-01a0-4c0e-910f-481d27d5f24e",
"powerState": "Running",
"currentType": "standard_d2s_v3",
"displayName": "samename",
"entityId": "e931e425-07e7-4a5c-af3a-4559d4201cd5",
"href": "/systems/e931e425-07e7-4a5c-af3a-4559d4201cd5"
},
{
"serviceType": "Virtual Machine",
"resourceId": "75f9a524-ba7d-47a5-97d7-327eedfadf2d",
"powerState": "Offline",
"currentType": "basic_a0",
"displayName": "oracle",
"entityId": "efb7dfef-7fd8-4de4-a01b-dcd98db4f974",
"href": "/systems/efb7dfef-7fd8-4de4-a01b-dcd98db4f974"
}
]
- name: Get Analysis Recommendations (JSON)
event:
- listen: test
script:
exec:
- "var firstdata = pm.response.json()[0];\r"
- pm.environment.set("entityId", firstdata.entityId);
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/azure/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- "{{analysisId}}"
- results
description: "Retrieves the latest Azure recommendations for the systems within an Azure Analysis. \r\nThe output is available in JSON or Terraform media format.\r\n\r\nRefer to the help topic below for a full description of the elements. A few important ones:\r\n+ **approvalType** \r\n This is a key element which triggers an instance resize if you are using the Kubex Terraform reference implementation. This will contain either **all** or a new instance type ex. **basic_a1** if a recommendation has passed all criteria in your chosen Kubex Policy. \r\n\r\n+ **implementationMethod** \r\n A value of **Self Optimization** indicates the recommendation has passed all criteria and can be automated. This usually goes hand in hand with approvalType=all. A value of **Manual** indicates the recommendation should be manually done as in the case of a *Terminate* of idle instances.\r\n\r\n Generally Self Optimization is only set when Effort has been determined to be **Low**. See Informed decisions section.\r\n\r\n\r\nNotes:\r\n> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.\r\n\r\n> In this example, the environment variable `entityId` is set to the first returned *entityId* element for future use.\r\n\r\nSee example. Refer to Kubex Online Help [Azure Analysis Recommendations](https://www.densify.com/docs-api/Content/API_Guide/Analysis_Azure_Results.htm)."
response:
- name: Get Analysis Recommendations (JSON)
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/azure/your_analysis_id/results
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- azure
- your_analysis_id
- results
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: vary
value: accept-encoding
- key: content-encoding
value: gzip
- key: content-type
value: application/json;charset=UTF-8
- key: date
value: Wed, 10 Jun 2020 18:55:47 GMT
- key: x-envoy-upstream-service-time
value: "350"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"entityId": "28e4548b-f739-4c20-86ce-f3667cd56865",
"resourceId": "0a5d756b-e70c-42ca-b02a-b3887c52ba49",
"accountIdRef": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"currentType": "standard_f1s",
"recommendationType": "Not Analyzed",
"name": "match-ri",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 36.28,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587640,
"recommLastSeen": 1591772936737,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1591761914347,
"auditCount": 120
}
}
},
{
"entityId": "3eaf5bdd-d12c-466e-9047-bc39d06e1e09",
"resourceId": "4292cf24-e5ce-44f2-82bf-29f06f0f7500",
"accountIdRef": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"currentType": "standard_b1s",
"recommendationType": "Not Analyzed",
"name": "ML-Windows",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 12.04,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587550,
"recommLastSeen": 1591772936553,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1591761914347,
"auditCount": 120
}
}
},
{
"entityId": "efb7dfef-7fd8-4de4-a01b-dcd98db4f974",
"resourceId": "75f9a524-ba7d-47a5-97d7-327eedfadf2d",
"accountIdRef": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"currentType": "basic_a0",
"recommendationType": "Not Analyzed",
"name": "oracle",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 13.14,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587623,
"recommLastSeen": 1591772936713,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1591761914347,
"auditCount": 120
}
}
},
{
"entityId": "e931e425-07e7-4a5c-af3a-4559d4201cd5",
"resourceId": "d248d614-01a0-4c0e-910f-481d27d5f24e",
"accountIdRef": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"currentType": "standard_d2s_v3",
"recommendationType": "Just Right",
"recommendedType": "standard_d2s_v3",
"implementationMethod": "N/A",
"predictedUptime": 36.67,
"totalHoursRunning": 528,
"name": "samename",
"rptHref": "/systems/e931e425-07e7-4a5c-af3a-4559d4201cd5/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "0497f8a2-caa6-4561-ae8b-d5cae6f84d36",
"currentCost": 80.3,
"recommendedCost": 80.3,
"serviceType": "Virtual Machine",
"currentHourlyRate": 0.11,
"recommendedHourlyRate": 0.11,
"recommFirstSeen": 1579680587550,
"recommLastSeen": 1591772936553,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1575695109687,
"dateLastAudited": 1591761914347,
"auditCount": 80
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591675200000,
"totalDays": 29,
"seenDays": 14
}
}
},
{
"entityId": "33d2c6d6-c307-428c-96f6-723c21516927",
"resourceId": "sql-developer-ubuntu3545.cloudapp.net",
"accountIdRef": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"currentType": "standard_ds12_v2",
"recommendationType": "Not Analyzed",
"name": "SQL-Developer-Ubuntu",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 270.83,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587640,
"recommLastSeen": 1591772936737,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1591761914347,
"auditCount": 120
}
}
},
{
"entityId": "321cbabe-dc9e-400a-9988-7e84c58e5369",
"resourceId": "7a5316a0-4063-4123-a036-3625fea91033",
"accountIdRef": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"currentType": "basic_a0",
"recommendationType": "Not Analyzed",
"name": "SQLServerWeb-Ubuntu",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 13.14,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587623,
"recommLastSeen": 1591772936713,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1591761914347,
"auditCount": 120
}
}
},
{
"entityId": "aac61d71-fc90-4eab-853a-4b7ca5a497bc",
"resourceId": "f9dca589-739e-4184-b599-9c83e09777dd",
"accountIdRef": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"currentType": "standard_b2s",
"recommendationType": "Not Analyzed",
"name": "SQL-Web",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 36.21,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587640,
"recommLastSeen": 1591772936737,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1591761914347,
"auditCount": 120
}
}
},
{
"entityId": "0d2f5815-1dbe-439c-83e3-788180e41fb2",
"resourceId": "952d21d6-9ba2-4217-8df1-f5f6417ded45",
"accountIdRef": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"currentType": "basic_a0",
"recommendationType": "Just Right",
"recommendedType": "basic_a0",
"implementationMethod": "N/A",
"predictedUptime": 36.67,
"totalHoursRunning": 528,
"name": "TestVMTestSub",
"rptHref": "/systems/0d2f5815-1dbe-439c-83e3-788180e41fb2/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "b155b9ca-88ce-4e4c-9123-d3a0086b7231",
"currentCost": 13.14,
"recommendedCost": 13.14,
"serviceType": "Virtual Machine",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"recommFirstSeen": 1579680587640,
"recommLastSeen": 1591772936737,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1591761914347,
"auditCount": 120
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591675200000,
"totalDays": 29,
"seenDays": 14
}
}
}
]
- name: Get Analysis Recommendations (JSON) + Workload dataQuality
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: '{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/azure/d35a72de-3342-42a4-a567-66cc497d1a5b/results?dataQuality="CPU Utilization (CINT2006 Rate)"'
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- d35a72de-3342-42a4-a567-66cc497d1a5b
- results
query:
- key: dataQuality
value: '"CPU Utilization (CINT2006 Rate)"'
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-encoding
value: gzip
- key: vary
value: Accept-Encoding
- key: date
value: Mon, 25 May 2020 20:02:13 GMT
- key: x-envoy-upstream-service-time
value: "69"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"entityId": "28e4548b-f739-4c20-86ce-f3667cd56865",
"resourceId": "0a5d756b-e70c-42ca-b02a-b3887c52ba49",
"currentType": "standard_f1s",
"recommendationType": "Not Analyzed",
"name": "match-ri",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 36.28,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587640,
"recommLastSeen": 1590218244290,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1590206703510,
"auditCount": 112
}
}
},
{
"entityId": "3eaf5bdd-d12c-466e-9047-bc39d06e1e09",
"resourceId": "4292cf24-e5ce-44f2-82bf-29f06f0f7500",
"currentType": "standard_b1s",
"recommendationType": "Not Analyzed",
"name": "ML-Windows",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 12.04,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587550,
"recommLastSeen": 1590218244037,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1590206703510,
"auditCount": 112
}
}
},
{
"entityId": "efb7dfef-7fd8-4de4-a01b-dcd98db4f974",
"resourceId": "75f9a524-ba7d-47a5-97d7-327eedfadf2d",
"currentType": "basic_a0",
"recommendationType": "Not Analyzed",
"name": "oracle",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 13.14,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587623,
"recommLastSeen": 1590218244270,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1590206703510,
"auditCount": 112
}
}
},
{
"entityId": "e931e425-07e7-4a5c-af3a-4559d4201cd5",
"resourceId": "d248d614-01a0-4c0e-910f-481d27d5f24e",
"accountIdRef": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"currentType": "standard_d2s_v3",
"recommendationType": "Just Right",
"recommendedType": "standard_d2s_v3",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "samename",
"rptHref": "/systems/e931e425-07e7-4a5c-af3a-4559d4201cd5/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "0497f8a2-caa6-4561-ae8b-d5cae6f84d36",
"currentCost": 80.3,
"recommendedCost": 80.3,
"serviceType": "Virtual Machine",
"currentHourlyRate": 0.11,
"recommendedHourlyRate": 0.11,
"recommFirstSeen": 1579680587550,
"recommLastSeen": 1590218244037,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1575695109687,
"dateLastAudited": 1590206703510,
"auditCount": 72
},
"workloadDataLast30": {
"firstDate": 1588219200000,
"lastDate": 1590120000000,
"totalDays": 23,
"seenDays": 13
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization (CINT2006 Rate)",
"firstSeen": 1575608400000,
"lastSeen": 1590120000000,
"completeDays": 71,
"partialDays": 1
}
]
},
{
"entityId": "33d2c6d6-c307-428c-96f6-723c21516927",
"resourceId": "sql-developer-ubuntu3545.cloudapp.net",
"currentType": "standard_ds12_v2",
"recommendationType": "Not Analyzed",
"name": "SQL-Developer-Ubuntu",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 270.83,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587640,
"recommLastSeen": 1590218244290,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1590206703510,
"auditCount": 112
}
}
},
{
"entityId": "321cbabe-dc9e-400a-9988-7e84c58e5369",
"resourceId": "7a5316a0-4063-4123-a036-3625fea91033",
"currentType": "basic_a0",
"recommendationType": "Not Analyzed",
"name": "SQLServerWeb-Ubuntu",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 13.14,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587623,
"recommLastSeen": 1590218244270,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1590206703510,
"auditCount": 112
}
}
},
{
"entityId": "aac61d71-fc90-4eab-853a-4b7ca5a497bc",
"resourceId": "f9dca589-739e-4184-b599-9c83e09777dd",
"currentType": "standard_b2s",
"recommendationType": "Not Analyzed",
"name": "SQL-Web",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 36.21,
"serviceType": "Virtual Machine",
"recommFirstSeen": 1579680587640,
"recommLastSeen": 1590218244290,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1590206703510,
"auditCount": 112
}
}
},
{
"entityId": "0d2f5815-1dbe-439c-83e3-788180e41fb2",
"resourceId": "952d21d6-9ba2-4217-8df1-f5f6417ded45",
"accountIdRef": "3d4ba999-cbd8-40b8-9998-574be6824a97",
"currentType": "basic_a0",
"recommendationType": "Just Right",
"recommendedType": "basic_a0",
"implementationMethod": "N/A",
"predictedUptime": 31.67,
"totalHoursRunning": 456,
"name": "TestVMTestSub",
"rptHref": "/systems/0d2f5815-1dbe-439c-83e3-788180e41fb2/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "b155b9ca-88ce-4e4c-9123-d3a0086b7231",
"currentCost": 13.14,
"recommendedCost": 13.14,
"serviceType": "Virtual Machine",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"recommFirstSeen": 1579680587640,
"recommLastSeen": 1590218244290,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571949479093,
"dateLastAudited": 1590206703510,
"auditCount": 112
},
"workloadDataLast30": {
"firstDate": 1588219200000,
"lastDate": 1590120000000,
"totalDays": 23,
"seenDays": 13
}
},
"dataQuality": [
{
"workloadName": "CPU Utilization (CINT2006 Rate)",
"firstSeen": 1569297600000,
"lastSeen": 1590120000000,
"completeDays": 140,
"partialDays": 0
}
]
}
]
- name: Get Analysis Recommendations (Terraform)
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/terraform-map
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/azure/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- "{{analysisId}}"
- results
description: |-
Retrieves the latest Azure recommendations as a Terraform Parameter map of variables. The Kubex Terraform reference implementation expects this format. This output can be saved as is as a file named **densify.auto.tfvars** and placed in your Terraform directory. See [GitHub](https://github.com/densify-dev/terraform-null-optimization-as-code).
Refer to Get Recommendations (JSON) for important details.
Notes:
> The `analysisId` environment variable is used to identify the Azure Analysis. This variable was set in a previous request. If you want to search for a specific Azure Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
> Use header: _Accept_ - **application/terraform-map**
See example. Refer to Kubex Online Help [Azure Analysis Recommendations](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Azure_Results.htm).
response:
- name: Get Analysis Recommendations (Terraform)
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/terraform-map
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/azure/b278ce82-07ab-4ccd-8a92-1147994ddd48/results
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- azure
- b278ce82-07ab-4ccd-8a92-1147994ddd48
- results
status: OK
code: 200
_postman_previewlanguage: raw
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/terraform-map;charset=UTF-8
- key: content-length
value: "2298"
- key: date
value: Fri, 22 May 2020 18:59:28 GMT
- key: x-envoy-upstream-service-time
value: "166"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
cookie: []
body: |
densify_recommendations = {
"st01-dev-dvc-178" = {
currentType = "standard_d2"
recommendedType = "idle.guest"
approvalType = "na"
predictedUptime = "84.6"
recommendationType = "Terminate"
powerState = "Running"
implementationMethod = "Manual"
savingsEstimate = "95.107315"
effortEstimate = "Low"
densifyPolicy = "Azure (Mobile_dev)"
}
"st01-io-appx-171" = {
currentType = "standard_d2_v2"
recommendedType = "standard_f4s_v2"
approvalType = "na"
predictedUptime = "100.0"
recommendationType = "Upsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "-105.11998"
effortEstimate = "Low"
densifyPolicy = "Azure (Mobile_dev)"
}
"st01-pro-rais-266" = {
currentType = "standard_a3"
recommendedType = "standard_d2_v3"
approvalType = "na"
predictedUptime = "80.77"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "72.52338"
effortEstimate = "Low"
densifyPolicy = "Azure (Mobile_dev)"
}
"st02-db-appx-527" = {
currentType = "standard_ds3_v2"
recommendedType = "standard_d4s_v3"
approvalType = "na"
predictedUptime = "80.45"
recommendationType = "Downsize"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "26.427816"
effortEstimate = "Low"
densifyPolicy = "Azure (Mobile_dev)"
}
"st02-db-imco-525" = {
currentType = "standard_ds3"
recommendedType = "standard_e2s_v3"
approvalType = "na"
predictedUptime = "80.29"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "93.77872"
effortEstimate = "Low"
densifyPolicy = "Azure (Mobile_dev)"
}
"st02-pro-appx-694" = {
currentType = "standard_d5_v2_promo"
recommendedType = "standard_e8_v3"
approvalType = "na"
predictedUptime = "80.45"
recommendationType = "Modernize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "327.1177"
effortEstimate = "Low"
densifyPolicy = "Azure (Mobile_dev)"
}
}
description: After the analysis completes, you can view Densify's recommendations. See [Optimizing Microsoft Azure Virtual Machine Instances](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_Microsoft_Azure_Virtual_Machine_Instances.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 2.2.4 Azure Informed Decisions
item:
- name: Download Impact Analysis and Recommendations Report
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/octet-stream
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems/{{entityId}}/analysis-report"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
- "{{entityId}}"
- analysis-report
description: |-
As an application owner, you may want to see details of a recommendation for a particular instance.
The Impact Analysis and Recommendation Report provides this and can be downloaded in PDF format for any instance.
Notes:
> The `entityId` environment variable is used to identify the recommendation system. This variable was set in a previous request. If you want the report for a specific system, modify the `entityId` variable with your desired recommendation _entityId_ in the Kubex environment.
> Ensure the request header includes: _Accept_ - **application/octet-stream**
> This report is based on data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. As a result, the first time you run `/analyze`, the report won't be available until the next day. Once automatic daily analysis updates begin, this restriction is lifted.
Refer to Kubex Online Help [Impact Analysis and Recommendations Report](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Azure_Results.htm?Highlight=impact%20analysis#Example_DownloadAppOwner)
response: []
- name: Get 'Low' Effort Recommendations (JSON)
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"entityId\", firstdata.entityId);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/azure/{{analysisId}}/results?effortEstimate=Low"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- azure
- "{{analysisId}}"
- results
query:
- key: effortEstimate
value: Low
description: "There are several properties included with Recommendations. Three are key:\r\n+ **recommendationType** \r\n The recommendation class; Upsize, Modernize, Downsize...\r\n\r\n+ **recommendedType** \r\n The Kubex recommended optimal instance Type. For example the recommendation may be to transition an older D2 (General Purpose) instance to a lower cost B2MS (General Purpose, burstable) instance at about half the monthly cost.\r\n\r\n+ **effortEstimate** \r\n Effort required to move to the new Type. Ranges High to None. Is determined by a rule engine. For example; effort might be 'Medium' when changing family. There might be a significant cost savings to be but you must review and decide.\r\n\r\n\r\nIn this example, a recommendations with 'Low' effort or less is requested.\r\n\r\nNotes:\r\n> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want the results for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.\r\n\r\n> In this example, the environment variable `entityId` is set to the first returned *entityId* element for future use."
response:
- name: Get 'Low' Effort Recommendations (JSON)
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/azure/your_analysis_id/results?effortEstimate=Low
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- azure
- your_analysis_id
- results
query:
- key: effortEstimate
value: Low
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: vary
value: accept-encoding
- key: content-encoding
value: gzip
- key: content-type
value: application/json;charset=UTF-8
- key: date
value: Wed, 10 Jun 2020 19:11:14 GMT
- key: x-envoy-upstream-service-time
value: "60"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"entityId": "f8d9f9c9-9c59-47ec-afc7-c40344c4dc88",
"resourceId": "st01-dev-imco-321",
"accountIdRef": "bc009556-bc00-4d00-00bc-bc03322990d3",
"currentType": "basic_a3",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_d2a_v4",
"implementationMethod": "Self Optimization",
"predictedUptime": 84.85,
"totalHoursRunning": 672,
"name": "st01-dev-imco-321",
"rptHref": "/systems/f8d9f9c9-9c59-47ec-afc7-c40344c4dc88/analysis-report",
"approvalType": "na",
"densifyPolicy": "Azure (Mobile_prod)",
"savingsEstimate": 49.552395,
"effortEstimate": "Low",
"powerState": "Running",
"recommendedHostEntityId": "693356da-b474-4c10-8f05-e1f1317571b1",
"currentCost": 128.48,
"recommendedCost": 70.08,
"serviceType": "Virtual Machine",
"currentHourlyRate": 0.18,
"recommendedHourlyRate": 0.1,
"recommFirstSeen": 1587073262357,
"recommLastSeen": 1591186272437,
"recommSeenCount": 25,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1513365152430,
"dateLastAudited": 1513365152430,
"auditCount": 1
}
}
},
{
"entityId": "6fd9a4c6-a8f3-4747-a611-a9a0e2bff7ae",
"resourceId": "st01-dev-kotl-413",
"accountIdRef": "bc009556-bc00-4d00-00bc-bc03322990d3",
"currentType": "standard_d2_v2",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "standard_f4s_v2",
"implementationMethod": "Self Optimization",
"predictedUptime": 89.58,
"totalHoursRunning": 172,
"name": "st01-dev-kotl-413",
"rptHref": "/systems/6fd9a4c6-a8f3-4747-a611-a9a0e2bff7ae/analysis-report",
"approvalType": "na",
"densifyPolicy": "Azure (Mobile_prod)",
"savingsEstimate": -48.391106,
"effortEstimate": "Low",
"powerState": "Running",
"recommendedHostEntityId": "067649bf-b04b-4327-ad37-68c2f9584823",
"currentCost": 183.96,
"recommendedCost": 237.98,
"serviceType": "Virtual Machine",
"currentHourlyRate": 0.25,
"recommendedHourlyRate": 0.33,
"recommFirstSeen": 1587051304107,
"recommLastSeen": 1591186272437,
"recommSeenCount": 26,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1513365152430,
"dateLastAudited": 1513365152430,
"auditCount": 1
}
}
},
{
"entityId": "9555c0dd-1b32-42f7-a80b-367ac5cf5299",
"resourceId": "st01-prepro-duct-323",
"accountIdRef": "bc009556-bc00-4d00-00bc-bc03322990d3",
"currentType": "standard_a1_v2",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"implementationMethod": "Self Optimization",
"predictedUptime": 100,
"totalHoursRunning": 264,
"name": "st01-prepro-duct-323",
"rptHref": "/systems/9555c0dd-1b32-42f7-a80b-367ac5cf5299/analysis-report",
"approvalType": "na",
"densifyPolicy": "Azure (Mobile_prod)",
"savingsEstimate": 1.0199986,
"effortEstimate": "Low",
"powerState": "Running",
"recommendedHostEntityId": "3f2bf8cf-1584-466a-bdc3-1bf7ea550a96",
"currentCost": 31.39,
"recommendedCost": 30.37,
"serviceType": "Virtual Machine",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.04,
"recommFirstSeen": 1587051304107,
"recommLastSeen": 1591186272437,
"recommSeenCount": 26,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1513365152430,
"dateLastAudited": 1513365152430,
"auditCount": 1
}
}
},
{
"entityId": "fa597b7c-6ba0-48d1-a55e-ec691d9a7a90",
"resourceId": "st01-pro-fifo-262",
"accountIdRef": "bc009556-bc00-4d00-00bc-bc03322990d3",
"currentType": "standard_f2",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_d1_v2",
"implementationMethod": "Self Optimization",
"predictedUptime": 84.85,
"totalHoursRunning": 672,
"name": "st01-pro-fifo-262",
"rptHref": "/systems/fa597b7c-6ba0-48d1-a55e-ec691d9a7a90/analysis-report",
"approvalType": "na",
"densifyPolicy": "Azure (Mobile_prod)",
"savingsEstimate": 16.104527,
"effortEstimate": "Low",
"powerState": "Running",
"recommendedHostEntityId": "1485f221-7560-495a-88e3-4f738f6b0367",
"currentCost": 72.27,
"recommendedCost": 53.29,
"serviceType": "Virtual Machine",
"currentHourlyRate": 0.1,
"recommendedHourlyRate": 0.07,
"recommFirstSeen": 1578409833647,
"recommLastSeen": 1591186272437,
"recommSeenCount": 80,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1513365152430,
"dateLastAudited": 1513365152430,
"auditCount": 1
}
}
},
{
"entityId": "8536b13c-9452-4e3f-90b7-7bbefeca73ae",
"resourceId": "st02-edb-asop-646",
"accountIdRef": "bc009556-bc00-4d00-00bc-bc03322990d3",
"currentType": "standard_d13_v2_promo",
"recommendationType": "Modernize",
"recommendedType": "standard_e8_v3",
"implementationMethod": "Self Optimization",
"predictedUptime": 80.45,
"totalHoursRunning": 502,
"name": "st02-edb-asop-646",
"rptHref": "/systems/8536b13c-9452-4e3f-90b7-7bbefeca73ae/analysis-report",
"approvalType": "na",
"densifyPolicy": "Azure (Mobile_prod)",
"savingsEstimate": 139.18652,
"effortEstimate": "Low",
"powerState": "Running",
"recommendedHostEntityId": "fe0b1f2a-6d3b-42b7-8190-2089fb863fe7",
"currentCost": 540.93,
"recommendedCost": 367.92,
"serviceType": "Virtual Machine",
"currentHourlyRate": 0.74,
"recommendedHourlyRate": 0.5,
"recommFirstSeen": 1587051304107,
"recommLastSeen": 1591186272437,
"recommSeenCount": 26,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1513365152430,
"dateLastAudited": 1513365152430,
"auditCount": 1
}
}
},
{
"entityId": "2e60baa2-2286-4842-a68e-f879ad9ab35a",
"resourceId": "st02-edb-edge-598",
"accountIdRef": "bc009556-bc00-4d00-00bc-bc03322990d3",
"currentType": "standard_a4_v2",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "standard_f4s_v2",
"implementationMethod": "Self Optimization",
"predictedUptime": 80.29,
"totalHoursRunning": 501,
"name": "st02-edb-edge-598",
"rptHref": "/systems/2e60baa2-2286-4842-a68e-f879ad9ab35a/analysis-report",
"approvalType": "na",
"densifyPolicy": "Azure (Mobile_prod)",
"savingsEstimate": -23.444677,
"effortEstimate": "Low",
"powerState": "Running",
"recommendedHostEntityId": "067649bf-b04b-4327-ad37-68c2f9584823",
"currentCost": 208.78,
"recommendedCost": 237.98,
"serviceType": "Virtual Machine",
"currentHourlyRate": 0.29,
"recommendedHourlyRate": 0.33,
"recommFirstSeen": 1587073262357,
"recommLastSeen": 1591186272437,
"recommSeenCount": 25,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1513365152430,
"dateLastAudited": 1513365152430,
"auditCount": 1
}
}
}
]
- name: Get Azure Tags (Densify Attributes)
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"systemId\", firstdata.id);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems/?platform=azure&attribute_name_value=Resource+Tags,LOB+:+Accounting"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
- ""
query:
- key: platform
value: azure
- key: attribute_name_value
value: Resource+Tags,LOB+:+Accounting
description: |-
In Kubex System Attributes are synonymous to Azure Tags.
- Kubex maintains an extensive list of attributes for each Virtual Machine.
- Kubex collects Virtual Machine Tags and maps them to a Kubex System Attribute called **Resource Tags**
- The format of the "Resource Tags" System Attribute is: **Azure_Tag_Name : Azure_Tag_Value**
For example, an Virtual Machine with an Azure Tag of **"Owner"** **"Bill"** is represented in Kubex as System Attribute: _Name_ **Resource Tags** _Value_ **Owner : Bill**
Here we request recommendations for Azure Tag "LOB" with a value of "Accounting"
> /systems/?attribute_name_value=Resource+Tags,LOB+:+Accounting
Notes:
> The _systems_ resource uses data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. The _systems_ resource returns no or partial data until the reporting task completes.
> In this example, the environment variable `systemId` is set to the first returned _id_ element for future use.
See example. Refer to Kubex Online Help [Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Systems.htm)
response:
- name: Get Azure Tags (Densify Attributes)
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/systems/?platform=azure&attribute_name_value=Resource+Tags,LOB+:+Accounting"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- systems
- ""
query:
- key: platform
value: azure
- key: attribute_name_value
value: Resource+Tags,LOB+:+Accounting
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Content-Encoding
value: gzip
- key: Vary
value: Accept-Encoding
- key: Date
value: Tue, 19 Feb 2019 19:28:38 GMT
cookie: []
body: |-
[
{
"id": "75da3dc1-4c42-410d-9302-2526fc8e0507",
"name": "st01-pro-appx-331",
"href": "/systems/75da3dc1-4c42-410d-9302-2526fc8e0507",
"resource_id": "st01-pro-appx-331",
"type": "classic_vm",
"platform_model": "standard_d3_v2_promo",
"platform": "AZURE",
"total_physical_cpus": "4",
"cores_per_cpu": "1",
"memory": "14336",
"infrastructure_group": {
"id": "e57ed2ba-aa5f-4bba-bda4-75f7a65a730c",
"name": "eastus+group",
"href": "/infrastructure-groups/e57ed2ba-aa5f-4bba-bda4-75f7a65a730c"
},
"control_environment": {
"id": "d5f4c0f1-8e2d-4da0-9daf-a9ba9e9d5b19",
"name": "00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc",
"platform_category": "External Cloud",
"href": "/control-environments/d5f4c0f1-8e2d-4da0-9daf-a9ba9e9d5b19",
"icon": "/control-environments/d5f4c0f1-8e2d-4da0-9daf-a9ba9e9d5b19/icon"
},
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Services"
},
{
"id": "attr_AnalysisResult",
"name": "Analysis Result",
"value": "OK"
},
{
"id": "attr_AnalysisStatus",
"name": "Analysis Status",
"value": "Included in Analysis"
},
{
"id": "attr_Application",
"name": "Application",
"value": "Advisors"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "group-dvc-04"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "bc8fb1cd-6abc-4500-bca2-00aff0b712bc"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "6.572866"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.1350002"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "70.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-05-12 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E8"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "5000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "4.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "94.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "14336.0"
},
{
"id": "attr_InsightSummary",
"name": "Insight Summary",
"value": "Downsize - Optimal Family"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "68.8923"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "599684.25"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E8"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "100000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "46.67"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "Production"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "standard_a2m_v2"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "e0141ff0-bc9b-425f-96f3-20302f54732a"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "84.85"
},
{
"id": "attr_Provider",
"name": "Provider",
"value": "Azure"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.1350002"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "68.8923"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "standard_a2m_v2-2X16"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "13312.0"
},
{
"id": "attr_Recommendation",
"name": "Recommendation",
"value": "standard_d3_v2_promo > standard_a2m_v2"
},
{
"id": "attr_RecommendationType",
"name": "Recommendation Type",
"value": "Downsize - Optimal Family"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Densify-predicted-uptime : 80.77"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "LOB : Accounting"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Bill"
},
{
"id": "attr_Service",
"name": "Service",
"value": "Classic VM"
},
{
"id": "attr_ServiceDescribed",
"name": "Service Described",
"value": "Classic VM"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Feb 07 2019, 15:32:42 EST"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Sales"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Roger Witt"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "16384"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "eastus+group"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+group"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
}
]
- name: Get Full Details of an Instance
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/systems/{{systemId}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- systems
- "{{systemId}}"
description: |-
You can get a full details listing of a specific instance using the `/systems` resource.
Notes:
> The `systemId` environment variable is used to identify the system. This variable was set in a previous request. If you want the details for another system, modify the `systemId` variable with your desired system _id_ in the Kubex environment.
> The _systems_ resource uses data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. The _systems_ resource returns no or partial data until the reporting task is complete.
See example. Refer to Kubex Online Help [Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Systems.htm)
response:
- name: Get Full Details of an Instance
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/systems/{{entityId}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- systems
- "{{entityId}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: vary
value: accept-encoding
- key: content-encoding
value: gzip
- key: content-type
value: application/json;charset=UTF-8
- key: date
value: Wed, 10 Jun 2020 19:22:58 GMT
- key: x-envoy-upstream-service-time
value: "933"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
{
"id": "f8d9f9c9-9c59-47ec-afc7-c40344c4dc88",
"name": "st01-dev-imco-321",
"href": "/systems/f8d9f9c9-9c59-47ec-afc7-c40344c4dc88",
"resource_id": "st01-dev-imco-321",
"type": "classic_vm",
"platform_model": "basic_a3",
"platform": "AZURE",
"os": "Linux",
"manufacturer": "AZURE",
"cpu_model": "Intel Xeon",
"total_physical_cpus": "4",
"cores_per_cpu": "1",
"threads_per_core": "1",
"cpu_speed": "1500",
"memory": "7168",
"ip_address": "10.1.10.186",
"hostId": "N/A",
"parent": "group",
"infrastructure_group": {
"id": "79d5358a-64f1-4de8-b0bf-26142dbcd817",
"name": "eastus+group",
"href": "/infrastructure-groups/79d5358a-64f1-4de8-b0bf-26142dbcd817"
},
"control_environment": {
"id": "45654f87-5a9a-4ee8-9d04-1d7eebe7515a",
"name": "Azure Mobile (prod)",
"platform_category": "External Cloud",
"href": "/control-environments/45654f87-5a9a-4ee8-9d04-1d7eebe7515a",
"icon": "/control-environments/45654f87-5a9a-4ee8-9d04-1d7eebe7515a/icon"
},
"cpu_benchmarks": [
{
"name": "CINT2006 Rate",
"score_type": "cint2006rate",
"value": 54.1
}
],
"I/O_benchmarks": [
{
"name": "Maximum Disk Throughput (bytes/s)",
"score_type": "disk",
"value": -1
},
{
"name": "Maximum Network Throughput (bytes/s)",
"score_type": "net",
"value": -1
}
],
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Mobile"
},
{
"id": "attr_Application",
"name": "Application",
"value": "Mobile_Prod"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "group-dvc-04"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "bc8fb1cd-6abc-4500-bca2-00aff0b712bc"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "1.498429"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.2510002"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "80.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-05-12 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "0.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E8"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "5000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "4.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "54.1"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "7168.0"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "69.55986"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "98.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "396743.5"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E8"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "100000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "46.67"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "IO"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "standard_d2a_v4"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "693356da-b474-4c10-8f05-e1f1317571b1"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "84.85"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.2510002"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "69.55986"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "standard_d2a_v4-2X8"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "5120.0"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 24 2020, 09:26:21 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "Azure Mobile (prod)"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Mobile"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "James Pillsbury"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "8192"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "eastus+group"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+group"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "bc009556-bc00-4d00-00bc-bc03322990d3"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
},
{
"id": "wrkld_shift_by_hour",
"name": "Shift Workload By Hours",
"value": "4920"
}
]
}
- name: Get Full Details of all Azure Instances
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems?platform=AZURE"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
query:
- key: platform
value: AZURE
description: |-
You can filter for specific instances using the `/systems` resource.
Notes:
> In this example, we are requesting for only **Azure** systems.
> The _systems_ resource uses data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. The _systems_ resource returns no or partial data until the reporting task is complete.
See example. Refer to Kubex Online Help [Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Systems.htm)
response:
- name: Get Full Details of all Azure Instances
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/systems/?platform=azure"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- systems
- ""
query:
- key: platform
value: azure
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Content-Encoding
value: gzip
- key: Vary
value: Accept-Encoding
- key: Date
value: Tue, 19 Feb 2019 19:33:27 GMT
cookie: []
body: |-
[
{
"id": "32d60623-4829-40c1-be74-c4fe1416629d",
"name": "st02-db-duct-518",
"href": "/systems/32d60623-4829-40c1-be74-c4fe1416629d",
"resource_id": "st02-db-duct-518",
"type": "classic_vm",
"platform_model": "standard_d13_v2_promo",
"platform": "AZURE",
"total_physical_cpus": "8",
"cores_per_cpu": "1",
"memory": "57344",
"infrastructure_group": {
"id": "5da84053-d43f-4179-9b59-f7a75a348afc",
"name": "westus+group",
"href": "/infrastructure-groups/5da84053-d43f-4179-9b59-f7a75a348afc"
},
"control_environment": {
"id": "d5f4c0f1-8e2d-4da0-9daf-a9ba9e9d5b19",
"name": "00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc",
"platform_category": "External Cloud",
"href": "/control-environments/d5f4c0f1-8e2d-4da0-9daf-a9ba9e9d5b19",
"icon": "/control-environments/d5f4c0f1-8e2d-4da0-9daf-a9ba9e9d5b19/icon"
},
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Business Services"
},
{
"id": "attr_AnalysisResult",
"name": "Analysis Result",
"value": "OK"
},
{
"id": "attr_AnalysisStatus",
"name": "Analysis Status",
"value": "Included in Analysis"
},
{
"id": "attr_Application",
"name": "Application",
"value": "General"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "group-dvc-01"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "bc8fb1cd-6abc-4500-bca2-00aff0b712bc"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "7.9956384"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "8"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "4.119"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "70.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-05-19 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E8"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "5000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "8.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "189.3"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "57344.0"
},
{
"id": "attr_InsightSummary",
"name": "Insight Summary",
"value": "Modernize"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "95.14514"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "386694.2"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E8"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "100000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "34.86"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "Datasource"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "standard_e8_v3"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "fe0b1f2a-6d3b-42b7-8190-2089fb863fe7"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "80.45"
},
{
"id": "attr_Provider",
"name": "Provider",
"value": "Azure"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "4.119"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "95.14514"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "standard_e8_v3-8X64"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "65536.0"
},
{
"id": "attr_Recommendation",
"name": "Recommendation",
"value": "standard_d13_v2_promo > standard_e8_v3"
},
{
"id": "attr_RecommendationType",
"name": "Recommendation Type",
"value": "Modernize"
},
{
"id": "attr_Service",
"name": "Service",
"value": "Classic VM"
},
{
"id": "attr_ServiceDescribed",
"name": "Service Described",
"value": "Classic VM"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "M"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Feb 07 2019, 15:32:34 EST"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Support"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "James Pillsbury"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "65536"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "westus+group"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "westus+group"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "westus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
},
{
"id": "5db7957f-548e-4892-b4b2-5485fb2e7e82",
"name": "st02-db-expl-651",
"href": "/systems/5db7957f-548e-4892-b4b2-5485fb2e7e82",
"resource_id": "st02-db-expl-651",
"type": "classic_vm",
"platform_model": "standard_a2_v2",
"platform": "AZURE",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4096",
"infrastructure_group": {
"id": "5da84053-d43f-4179-9b59-f7a75a348afc",
"name": "westus+group",
"href": "/infrastructure-groups/5da84053-d43f-4179-9b59-f7a75a348afc"
},
"control_environment": {
"id": "d5f4c0f1-8e2d-4da0-9daf-a9ba9e9d5b19",
"name": "00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc",
"platform_category": "External Cloud",
"href": "/control-environments/d5f4c0f1-8e2d-4da0-9daf-a9ba9e9d5b19",
"icon": "/control-environments/d5f4c0f1-8e2d-4da0-9daf-a9ba9e9d5b19/icon"
},
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "UAT"
},
{
"id": "attr_AnalysisResult",
"name": "Analysis Result",
"value": "OK"
},
{
"id": "attr_AnalysisStatus",
"name": "Analysis Status",
"value": "Included in Analysis"
},
{
"id": "attr_Application",
"name": "Application",
"value": "Infrastructure"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "group-dvc-01"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "bc8fb1cd-6abc-4500-bca2-00aff0b712bc"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "1.1407744"
},
{
"id": "attr_Cost",
"name": "Cost",
"value": "0"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "4.064"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "70.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-05-19 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E8"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "5000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "27"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_InsightSummary",
"name": "Insight Summary",
"value": "Terminate"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "71.4984"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "3.079981"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E8"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "100000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "34.86"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "Datasource"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "idle.guest"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "e4175f48-cf28-459a-b573-3da48948a82e"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "80.45"
},
{
"id": "attr_Provider",
"name": "Provider",
"value": "Azure"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "4.064"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "71.4984"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "Idle.Guest-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "0"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "0"
},
{
"id": "attr_Recommendation",
"name": "Recommendation",
"value": "standard_a2_v2 > idle.guest"
},
{
"id": "attr_RecommendationType",
"name": "Recommendation Type",
"value": "Terminate"
},
{
"id": "attr_Service",
"name": "Service",
"value": "Classic VM"
},
{
"id": "attr_ServiceDescribed",
"name": "Service Described",
"value": "Classic VM"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Feb 07 2019, 15:32:34 EST"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Q/A"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "James Pillsbury"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2146304"
},
{
"id": "openstack_avl_zone",
"name": "Availability Zone",
"value": "westus+group"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "westus+group"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "westus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "00d89cbc-bc00-4d00-bcf6-ce6ec08d8fbc"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
}
]
- name: Get Systems with Insufficient Workload
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems?attribute_name_value=Insufficient+Workload,true&platform=AZURE"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
query:
- key: attribute_name_value
value: Insufficient+Workload,true
- key: platform
value: AZURE
description: |-
To improve analysis performance, Kubex now removes instances that do not have
sufficient workload to produce valid recommendations. These instances are either transient systems
or have insufficient workload data to be analyzed accurately.
Using the 3 policy settings that define the amount of required workload and a table of required
workload types for each container and cloud provider, Kubex then filters out instances that do not
meet both the volume and type of workload data, requirements.
Once enable this feature applies to auto-created analysis and to analysis that are initiated through the
Kubex API.
Contact [Support@Densify.com](https://mailto:Support@Densify.com) for detail on enabling this feature
Refer to Kubex Online Help [Densify Docs](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/API_New_Features.htm)
response:
- name: Get Systems with Insufficient Workload Copy
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems?attribute_name_value=Insufficient+Workload,true&platform=AZURE"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
query:
- key: attribute_name_value
value: Insufficient+Workload,true
- key: platform
value: AZURE
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Access-Control-Max-Age
value: "86400"
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Pragma
value: no-cache
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Mon, 24 Jul 2023 10:40:23 GMT
- key: Keep-Alive
value: timeout=20
- key: Connection
value: keep-alive
cookie: []
body: |-
[
{
"id": "2cf2ebae-6d8b-485f-b66f-95296d36e5c0",
"name": "d2-v3",
"href": "/systems/2cf2ebae-6d8b-485f-b66f-95296d36e5c0",
"resource_id": "e666ec85-fe0c-4e04-b7c0-d9e1e8f3f35e",
"type": "arm_vm",
"platform_model": "standard_d2_v3",
"platform": "AZURE",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "8192",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/3d4ba999-cbd8-40b8-9998-574be6824a97/resourceGroups/MARIARESOURCEGROUP/providers/Microsoft.Compute/virtualMachines/d2-v3"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "mariaresourcegroup"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Test Subscription newName2"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "47.3"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8192.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 15:01:08 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "centralus+mariaresourcegroup"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "centralus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "d5041c86-4a3d-4c7b-9d05-9d10b3325d2e",
"name": "cirba",
"href": "/systems/d5041c86-4a3d-4c7b-9d05-9d10b3325d2e",
"resource_id": "22608339-8e20-4b72-8dc0-cc8f24619074",
"type": "arm_vm",
"platform_model": "standard_f1s",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2048",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "IT"
},
{
"id": "attr_Application",
"name": "Application",
"value": "application"
},
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/cc377154-9605-4cb0-8b41-1b39e1c4ac0f/resourceGroups/CSA-CIRBA-RESOURCE-GROUP/providers/Microsoft.Compute/virtualMachines/cirba"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "csa-cirba-resource-group"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Pay-As-You-Go"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CatalogFamilyExclusion",
"name": "Catalog Family Exclusion",
"value": "General Purpose b"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "31.1"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2048.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "operational envrionment"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_Provisioning_ID",
"name": "Provisioning ID",
"value": "provisioning id"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Application : application"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : Service"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Company : cirba"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Cost Center : costcenter"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : IT"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "dept : qa"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Environment : Testing"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Inventory Code : inventory code"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Location : Pune"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Operational Environment : operational envrionment"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : owner"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Product Code : product code"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Project : project"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Provisioning Id : provisioning id"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "random : random"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 11:02:50 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Service"
},
{
"id": "CLD.COST.CENTER",
"name": "Cost Center",
"value": "costcenter"
},
{
"id": "CLD.INVENTORY.CODE",
"name": "Inventory Code",
"value": "inventory code"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "owner"
},
{
"id": "CLD.PRODUCT.CODE",
"name": "Product Code",
"value": "product code"
},
{
"id": "CLD.PROJECT",
"name": "Project",
"value": "project"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+csa-cirba-resource-group"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "1ac76cb7-61de-4f57-a3a0-a8e8204116c3",
"name": "jltest-dv4",
"href": "/systems/1ac76cb7-61de-4f57-a3a0-a8e8204116c3",
"resource_id": "fbf784d9-fd2c-41e2-9ad7-513d76de9154",
"type": "arm_vm",
"platform_model": "standard_a1_v2",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2048",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/cc377154-9605-4cb0-8b41-1b39e1c4ac0f/resourceGroups/JLONDON-RG/providers/Microsoft.Compute/virtualMachines/jltest-dv4"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "jlondon-rg"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Pay-As-You-Go"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CatalogFamilyExclusion",
"name": "Catalog Family Exclusion",
"value": "General Purpose b"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-03-13 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "13.5"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2048.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 11:02:57 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+jlondon-rg"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "1c84f2b8-17d4-4472-abc1-be0971f88b7e",
"name": "match-ri",
"href": "/systems/1c84f2b8-17d4-4472-abc1-be0971f88b7e",
"resource_id": "0a5d756b-e70c-42ca-b02a-b3887c52ba49",
"type": "arm_vm",
"platform_model": "standard_f1s",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2048",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/3d4ba999-cbd8-40b8-9998-574be6824a97/resourceGroups/TESTSUBTESTRESOURCEGROUP/providers/Microsoft.Compute/virtualMachines/match-ri"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "testsubtestresourcegroup"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Test Subscription newName2"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.18955027"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.585"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-03-12 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "240501.42"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "1.4337001"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "31.1"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2048.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "31.834717"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "749.745"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "3.33"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "standard_f1s"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "e13040af-bd61-44ae-ae13-66e5e2c2c2c1"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "3.33"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.585"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "31.834717"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "standard_f1s-1X2"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1024.0"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 24 2023, 15:01:13 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "2048"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+testsubtestresourcegroup"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "78157a14-8665-4cc3-8e5f-1eabf02b072e",
"name": "spot",
"href": "/systems/78157a14-8665-4cc3-8e5f-1eabf02b072e",
"resource_id": "21787c85-b095-4207-a5f9-19efd7e35732",
"type": "arm_vm",
"platform_model": "standard_ds1_v2",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3584",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/cc377154-9605-4cb0-8b41-1b39e1c4ac0f/resourceGroups/CAL-MYSQL-RSG/providers/Microsoft.Compute/virtualMachines/spot"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "cal-mysql-rsg"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Pay-As-You-Go"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CatalogFamilyExclusion",
"name": "Catalog Family Exclusion",
"value": "General Purpose b"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "31.1"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "3584.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 11:02:51 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "westcentralus+cal-mysql-rsg"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "westcentralus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "8c24bde5-1102-4565-a82c-784b8f852827",
"name": "st01-pro-stoc-252",
"href": "/systems/8c24bde5-1102-4565-a82c-784b8f852827",
"resource_id": "85390f48-26cb-40cf-a085-74e406886ac6",
"type": "arm_vm",
"platform_model": "standard_d2",
"platform": "AZURE",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "7168",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/cc377154-9605-4cb0-8b41-1b39e1c4ac0f/resourceGroups/AZUREAUTO-RG/providers/Microsoft.Compute/virtualMachines/st01-pro-stoc-252"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "azureauto-rg"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Pay-As-You-Go"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CatalogFamilyExclusion",
"name": "Catalog Family Exclusion",
"value": "General Purpose b"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "43.3"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "7168.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Name : st01-pro-stoc-252"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Owner : Bill"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 11:02:52 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Bill"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "westus+azureauto-rg"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "westus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "c1f5dcde-5f7a-4c93-8e35-ae5460cdc463",
"name": "oracle",
"href": "/systems/c1f5dcde-5f7a-4c93-8e35-ae5460cdc463",
"resource_id": "75f9a524-ba7d-47a5-97d7-327eedfadf2d",
"type": "arm_vm",
"platform_model": "basic_a0",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "768",
"attributes": [
{
"id": "attr_4",
"name": "role name",
"value": "somerole"
},
{
"id": "attr_5",
"name": "node type",
"value": "worker"
},
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/3d4ba999-cbd8-40b8-9998-574be6824a97/resourceGroups/MARIARESOURCEGROUP/providers/Microsoft.Compute/virtualMachines/oracle"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "mariaresourcegroup"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Test Subscription newName2"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "6.8"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "768.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_NodeLabels",
"name": "Node Labels",
"value": "blahblahblah"
},
{
"id": "attr_NodeLabels",
"name": "Node Labels",
"value": "role : somerole;worker"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 15:01:14 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+mariaresourcegroup"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "9f87c45a-560f-4634-a7a8-7f7359f0a377",
"name": "SQLServerWeb-Ubuntu",
"href": "/systems/9f87c45a-560f-4634-a7a8-7f7359f0a377",
"resource_id": "7a5316a0-4063-4123-a036-3625fea91033",
"type": "arm_vm",
"platform_model": "basic_a0",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "768",
"attributes": [
{
"id": "attr_4",
"name": "role name",
"value": "somerole2"
},
{
"id": "attr_5",
"name": "node type",
"value": "worker"
},
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/3d4ba999-cbd8-40b8-9998-574be6824a97/resourceGroups/MARIARESOURCEGROUP/providers/Microsoft.Compute/virtualMachines/SQLServerWeb-Ubuntu"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "mariaresourcegroup"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Test Subscription newName2"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "6.8"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "768.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_NodeLabels",
"name": "Node Labels",
"value": "blahblajh"
},
{
"id": "attr_NodeLabels",
"name": "Node Labels",
"value": "role : somerole2;worker"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "2"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 15:01:14 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+mariaresourcegroup"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "ec0359e0-eb41-4e38-85ae-803e16daf38c",
"name": "wei-vmss-3_ee179620",
"href": "/systems/ec0359e0-eb41-4e38-85ae-803e16daf38c",
"resource_id": "c808c127-b4c8-487c-a040-ff0483399601",
"type": "arm_vm",
"platform_model": "standard_b1s",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1024",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/cc377154-9605-4cb0-8b41-1b39e1c4ac0f/resourceGroups/WEI-RG/providers/Microsoft.Compute/virtualMachines/wei-vmss-3_ee179620"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "wei-rg"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Pay-As-You-Go"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CatalogFamilyExclusion",
"name": "Catalog Family Exclusion",
"value": "General Purpose b"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "23.7"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1024.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 11:02:55 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v2"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+wei-rg"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "57019a4f-a0e9-495f-99ab-e76824bbaf6e",
"name": "res-test",
"href": "/systems/57019a4f-a0e9-495f-99ab-e76824bbaf6e",
"resource_id": "e3a7cdfc-3a06-45c3-8384-4d2c68985af9",
"type": "arm_vm",
"platform_model": "standard_ds1_v2",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3584",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/3d4ba999-cbd8-40b8-9998-574be6824a97/resourceGroups/MOVE-TO-PAYG_GROUP/providers/Microsoft.Compute/virtualMachines/res-test"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "move-to-payg_group"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Test Subscription newName2"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "31.1"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "3584.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 15:01:07 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "centralus+move-to-payg_group"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "centralus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "58a87b8f-8bb0-4d3d-9c9d-ddddd8bf028c",
"name": "TestVMTestSub",
"href": "/systems/58a87b8f-8bb0-4d3d-9c9d-ddddd8bf028c",
"resource_id": "952d21d6-9ba2-4217-8df1-f5f6417ded45",
"type": "arm_vm",
"platform_model": "basic_a0",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "768",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "IT"
},
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/3d4ba999-cbd8-40b8-9998-574be6824a97/resourceGroups/TESTSUBTESTRESOURCEGROUP/providers/Microsoft.Compute/virtualMachines/TestVMTestSub"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "testsubtestresourcegroup"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Test Subscription newName2"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.11647346"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "6.5180006"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-03-12 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "2428010.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "262.70886"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "6.8"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "768.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "55.17904"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1754.1079"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "3.33"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "basic_a0"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "91525d8b-2058-4bed-88fd-bc8993da4244"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "3.33"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "6.5180006"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "55.17904"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "basic_a0-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1024.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : IT"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Environment : Testing"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Location : Pune"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 24 2023, 15:01:13 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "768"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+testsubtestresourcegroup"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "90ef184e-ed45-4f36-99a7-af76fea46182",
"name": "anna-flex-vmss_e6148b5e",
"href": "/systems/90ef184e-ed45-4f36-99a7-af76fea46182",
"resource_id": "d4e45d00-4297-492f-9f9d-163fd483fc2d",
"type": "arm_vm",
"platform_model": "standard_b1ls",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "512",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/cc377154-9605-4cb0-8b41-1b39e1c4ac0f/resourceGroups/ANNA-RESGROUP/providers/Microsoft.Compute/virtualMachines/anna-flex-vmss_e6148b5e"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "anna-resgroup"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Pay-As-You-Go"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CatalogFamilyExclusion",
"name": "Catalog Family Exclusion",
"value": "General Purpose b"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "23.7"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "512.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 11:02:54 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v2"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+anna-resgroup"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "de06e0d8-c7cc-4072-bae6-5d45a8277db9",
"name": "anna-flex-vmss_6cf537f8",
"href": "/systems/de06e0d8-c7cc-4072-bae6-5d45a8277db9",
"resource_id": "04c3dd6d-93d1-412f-9832-d242fb30764e",
"type": "arm_vm",
"platform_model": "standard_b1ls",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "512",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/cc377154-9605-4cb0-8b41-1b39e1c4ac0f/resourceGroups/ANNA-RESGROUP/providers/Microsoft.Compute/virtualMachines/anna-flex-vmss_6cf537f8"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "anna-resgroup"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Pay-As-You-Go"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CatalogFamilyExclusion",
"name": "Catalog Family Exclusion",
"value": "General Purpose b"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "23.7"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "512.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 11:02:54 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v2"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+anna-resgroup"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "46c900be-b03d-4dec-b972-8ca014ebb066",
"name": "SQL-Web",
"href": "/systems/46c900be-b03d-4dec-b972-8ca014ebb066",
"resource_id": "f9dca589-739e-4184-b599-9c83e09777dd",
"type": "arm_vm",
"platform_model": "standard_b2s",
"platform": "AZURE",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "4096",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/3d4ba999-cbd8-40b8-9998-574be6824a97/resourceGroups/TESTSUBTESTRESOURCEGROUP/providers/Microsoft.Compute/virtualMachines/SQL-Web"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "testsubtestresourcegroup"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Test Subscription newName2"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "47.3"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "1"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Business Unit : SQL"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Cost Center : North America"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 15:01:11 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "SQL"
},
{
"id": "CLD.COST.CENTER",
"name": "Cost Center",
"value": "North America"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+testsubtestresourcegroup"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "cfec26ed-1df6-4958-b320-0c81899e8fd8",
"name": "Test-SIND-Cal",
"href": "/systems/cfec26ed-1df6-4958-b320-0c81899e8fd8",
"resource_id": "e04a221f-b3d9-4000-9b32-ff7faef77794",
"type": "arm_vm",
"platform_model": "basic_a0",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "768",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/cc377154-9605-4cb0-8b41-1b39e1c4ac0f/resourceGroups/TEST-SIND-CAL-RG/providers/Microsoft.Compute/virtualMachines/Test-SIND-Cal"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "test-sind-cal-rg"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Pay-As-You-Go"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CatalogFamilyExclusion",
"name": "Catalog Family Exclusion",
"value": "General Purpose b"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "6.8"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "768.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 11:02:52 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "southindia+test-sind-cal-rg"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "southindia"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "408f5257-90ca-4fdb-b809-1ace542af008",
"name": "vm-with-sql",
"href": "/systems/408f5257-90ca-4fdb-b809-1ace542af008",
"resource_id": "dd26638f-df3a-4029-8eb5-b666486ebcde",
"type": "arm_vm",
"platform_model": "standard_d2_v3",
"platform": "AZURE",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "8192",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/3d4ba999-cbd8-40b8-9998-574be6824a97/resourceGroups/VM-WITH-SQL_GROUP/providers/Microsoft.Compute/virtualMachines/vm-with-sql"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "vm-with-sql_group"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Test Subscription newName2"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "47.3"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8192.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "1"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 15:01:09 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+vm-with-sql_group"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "9523882d-13ca-4208-bbaa-79250b0676e3",
"name": "cal-ubuntu-westUS",
"href": "/systems/9523882d-13ca-4208-bbaa-79250b0676e3",
"resource_id": "376ddb9f-84c5-4e01-b036-dc40baf6ef7b",
"type": "arm_vm",
"platform_model": "basic_a0",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "768",
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "IT"
},
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/cc377154-9605-4cb0-8b41-1b39e1c4ac0f/resourceGroups/CALSOFT-TEST-VM/providers/Microsoft.Compute/virtualMachines/cal-ubuntu-westUS"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "calsoft-test-vm"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Pay-As-You-Go"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CatalogFamilyExclusion",
"name": "Catalog Family Exclusion",
"value": "General Purpose b"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "6.8"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "768.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Department : IT"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Environment : Testing"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "Location : Pune"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 11:02:45 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "westus+calsoft-test-vm"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "westus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "9112c7c8-d6bd-45df-9828-c1b7ea98479b",
"name": "anna-vm",
"href": "/systems/9112c7c8-d6bd-45df-9828-c1b7ea98479b",
"resource_id": "874e1fb4-3fe9-4368-b776-24ce9f8de4ef",
"type": "arm_vm",
"platform_model": "standard_b1s",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1024",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/cc377154-9605-4cb0-8b41-1b39e1c4ac0f/resourceGroups/ANNA-RESGROUP/providers/Microsoft.Compute/virtualMachines/anna-vm"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "anna-resgroup"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Pay-As-You-Go"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CatalogFamilyExclusion",
"name": "Catalog Family Exclusion",
"value": "General Purpose b"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "23.7"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1024.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 11:02:54 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v2"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "eastus+anna-resgroup"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "eastus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "cc377154-9605-4cb0-8b41-1b39e1c4ac0f"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "0aa61bed-7a94-4712-8364-84f07e65bd1b",
"name": "ML-Windows",
"href": "/systems/0aa61bed-7a94-4712-8364-84f07e65bd1b",
"resource_id": "4292cf24-e5ce-44f2-82bf-29f06f0f7500",
"type": "arm_vm",
"platform_model": "standard_b1s",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1024",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/3d4ba999-cbd8-40b8-9998-574be6824a97/resourceGroups/TESTSUBTESTRESOURCEGROUP/providers/Microsoft.Compute/virtualMachines/ML-Windows"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "testsubtestresourcegroup"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Test Subscription newName2"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.17962724"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "3.9419997"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-03-12 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "2131266.8"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "70.191605"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "23.7"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1024.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "69.55078"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "5359.1997"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "3.33"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "standard_b1s"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "6e856d38-c862-4b31-affe-bc729168231d"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "3.33"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "3.9419997"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "69.55078"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "standard_b1s-1X1"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "1024.0"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jun 24 2023, 15:01:14 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v1"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "1024"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "centralus+testsubtestresourcegroup"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "centralus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
},
{
"id": "2127e4b4-c365-49e2-920d-0aa38619e085",
"name": "win-test",
"href": "/systems/2127e4b4-c365-49e2-920d-0aa38619e085",
"resource_id": "4be3c372-f9e7-42d9-8f16-6b6a02c05740",
"type": "arm_vm",
"platform_model": "standard_ds1_v2",
"platform": "AZURE",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3584",
"attributes": [
{
"id": "attr_azure_id",
"name": "Azure ID",
"value": "/subscriptions/3d4ba999-cbd8-40b8-9998-574be6824a97/resourceGroups/WIN-TEST_GROUP/providers/Microsoft.Compute/virtualMachines/win-test"
},
{
"id": "attr_azure_resource_group",
"name": "Resource Group",
"value": "win-test_group"
},
{
"id": "attr_azure_subscription_name",
"name": "Subscription Name",
"value": "Test Subscription newName2"
},
{
"id": "attr_azure_tenant_id",
"name": "Tenant ID",
"value": "6c9190a7-bca6-4fcd-b35e-36378aadc695"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "31.1"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "3584.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_Num_Data_Disks",
"name": "Number of Data Disks",
"value": "0"
},
{
"id": "attr_Num_Network_Interfaces",
"name": "Number of Network Interfaces",
"value": "1"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 15:01:12 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "attr_virt_type",
"name": "Virtualization Type",
"value": "v2"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "centralus+win-test_group"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "centralus"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "3d4ba999-cbd8-40b8-9998-574be6824a97"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "AZURE"
}
]
}
]
description: |-
After detailed analysis of your cloud environment, Kubex generates recommendations to help you reduce risk and cost.
The next step is to decide which recommendations to action. Kubex provides useful additional details. The following requests demonstrate some of the available options.
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
description: |-
Before Kubex can make recommendations for optimizing your Azure environment, data collection must be initiated. Once your instance data begins rolling in, the analysis are performed and recommendations generated.
See [Optimizing Microsoft Azure Virtual Machine Instances](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_Microsoft_Azure_Virtual_Machine_Instances.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 2.3 Analyzing GCP
item:
- name: 2.3.1 GCP Setup
item:
- name: List All GCP Policies
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp/policy?details=true"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- policy
query:
- key: details
value: "true"
description: |-
_This is an optional step as the analysis runs with the default policy if no policy is specified._
Kubex Policy affects recommendations. You have a choice of policies ranging from more aggressive (lowest operating cost, a bit of work on your end for review) to more conservative (more modest operating cost savings, minimal to no work on your end for review).
Regardless of which policy you choose, Kubex recommendations are always safe. Most can be fully automated with an orchestration tool of your choice.
Note:
> Currently for GCP, you need to contact your Kubex Advisor to make changes to the policy.
See example. Refer to Kubex Online Help [Policy](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Policy.htm)
response:
- name: Review Policy
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/gcp/policy?details=true
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- gcp
- policy
query:
- key: details
value: "true"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Content-Encoding
value: gzip
- key: Vary
value: Accept-Encoding
- key: Date
value: Tue, 19 Feb 2019 19:39:36 GMT
cookie: []
body: |-
[
{
"policyId": "4fe32fc6-6067-4647-8a87-9bd1dc74389e",
"policyInstanceId": "43636c78-851b-4f25-8733-5debbbb6856b",
"name": "DevOps-Automation",
"description": "This policy is intended for generating instance sizing and instance family optimization recommendations that require little or no review before being implemented. CLOE utilizes rule-driven analytics to predict the effort of changing instance type from current to recommended, and this policy favors Low effort recommendations, producing higher automation at the expense of lower cost savings.\r\nThe resource utilization of each system is modeled using a minimum of 7 days and up to 90 days of historical workload.\r\nWhen optimizing instance sizes and families, the predicted CPU and memory usage must not exceed 65% and 85%, respectively.\r\nThis policy will not specify burstable (T-series) instance families for workloads unless they are already running in a burstable family and will not change CPU Architecture from Intel to AMD or vice versa.\r\nWhen memory usage metrics are not available, the analysis assumes the existing memory allocation is required and will not change the memory configuration."
},
{
"policyId": "4fe32fc6-6067-4647-8a87-9bd1dc74389e",
"policyInstanceId": "6131f154-8453-48c3-9747-edb327ec0bed",
"name": "DevOps-Efficiency",
"description": "This policy is intended for generating instance sizing and family optimization that provide maximum operational efficiency (and lowest operating cost). This policy also includes recommendations rated as Moderate effort, generating higher cost reduction than the Kubex Defaults policy. Because of this, any recommendations should be reviewed before implementing.\r\nThe resource utilization of each system is modeled using a minimum of 3 day and up to 30 days of historical workload.\r\nWhen optimizing instance sizes and families, the predicted CPU and memory usage levels must not exceed 75% and 95%, respectively.\r\nWhen memory usage metrics are not available, the analysis effectively assumes the existing memory allocation of the instance is required and will not change the memory configuration."
},
{
"policyId": "4fe32fc6-6067-4647-8a87-9bd1dc74389e",
"policyInstanceId": "9b8cb5db-5045-4dbe-a6ee-740038c6b0b0",
"name": "DevOps-Default",
"description": "This policy reflects best practices for generating instance sizing and instance family optimization recommendations.\r\nThe resource utilization of each system is modeled using a minimum of 7 days and up to 60 days of historical workload.\r\nWhen optimizing instance sizes and families, the predicted CPU and memory usage levels must not exceed 70% and 90%, respectively.\r\nWhen memory usage metrics are not available, the analysis effectively assumes the existing memory allocation of the instance is required and will not change the memory configuration."
}
]
description: In this section you will get a listing of available polices that can be used when analyzing your collected data.
- name: 2.3.2 GCP Data Collection and Anaysis
item:
- name: Setup Data Collection via Kubex UI
request:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/api/ping"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- api
- ping
description: "*This Ping request is a no-op and simply a placeholder for somewhere to hang a description*.\r\n***\r\nCurrently, Google Cloud Platform data collection is initiated from the Kubex Console using the *Public Cloud Connections Wizard*. Before you can use the wizard, you need a GCP service account and credentials in JSON file format.\r\n\r\n> Refer to Kubex Online Help [GCP Data Collection Prerequisites](https://www.densify.com/docs/Content/Data_Collection_for_Public_Cloud_Systems/Google_Cloud_Platform_Data_Collection_Prerequisites.htm) for setup details.\r\n\t\r\n> Once you have your GCP service account JSON file for the project, refer to Kubex Online Help, [Public Cloud Connection Wizard > Configuring a Google Cloud Platform Connection](https://www.densify.com/docs/Content/Densify_Com/Using_the_Public_Cloud_Connection_Wizard.htm#GCP_Connection), for details.\r\n\r\nAfter you click **Save Connection** on the wizard, the data collection process starts. When data collection completes, the *Analysis* process is automatically triggered.\r\n\r\nImportant Note:\r\n> **Analysis requests such as /analysis/cloud/gcp returns data only after data collection is complete and the Analysis process has begun.**"
response: []
- name: Initiate Data Collection and Analysis
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"projectId": "{{GCP_ProjectID}}",
"connectionName": "", //This will appear under Densify's Cloud Connections
"credential": { //Take the content of the service account JSON file excluding 'universe_domain'
"type": "service_account",
"project_id": "",
"private_key_id": "",
"private_key": "",
"client_email": "",
"client_id": "",
"auth_uri": "",
"token_uri": "",
"auth_provider_x509_cert_url": "",
"client_x509_cert_url": ""
}
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- analyze
description: |-
The /analysis/cloud/gcp/analyze request is used to collect Google Cloud Platform infrastructure data and initiate optimization analysis with the data collected.
Notes:
> This process typically takes a minimum of 30 minutes to complete the first time you run it. You can poll status or setup a webhook to check when it's done.
> Body of POST request references variables `projectId`, `connectionName` and `credential`. See overview in the Collection documentation.
See example. Refer to Refer to Kubex Online Help [GCP Analysis](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_GCP_Analyze.htm).
response:
- name: Initiate Data Collection and Analysis
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"projectId": "your_gcp_id",
"connectionName": "", //This will appear under Densify's Cloud Connections
"credential": { //Take the content of the service account JSON file excluding 'universe_domain'
"type": "service_account",
"project_id": "",
"private_key_id": "",
"private_key": "",
"client_id": "",
"auth_uri": "",
"token_uri": "",
"auth_provider_x509_cert_url": "",
"client_x509_cert_url": ""
}
}
url:
raw: https://your_densify_instance:443/api/v2/analysis/cloud/gcp/analyze
protocol: https
host:
- your_densify_instance
port: "443"
path:
- api
- v2
- analysis
- cloud
- gcp
- analyze
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Access-Control-Max-Age
value: "86400"
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Pragma
value: no-cache
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "95"
- key: Date
value: Mon, 21 Aug 2023 14:25:29 GMT
- key: Keep-Alive
value: timeout=20
- key: Connection
value: keep-alive
cookie: []
body: |-
{
"href": "/analysis/cloud/gcp/fcae1acf-f455-4398-817a-8104b9fd5675",
"message": "OK",
"status": 200
}
- name: "Initiate Data Collection and Analysis - returned response after initiating "
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"credential": "{{GCP_credential}}",
"projectID": "{{GCP_ProjectID}}",
"connectionName": "", //optional
"policyInstanceId": "", //optional
"webHook": "" //optional
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- analyze
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-length
value: "70"
- key: date
value: Fri, 24 Jul 2020 18:56:40 GMT
- key: x-envoy-upstream-service-time
value: "9822"
- key: server
value: istio-envoy
cookie: []
body: |-
{
"href": "/analysis/cloud/gcp/fcae1acf-f455-4398-817a-8104b9fd5675",
"message": "Analysis in progress",
"status": 200
}
- name: Initiate Data Collection and Analysis (Historical Audit)
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"projectId": "{{GCP_ProjectID}}",
"connectionName": "", //This will appear under Densify's Cloud Connections
"credential": { //Take the content of the service account JSON file excluding 'universe_domain'
"type": "service_account",
"project_id": "",
"private_key_id": "",
"private_key": "",
"client_email": "",
"client_id": "",
"auth_uri": "",
"token_uri": "",
"auth_provider_x509_cert_url": "",
"client_x509_cert_url": "",
"startDayOffset": "", //optional
"endDayOffset": "" //optional
}
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- analyze
description: |-
The /analysis/cloud/gcp/analyze request is used to collect Google Cloud Platform infrastructure data and initiate optimization analysis with the data collected.
Notes:
> This process typically takes a minimum of 30 minutes to complete the first time you run it. You can poll status or setup a webhook to check when it's done.
> Body of POST request references variables `projectId`, `connectionName`, `credential`, `startDayOffset` and `endDayOffset` . See overview in the Collection documentation.
See example. Refer to Refer to Kubex Online Help [GCP Analysis](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_GCP_Analyze.htm).
response:
- name: Initiate Data Collection and Analysis (Historical Audit)
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"credential": "{{GCP_credential}}",
"projectID": "your_gcp_id",
"triggerAdhocAudit": "",
"startDayOffset": "", //optional
"endDayOffset": "" //optional
}
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/gcp/analyze
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- gcp
- analyze
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "70"
- key: Date
value: Fri, 15 Feb 2019 17:17:56 GMT
cookie: []
body: |-
{
"href": "/analysis/cloud/gcp/null/status",
"message": "OK",
"status": 200
}
- name: "Initiate Data Collection and Analysis - returned response after initiating "
originalRequest:
method: POST
header:
- key: Accept
value: application/json
- key: Content-Type
value: application/json
body:
mode: raw
raw: |-
{
"credential": "{{GCP_credential}}",
"projectID": "{{GCP_ProjectID}}",
"triggerAdhocAudit": "",
"startDayOffset": "", //optional
"endDayOffset": "" //optional
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp/analyze"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- analyze
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-length
value: "70"
- key: date
value: Fri, 24 Jul 2020 18:56:40 GMT
- key: x-envoy-upstream-service-time
value: "9822"
- key: server
value: istio-envoy
cookie: []
body: |-
{
"href": "Not available",
"message": "Analysis in progress",
"status": 200
}
- name: List all GCP Analyses
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"analysisId\", firstdata.analysisId);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
description: |-
Returns a list of all existing GCP analyses, with associated references and status.
The elements `analysisResults`, `analysisStatus` and `analysisId` are commonly used in many other requests.
Note:
> In this example, the environment variable `analysisId` is set to the first returned _analysisId_ element for future use.
Note:
> This requests will only return data after the initial Data Collection has completed.
See example. Refer to Kubex Online Help [Analysis Entity](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Entity.htm).
response:
- name: List all Generated Analyses
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: https://your_densify_instance:443/api/v2/analysis/cloud/gcp
protocol: https
host:
- your_densify_instance
port: "443"
path:
- api
- v2
- analysis
- cloud
- gcp
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "511"
- key: Date
value: Fri, 04 Sep 2020 17:33:12 GMT
cookie: []
body: |-
[
{
"accountId": "level3-production-op",
"policyInstanceId": "83003bdd-389e-4210-8ef0-c47a6d025c4d",
"analysisCompletedOn": 1585736399537,
"analysisResults": "/analysis/cloud/gcp/0930c31d-13ac-4a3f-892e-2a35c8a3f842/results",
"accountName": "DVC_GCP",
"policyName": "GCP Assessement",
"analysisId": "0930c31d-13ac-4a3f-892e-2a35c8a3f842",
"href": "/analysis/cloud/gcp/0930c31d-13ac-4a3f-892e-2a35c8a3f842",
"analysisStatus": "/analysis/cloud/gcp/0930c31d-13ac-4a3f-892e-2a35c8a3f842/status",
"analysisName": "level3-production-op"
}
]
- name: Get Analysis Status
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
name: Content-Type
type: text
value: application/json
- key: Content-Type
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp/{{analysisId}}/status"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- "{{analysisId}}"
- status
description: |-
Check GCP analysis status.
_This requests will only return data after the initial data collection has completed._
Note:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
See example. Refer to Kubex Online Help [Analysis Status](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Status.htm).
response:
- name: Get Analysis Status
originalRequest:
method: GET
header:
- key: Accept
name: Content-Type
type: text
value: application/json
- key: Content-Type
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/gcp/0930c31d-13ac-4a3f-892e-2a35c8a3f842/status"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- 0930c31d-13ac-4a3f-892e-2a35c8a3f842
- status
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "148"
- key: Date
value: Tue, 19 Feb 2019 19:40:56 GMT
cookie: []
body: |-
{
"analysisStage": "Completed",
"webHookStatus": "",
"statusMessage": "Analysis level3-production-op was last completed on Thu Feb 07 16:14:43 EST 2019."
}
- name: Delete GCP data collection and analysis
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header:
- key: Accept
type: text
value: application/json
body:
mode: raw
raw: "{\r\n\_\_\_\_\"webHook\":\_//webHook is optional\r\n{\r\n\_\_\_\_\_\_\_\_\"uri\": \"http://mywebhookserver/webhook/results\",\r\n\_\_\_\_\_\_\_\_\"authType\": \"basic\",\r\n\_\_\_\_\_\_\_\_\"authValue\": \"tester:testerpassword\"\r\n\_\_\_\_\_\_\_\_\_}\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\r\n}"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- "{{analysisId}}"
description: |-
The DEL /webhook/analysis/{{platform}}/{{subplatform}}/{{analysisId}} resource is used to delete a webhook definition from an existing Analysis.
In this example, the webhook definition is removed from a specific AWS cloud Analysis.
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to delete a webhook for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
See example. Refer to [Analysis Webhook](https://www.densify.com/docs-api/Content/API_Guide/Analysis_Webhook.htm).
response:
- name: Delete GCP data collection and analysis
originalRequest:
method: DELETE
header:
- key: Accept
type: text
value: application/json
- key: Content-Type
name: Content-Type
value: application/json
type: text
body:
mode: raw
raw: "{\r\n\_\_\_\_\"webHook\":\_//webHook is optional\r\n{\r\n\_\_\_\_\_\_\_\_\"uri\": \"http://mywebhookserver/webhook/results\",\r\n\_\_\_\_\_\_\_\_\"authType\": \"basic\",\r\n\_\_\_\_\_\_\_\_\"authValue\": \"tester:testerpassword\"\r\n\_\_\_\_\_\_\_\_\_}\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\r\n}"
url:
raw: https://your_densify_instance::443/api/v2/analysis/cloud/gcp/your_analysis_id
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- cloud
- gcp
- your_analysis_id
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "29"
- key: Date
value: Tue, 23 Jun 2020 20:35:37 GMT
cookie: []
body: |-
{
"message": "ok",
"status": 200
}
description: |-
Before initiating data collection you must configure your public cloud as outlined in [Google Cloud Platform Data Collection Prerequisites](https://www.densify.com/docs/WebHelp_Densify_Cloud/Content/Data_Collection_for_Public_Cloud_Systems/Google_Cloud_Platform_Data_Collection_Prerequisites.htm).
The first audit collects 30 days of historical data. After that, daily nightly audits collect the last 24 hours of data.
After data collection completes, the analyses run automatically. See [Optimizing GCP Compute Engine Instances](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_GCP_Compute_Engine_Instances.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 2.3.3 GCP Analysis Results
item:
- name: Get Analysis System List
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"entityId\", firstdata.entityId);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp/{{analysisId}}/systems"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- "{{analysisId}}"
- systems
description: |-
Return a collection of all the systems that were included in the optimization analysis.
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
> In this example, the environment variable `entityId` is set to the first returned _entityId_ element for future use.
See example. Refer to Kubex Online Help [GCP Analysis Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_GCP_Systems.htm).
response:
- name: Get Analysis System List
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/gcp/0930c31d-13ac-4a3f-892e-2a35c8a3f842/systems"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- 0930c31d-13ac-4a3f-892e-2a35c8a3f842
- systems
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-encoding
value: gzip
- key: vary
value: Accept-Encoding
- key: date
value: Fri, 31 Jan 2020 20:01:38 GMT
- key: x-envoy-upstream-service-time
value: "70"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"serviceType": "Compute Engine",
"resourceId": "4090409312508112518",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_gas-102",
"entityId": "006c16f5-56eb-41b5-a389-383db436e048",
"href": "/systems/006c16f5-56eb-41b5-a389-383db436e048"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409739570222220",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.mln_gas-280",
"entityId": "00d60166-b9a5-4825-990e-a2efeb3caa32",
"href": "/systems/00d60166-b9a5-4825-990e-a2efeb3caa32"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409486108114465",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl08.hosa_far-348",
"entityId": "02cbfdb5-3a0d-4ecb-8732-c6f04cfcf7f9",
"href": "/systems/02cbfdb5-3a0d-4ecb-8732-c6f04cfcf7f9"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409383232279396",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.ttr_fet-176",
"entityId": "03a4a5f3-da3f-444e-a851-77476c626642",
"href": "/systems/03a4a5f3-da3f-444e-a851-77476c626642"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409880828503315",
"powerState": "Running",
"currentType": "n1-standard-1",
"displayName": "gl04.mln_far-338",
"entityId": "04a8f446-b173-4ab4-b381-3212a6fc427d",
"href": "/systems/04a8f446-b173-4ab4-b381-3212a6fc427d"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409778904385302",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.camp_vmx-266",
"entityId": "073ea39e-b99b-4aea-ae33-feffd100fd4a",
"href": "/systems/073ea39e-b99b-4aea-ae33-feffd100fd4a"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409763207560333",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.ttr_fap-194",
"entityId": "0780a3cb-6583-4342-8838-c0a7c749bdbf",
"href": "/systems/0780a3cb-6583-4342-8838-c0a7c749bdbf"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409630831871663",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.mln_sti-234",
"entityId": "09c415cb-a69b-4dac-8b7d-e4c774673ad1",
"href": "/systems/09c415cb-a69b-4dac-8b7d-e4c774673ad1"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409132560976903",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.coa_xtr-264",
"entityId": "0a2c1729-0312-48ee-af58-07b99c8845fe",
"href": "/systems/0a2c1729-0312-48ee-af58-07b99c8845fe"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409794177440372",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.mln_vmx-444",
"entityId": "0ad84707-4096-4969-a757-b0e7cd25124f",
"href": "/systems/0ad84707-4096-4969-a757-b0e7cd25124f"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409820148194606",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.camp_sti-594",
"entityId": "0ba35fa6-9a89-4f7c-a59d-f778bb7ebc70",
"href": "/systems/0ba35fa6-9a89-4f7c-a59d-f778bb7ebc70"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409839922545827",
"powerState": "Running",
"currentType": "n1-standard-1",
"displayName": "gl02.coa_clt-572",
"entityId": "0e4cfaa9-b287-4925-8c5e-0597d184d51f",
"href": "/systems/0e4cfaa9-b287-4925-8c5e-0597d184d51f"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409355685464816",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.coa_clt-156",
"entityId": "0e5de40f-c9a0-41dd-b4b5-8756ce95ccdb",
"href": "/systems/0e5de40f-c9a0-41dd-b4b5-8756ce95ccdb"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409253873479132",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.camp_far-36",
"entityId": "0ebe821d-44a4-4f7d-8333-a19fff577e80",
"href": "/systems/0ebe821d-44a4-4f7d-8333-a19fff577e80"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409593060129955",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.camp_gas-502",
"entityId": "1035bd5f-0899-4236-ab85-f1993cbb04dc",
"href": "/systems/1035bd5f-0899-4236-ab85-f1993cbb04dc"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409506810570355",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.doop_clt-324",
"entityId": "11de901c-bbcb-4585-92b6-2880aff926a2",
"href": "/systems/11de901c-bbcb-4585-92b6-2880aff926a2"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409860807655198",
"powerState": "Running",
"currentType": "n1-standard-1",
"displayName": "gl02.mln_far-386",
"entityId": "15ca31f8-f8a3-4d0c-ab6a-4698ac992e67",
"href": "/systems/15ca31f8-f8a3-4d0c-ab6a-4698ac992e67"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409816369051592",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.coa_clt-90",
"entityId": "16667e92-cfe2-4335-b500-b43fb77f4be4",
"href": "/systems/16667e92-cfe2-4335-b500-b43fb77f4be4"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409723758657994",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.doop_xtr-32",
"entityId": "1679679b-9726-4a6b-9c33-a00f9261b6c1",
"href": "/systems/1679679b-9726-4a6b-9c33-a00f9261b6c1"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409857483751206",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.mln_vmx-500",
"entityId": "16830874-d325-487f-8f10-a07a9f399e3a",
"href": "/systems/16830874-d325-487f-8f10-a07a9f399e3a"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409292233744065",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.mln_sti-350",
"entityId": "17cc5853-e9fb-466a-97dd-69fcbb1c7cf7",
"href": "/systems/17cc5853-e9fb-466a-97dd-69fcbb1c7cf7"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409732350933174",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.ttr_xtr-498",
"entityId": "17ed0170-9ce7-4dde-81e4-ebe287998e74",
"href": "/systems/17ed0170-9ce7-4dde-81e4-ebe287998e74"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409354608881245",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_far-204",
"entityId": "18d764d9-236a-4e44-9417-e44ae7ee3793",
"href": "/systems/18d764d9-236a-4e44-9417-e44ae7ee3793"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409346480363086",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_far-486",
"entityId": "18dd41dc-3965-40f9-af21-54ed5d6f3c45",
"href": "/systems/18dd41dc-3965-40f9-af21-54ed5d6f3c45"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409232044889434",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.doop_fet-592",
"entityId": "19cb67a1-7b6e-404f-b484-bc133bc4f336",
"href": "/systems/19cb67a1-7b6e-404f-b484-bc133bc4f336"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409522174936027",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.mln_gas-278",
"entityId": "19e1877c-a27f-4ee0-a0ff-6d73c5c68b27",
"href": "/systems/19e1877c-a27f-4ee0-a0ff-6d73c5c68b27"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409515154414267",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.coa_clt-172",
"entityId": "1a58f79e-1a64-431a-b80f-1ad718a5e5e8",
"href": "/systems/1a58f79e-1a64-431a-b80f-1ad718a5e5e8"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409603200655943",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.hosa_sti-454",
"entityId": "1b408643-f8f2-4707-9c87-f89b3f681c7b",
"href": "/systems/1b408643-f8f2-4707-9c87-f89b3f681c7b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409780453028653",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.doop_xtr-124",
"entityId": "1b84d59f-b704-4a0d-98c4-ca1d5763a9ad",
"href": "/systems/1b84d59f-b704-4a0d-98c4-ca1d5763a9ad"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409208949349586",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.mln_vmx-128",
"entityId": "1c88dc0c-63af-4727-92af-fd22ebb3f5b3",
"href": "/systems/1c88dc0c-63af-4727-92af-fd22ebb3f5b3"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409185647803379",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl08.mln_sti-376",
"entityId": "1d19b140-ba0f-4683-acb6-64ff4dc4c8ba",
"href": "/systems/1d19b140-ba0f-4683-acb6-64ff4dc4c8ba"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409365788582003",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.camp_vmx-158",
"entityId": "1d31e631-38b9-4ca0-9046-d689ae2cc92a",
"href": "/systems/1d31e631-38b9-4ca0-9046-d689ae2cc92a"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409821605915108",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.mln_gas-506",
"entityId": "1d904f7f-862b-49c4-a6c4-f66281a5b949",
"href": "/systems/1d904f7f-862b-49c4-a6c4-f66281a5b949"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409472561104042",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.hosa_vmx-538",
"entityId": "1ec30160-e4de-4f8c-a7cc-049db50370fe",
"href": "/systems/1ec30160-e4de-4f8c-a7cc-049db50370fe"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409765692960903",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.camp_gas-164",
"entityId": "1ef99049-1085-42ca-a947-b666443b9dec",
"href": "/systems/1ef99049-1085-42ca-a947-b666443b9dec"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409783366427221",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.doop_fet-330",
"entityId": "20cd7fa3-d8d1-4623-804f-4cdd842c74df",
"href": "/systems/20cd7fa3-d8d1-4623-804f-4cdd842c74df"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409452598700257",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.camp_gas-488",
"entityId": "20f4b121-8f6d-40f8-ab38-fdaea23e7bb1",
"href": "/systems/20f4b121-8f6d-40f8-ab38-fdaea23e7bb1"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409618400569026",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.doop_xtr-360",
"entityId": "214d4e7c-fc75-43e7-8497-85ec1c88c338",
"href": "/systems/214d4e7c-fc75-43e7-8497-85ec1c88c338"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409709951363964",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.hosa_gas-120",
"entityId": "21fd8e4b-6eda-490e-89fe-2e152a7ec7df",
"href": "/systems/21fd8e4b-6eda-490e-89fe-2e152a7ec7df"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409744761836241",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.camp_far-404",
"entityId": "23cc4433-1044-497e-9922-176b77d965b3",
"href": "/systems/23cc4433-1044-497e-9922-176b77d965b3"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409783622225200",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.hosa_far-210",
"entityId": "23d2f8d2-7683-4e13-8e37-02a6cd8cba38",
"href": "/systems/23d2f8d2-7683-4e13-8e37-02a6cd8cba38"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409768866429184",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.mln_far-528",
"entityId": "24b8a81d-55b8-48bb-87b0-9d3a9b496a65",
"href": "/systems/24b8a81d-55b8-48bb-87b0-9d3a9b496a65"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409314376443560",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl02.doop_xtr-440",
"entityId": "253c225a-66ae-403f-8856-8335e03e28f0",
"href": "/systems/253c225a-66ae-403f-8856-8335e03e28f0"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409458222449154",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.coa_clt-230",
"entityId": "25be162d-32a5-42be-9592-360985c89f6e",
"href": "/systems/25be162d-32a5-42be-9592-360985c89f6e"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409661286887906",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.coa_xtr-168",
"entityId": "26a2ee7d-2470-41d5-bccc-ae069f5aa280",
"href": "/systems/26a2ee7d-2470-41d5-bccc-ae069f5aa280"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409881817359163",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.ttr_clt-398",
"entityId": "26eb455d-0c1a-4f91-af50-5286d5aab8ba",
"href": "/systems/26eb455d-0c1a-4f91-af50-5286d5aab8ba"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409205214838657",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.doop_fap-430",
"entityId": "273fe41d-1f4f-4716-8c3f-3f181a99e0db",
"href": "/systems/273fe41d-1f4f-4716-8c3f-3f181a99e0db"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409586559529750",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.ttr_clt-250",
"entityId": "28f91d68-697b-41de-90ad-487a01c3a855",
"href": "/systems/28f91d68-697b-41de-90ad-487a01c3a855"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409828470934239",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.camp_gas-340",
"entityId": "29b07749-8067-4f3f-af55-dc8f259f1e5b",
"href": "/systems/29b07749-8067-4f3f-af55-dc8f259f1e5b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409811689593887",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.ttr_fet-214",
"entityId": "29bff619-2d6a-47da-9c0f-f777a0279b77",
"href": "/systems/29bff619-2d6a-47da-9c0f-f777a0279b77"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409455571136182",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.camp_gas-480",
"entityId": "29e87962-6ce3-40b2-9ef5-a33c58698284",
"href": "/systems/29e87962-6ce3-40b2-9ef5-a33c58698284"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409413607595447",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.mln_vmx-62",
"entityId": "2a89c9cf-c3ea-4de9-95eb-470cf44b10a3",
"href": "/systems/2a89c9cf-c3ea-4de9-95eb-470cf44b10a3"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409670728240217",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.mln_gas-122",
"entityId": "2c656edb-ff08-42e2-a382-e4bfd27e3a3f",
"href": "/systems/2c656edb-ff08-42e2-a382-e4bfd27e3a3f"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409921163839816",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.coa_xtr-232",
"entityId": "2c8ce361-319d-498a-9755-81f5bda2ce73",
"href": "/systems/2c8ce361-319d-498a-9755-81f5bda2ce73"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409602647571263",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.mln_sti-368",
"entityId": "2deabf04-7d6e-4d14-acf8-eda643824a35",
"href": "/systems/2deabf04-7d6e-4d14-acf8-eda643824a35"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409742428352064",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.camp_sti-540",
"entityId": "2e7df18f-ea36-47fb-b363-44c7907e87b4",
"href": "/systems/2e7df18f-ea36-47fb-b363-44c7907e87b4"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409938902910065",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.camp_gas-38",
"entityId": "32f24923-2352-47ad-8f1d-fab93f878155",
"href": "/systems/32f24923-2352-47ad-8f1d-fab93f878155"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409691015978538",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.mln_gas-196",
"entityId": "337ed16b-a3c8-446b-a94b-f1ca73b35b7b",
"href": "/systems/337ed16b-a3c8-446b-a94b-f1ca73b35b7b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409148039882431",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.mln_gas-552",
"entityId": "33bc010e-fc51-466c-ae72-82c145a5779d",
"href": "/systems/33bc010e-fc51-466c-ae72-82c145a5779d"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409281828366575",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.mln_sti-224",
"entityId": "35f79a05-239b-451c-83a1-f844476e96ad",
"href": "/systems/35f79a05-239b-451c-83a1-f844476e96ad"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409460047515445",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.hosa_gas-370",
"entityId": "369afff6-ab6d-4da2-b085-58b5f69e1162",
"href": "/systems/369afff6-ab6d-4da2-b085-58b5f69e1162"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409734702876748",
"powerState": "Running",
"currentType": "n1-standard-1",
"displayName": "gl04.mln_gas-150",
"entityId": "36c4a03e-3d63-4906-9e92-67a6e4e4e62c",
"href": "/systems/36c4a03e-3d63-4906-9e92-67a6e4e4e62c"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409376638043246",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.hosa_far-284",
"entityId": "39c73749-c6ab-4870-bd78-f6490b65a4f0",
"href": "/systems/39c73749-c6ab-4870-bd78-f6490b65a4f0"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409300495786093",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_far-314",
"entityId": "3be5d335-a869-4d5e-94dc-d68b18fbef3c",
"href": "/systems/3be5d335-a869-4d5e-94dc-d68b18fbef3c"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409951218403668",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.ttr_fet-462",
"entityId": "3d08fa9b-7161-44a2-b362-37c9a68ece55",
"href": "/systems/3d08fa9b-7161-44a2-b362-37c9a68ece55"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409492058484368",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.camp_sti-190",
"entityId": "3e8357ae-7429-48f3-808d-2fb47dd15963",
"href": "/systems/3e8357ae-7429-48f3-808d-2fb47dd15963"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409832871043036",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.mln_sti-184",
"entityId": "3f6c82ef-2966-48ba-8ff5-8790afa9a25d",
"href": "/systems/3f6c82ef-2966-48ba-8ff5-8790afa9a25d"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409975417822496",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.ttr_fap-208",
"entityId": "405d5f28-86dc-4f36-be3e-2906bda64967",
"href": "/systems/405d5f28-86dc-4f36-be3e-2906bda64967"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409838974845753",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.camp_far-396",
"entityId": "40f4bc6d-a571-40e1-83a0-a47a1e6370b0",
"href": "/systems/40f4bc6d-a571-40e1-83a0-a47a1e6370b0"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409859896181416",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.doop_fap-8",
"entityId": "40ff5747-1265-438f-b6f7-2f8a40cc08a8",
"href": "/systems/40ff5747-1265-438f-b6f7-2f8a40cc08a8"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409632543862503",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.coa_xtr-6",
"entityId": "412caa41-7f42-4c96-b196-11eeb35265f5",
"href": "/systems/412caa41-7f42-4c96-b196-11eeb35265f5"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409602413568160",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.camp_gas-86",
"entityId": "43323821-022a-4d37-b86a-80f6604f2758",
"href": "/systems/43323821-022a-4d37-b86a-80f6604f2758"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409518504415024",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.doop_fap-64",
"entityId": "44608617-29d9-42b5-be8f-a41ca3c19037",
"href": "/systems/44608617-29d9-42b5-be8f-a41ca3c19037"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409186073225881",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.coa_xtr-576",
"entityId": "459c5388-5d15-451d-ac8c-77ee05e3e15d",
"href": "/systems/459c5388-5d15-451d-ac8c-77ee05e3e15d"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409976860135059",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.ttr_clt-344",
"entityId": "4643c472-6c34-4ee9-a812-6089a3b555f2",
"href": "/systems/4643c472-6c34-4ee9-a812-6089a3b555f2"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409178505300149",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl04.hosa_vmx-178",
"entityId": "469699f8-1280-4a08-88be-7caaf704c7cb",
"href": "/systems/469699f8-1280-4a08-88be-7caaf704c7cb"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409442807856356",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.doop_xtr-598",
"entityId": "47711349-ebf2-47de-b604-aebb1d6db718",
"href": "/systems/47711349-ebf2-47de-b604-aebb1d6db718"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409749047412561",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.ttr_fet-228",
"entityId": "4854a1b1-8f86-4ff6-a73f-b0f5402ae115",
"href": "/systems/4854a1b1-8f86-4ff6-a73f-b0f5402ae115"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409548867286678",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.camp_sti-34",
"entityId": "4880a91e-293a-4935-b693-fa4112d68c18",
"href": "/systems/4880a91e-293a-4935-b693-fa4112d68c18"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409705982339096",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.camp_sti-152",
"entityId": "4c0ea8e4-c4fd-4f04-b869-80fabbdc0669",
"href": "/systems/4c0ea8e4-c4fd-4f04-b869-80fabbdc0669"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409834545798435",
"powerState": "Running",
"currentType": "n1-standard-2",
"displayName": "gl02.ttr_xtr-390",
"entityId": "4d89c193-ff94-4946-922d-8b24f775adf6",
"href": "/systems/4d89c193-ff94-4946-922d-8b24f775adf6"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409453936451630",
"powerState": "Running",
"currentType": "n1-standard-32",
"displayName": "gl08.coa_xtr-286",
"entityId": "4e1f188f-b3bb-4042-994d-f1b3a0f6cae3",
"href": "/systems/4e1f188f-b3bb-4042-994d-f1b3a0f6cae3"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409736393297645",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.mln_far-104",
"entityId": "4e311684-d116-48d7-8e2e-1277ffacfca6",
"href": "/systems/4e311684-d116-48d7-8e2e-1277ffacfca6"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409593967269074",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.doop_clt-42",
"entityId": "4f3a891d-3b03-4495-a730-2fea45aa55c8",
"href": "/systems/4f3a891d-3b03-4495-a730-2fea45aa55c8"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409756766296777",
"powerState": "Running",
"currentType": "n1-standard-1",
"displayName": "gl04.hosa_gas-292",
"entityId": "4f3df896-75ec-4d72-9058-90159ed31652",
"href": "/systems/4f3df896-75ec-4d72-9058-90159ed31652"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409604820025646",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.hosa_gas-530",
"entityId": "4fc021f2-7caa-479b-8ae7-398c249df5a9",
"href": "/systems/4fc021f2-7caa-479b-8ae7-398c249df5a9"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409350642405027",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_vmx-222",
"entityId": "5088c72f-9198-4d51-8408-c9e9d79b0aa7",
"href": "/systems/5088c72f-9198-4d51-8408-c9e9d79b0aa7"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409892539066689",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.coa_fap-456",
"entityId": "524a5abc-2aaa-4236-b574-3effcf852edd",
"href": "/systems/524a5abc-2aaa-4236-b574-3effcf852edd"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409849312069833",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.doop_fap-544",
"entityId": "52d562cd-626e-4f85-a149-f4fe4cf8bab7",
"href": "/systems/52d562cd-626e-4f85-a149-f4fe4cf8bab7"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409225564561139",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.mln_sti-28",
"entityId": "534dc864-0d2e-4350-ae7a-e172265d0c8e",
"href": "/systems/534dc864-0d2e-4350-ae7a-e172265d0c8e"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409251125253052",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.doop_xtr-584",
"entityId": "555a2c20-7247-44ae-8c84-45bb582f6f1b",
"href": "/systems/555a2c20-7247-44ae-8c84-45bb582f6f1b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409495315996204",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.mln_vmx-556",
"entityId": "56a1a113-de8f-48b8-8c29-3eed2e5bab0a",
"href": "/systems/56a1a113-de8f-48b8-8c29-3eed2e5bab0a"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409508486700389",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.doop_xtr-332",
"entityId": "56a82905-a7c0-47f8-8cb1-c135a6177516",
"href": "/systems/56a82905-a7c0-47f8-8cb1-c135a6177516"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409749968452724",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.doop_xtr-484",
"entityId": "56fb871e-a69e-4a6e-b571-061bd42c07f6",
"href": "/systems/56fb871e-a69e-4a6e-b571-061bd42c07f6"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409198028481696",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.coa_xtr-546",
"entityId": "5706559f-5bef-443a-97c6-0764e09c1490",
"href": "/systems/5706559f-5bef-443a-97c6-0764e09c1490"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409488450471467",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.hosa_vmx-410",
"entityId": "57e98acd-f333-49e3-9d7c-cc5e012d0d37",
"href": "/systems/57e98acd-f333-49e3-9d7c-cc5e012d0d37"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409517032920671",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.coa_xtr-394",
"entityId": "58d9c100-ffc8-46dd-8990-9d455aade364",
"href": "/systems/58d9c100-ffc8-46dd-8990-9d455aade364"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409633286951416",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.camp_gas-78",
"entityId": "58fb45f2-6d1c-4403-be8a-daf084d14ab5",
"href": "/systems/58fb45f2-6d1c-4403-be8a-daf084d14ab5"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409515627164244",
"powerState": "Running",
"currentType": "n1-standard-2",
"displayName": "gl02.camp_far-490",
"entityId": "5904d4de-3cad-4d7c-9f1b-ddc597ce2792",
"href": "/systems/5904d4de-3cad-4d7c-9f1b-ddc597ce2792"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409579865858316",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_gas-558",
"entityId": "599b5ec0-71ba-47e9-8060-87be7d975ef9",
"href": "/systems/599b5ec0-71ba-47e9-8060-87be7d975ef9"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409706858624521",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.ttr_xtr-4",
"entityId": "59b54997-df45-4769-832a-32b10ae5403c",
"href": "/systems/59b54997-df45-4769-832a-32b10ae5403c"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409608478317491",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl02.ttr_xtr-154",
"entityId": "5af565f5-74d8-4238-bc76-d0a795768cd0",
"href": "/systems/5af565f5-74d8-4238-bc76-d0a795768cd0"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409278387731615",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.ttr_xtr-160",
"entityId": "5b5d25b3-b1a7-41ce-95c1-78ce7b76f8b4",
"href": "/systems/5b5d25b3-b1a7-41ce-95c1-78ce7b76f8b4"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409501124305917",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.coa_clt-18",
"entityId": "5cacb1de-2839-429a-bdbd-d7748df6e4c6",
"href": "/systems/5cacb1de-2839-429a-bdbd-d7748df6e4c6"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409237683422833",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.camp_gas-296",
"entityId": "5d038c58-7298-49d2-a06f-5b36248718d2",
"href": "/systems/5d038c58-7298-49d2-a06f-5b36248718d2"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409463370715225",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.ttr_fet-346",
"entityId": "5da0f5e5-104d-4c42-bf19-e9e3de3b4ac9",
"href": "/systems/5da0f5e5-104d-4c42-bf19-e9e3de3b4ac9"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409371649329830",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.hosa_sti-252",
"entityId": "5faa69b3-93b6-49b1-8265-f97abf07d1df",
"href": "/systems/5faa69b3-93b6-49b1-8265-f97abf07d1df"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409284027687256",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.mln_sti-290",
"entityId": "60ccd09e-bfd4-47b4-99e1-2da8366ba7a8",
"href": "/systems/60ccd09e-bfd4-47b4-99e1-2da8366ba7a8"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409454368745188",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.ttr_fap-256",
"entityId": "60ec165f-417c-4ab8-a80d-5e4495db8134",
"href": "/systems/60ec165f-417c-4ab8-a80d-5e4495db8134"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409964939518626",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.hosa_vmx-316",
"entityId": "6232de78-6289-437d-9379-e33d22de2ea2",
"href": "/systems/6232de78-6289-437d-9379-e33d22de2ea2"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409819596312266",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.coa_xtr-108",
"entityId": "630474b8-80ec-471e-8e0d-194ae701a7d8",
"href": "/systems/630474b8-80ec-471e-8e0d-194ae701a7d8"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409563146068276",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.doop_xtr-248",
"entityId": "639dc75e-6a01-4936-8a10-2782d5048614",
"href": "/systems/639dc75e-6a01-4936-8a10-2782d5048614"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409381173976833",
"powerState": "Running",
"currentType": "n1-standard-1",
"displayName": "gl04.mln_gas-372",
"entityId": "63fc1e51-6b41-4490-8c89-4d4fc65695b2",
"href": "/systems/63fc1e51-6b41-4490-8c89-4d4fc65695b2"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409860224721097",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.camp_gas-20",
"entityId": "641229d2-6c71-4ad1-8aba-a43c64bae5ce",
"href": "/systems/641229d2-6c71-4ad1-8aba-a43c64bae5ce"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409607846504490",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.ttr_fap-24",
"entityId": "6498fada-72c2-4940-b546-4ed55b144a10",
"href": "/systems/6498fada-72c2-4940-b546-4ed55b144a10"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409130836313889",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.coa_fap-522",
"entityId": "6499b7bc-987b-4213-b04c-0b487d962011",
"href": "/systems/6499b7bc-987b-4213-b04c-0b487d962011"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409782324614294",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.camp_sti-526",
"entityId": "66381b63-af8a-4bbd-955f-82a2cf0c0712",
"href": "/systems/66381b63-af8a-4bbd-955f-82a2cf0c0712"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409824603330130",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.coa_fet-60",
"entityId": "6673e5a6-61fa-4a1a-8453-9b518cca274c",
"href": "/systems/6673e5a6-61fa-4a1a-8453-9b518cca274c"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409796419370738",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.coa_xtr-162",
"entityId": "6823223d-b38a-44d9-8076-09a221d11414",
"href": "/systems/6823223d-b38a-44d9-8076-09a221d11414"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409659025821696",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.mln_gas-192",
"entityId": "68d40a28-5ada-4c9e-a4ca-8a2ef06e9643",
"href": "/systems/68d40a28-5ada-4c9e-a4ca-8a2ef06e9643"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409729790010142",
"powerState": "Running",
"currentType": "n1-standard-32",
"displayName": "gl08.hosa_gas-274",
"entityId": "696c7e3d-66da-470d-b0bf-f847f43af862",
"href": "/systems/696c7e3d-66da-470d-b0bf-f847f43af862"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409270980630261",
"powerState": "Running",
"currentType": "n1-standard-2",
"displayName": "gl02.coa_fap-68",
"entityId": "6a2b99b7-7956-49ae-a9c4-e4045eba650f",
"href": "/systems/6a2b99b7-7956-49ae-a9c4-e4045eba650f"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409210656739183",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.ttr_xtr-536",
"entityId": "6b0c1ae4-ee56-4638-9d87-e8c68762204d",
"href": "/systems/6b0c1ae4-ee56-4638-9d87-e8c68762204d"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409442840843128",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.coa_xtr-380",
"entityId": "6d265c2a-2bfa-4feb-bf68-8154e99da7a7",
"href": "/systems/6d265c2a-2bfa-4feb-bf68-8154e99da7a7"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409755421833333",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.doop_clt-142",
"entityId": "6d335557-5923-4e68-87d1-e6e88553ff68",
"href": "/systems/6d335557-5923-4e68-87d1-e6e88553ff68"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409435122484243",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.mln_gas-496",
"entityId": "6d8a4d47-dd17-471d-87aa-88724967a126",
"href": "/systems/6d8a4d47-dd17-471d-87aa-88724967a126"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409586967297285",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.doop_xtr-524",
"entityId": "6e360969-2839-47a0-a3fc-6a818ae7fa09",
"href": "/systems/6e360969-2839-47a0-a3fc-6a818ae7fa09"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409725221302305",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.camp_far-352",
"entityId": "6ec193da-1769-4cda-8130-11577a86bee2",
"href": "/systems/6ec193da-1769-4cda-8130-11577a86bee2"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409659234999121",
"powerState": "Running",
"currentType": "n1-standard-1",
"displayName": "gl04.camp_sti-146",
"entityId": "6f78e1f2-63d6-4e47-88ff-e903ddd08591",
"href": "/systems/6f78e1f2-63d6-4e47-88ff-e903ddd08591"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409429473595349",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl08.ttr_fet-406",
"entityId": "7000e60e-84d8-450c-9397-c6ed802f06d8",
"href": "/systems/7000e60e-84d8-450c-9397-c6ed802f06d8"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409212887542271",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.coa_fap-116",
"entityId": "70062d12-a189-46d9-864e-09465c4c1585",
"href": "/systems/70062d12-a189-46d9-864e-09465c4c1585"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409789185040600",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.camp_vmx-106",
"entityId": "7064d99c-9ac8-42a0-a7e7-65b193a197ed",
"href": "/systems/7064d99c-9ac8-42a0-a7e7-65b193a197ed"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409457091931300",
"powerState": "Running",
"currentType": "n1-standard-2",
"displayName": "gl08.coa_fet-378",
"entityId": "7081aa88-c641-46ca-b67f-53e53d2b3eca",
"href": "/systems/7081aa88-c641-46ca-b67f-53e53d2b3eca"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409158354213332",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.camp_sti-452",
"entityId": "7448c752-e845-4b70-a31e-8fdb91e90853",
"href": "/systems/7448c752-e845-4b70-a31e-8fdb91e90853"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409643800504595",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.coa_clt-140",
"entityId": "74e5ce93-bcaf-4ce4-aad4-789c780b1d0d",
"href": "/systems/74e5ce93-bcaf-4ce4-aad4-789c780b1d0d"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409977791098711",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.coa_fet-472",
"entityId": "74eb630b-bb6f-4f2f-b755-a483ed305947",
"href": "/systems/74eb630b-bb6f-4f2f-b755-a483ed305947"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409341789881348",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.ttr_xtr-268",
"entityId": "757164f7-5189-4f4e-85d5-fedf49b1c295",
"href": "/systems/757164f7-5189-4f4e-85d5-fedf49b1c295"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409610382332114",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.ttr_xtr-74",
"entityId": "7937e4ee-05e1-46d7-892e-38bd44fcbccf",
"href": "/systems/7937e4ee-05e1-46d7-892e-38bd44fcbccf"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409888295512486",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.hosa_gas-388",
"entityId": "7a4a85eb-3b32-4a88-85d5-46d8918d163d",
"href": "/systems/7a4a85eb-3b32-4a88-85d5-46d8918d163d"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409689440234086",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.doop_clt-512",
"entityId": "7b114bf4-02b2-432e-b6af-e04aa4534937",
"href": "/systems/7b114bf4-02b2-432e-b6af-e04aa4534937"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409787579902516",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl02.mln_sti-374",
"entityId": "7bd36ef1-29ac-46e9-9ba9-46782f132353",
"href": "/systems/7bd36ef1-29ac-46e9-9ba9-46782f132353"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409903254840161",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_sti-412",
"entityId": "7d032833-3036-461e-882a-64a0160e7109",
"href": "/systems/7d032833-3036-461e-882a-64a0160e7109"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409380451724523",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.hosa_far-174",
"entityId": "7f3b5799-1621-4d74-b91e-0a951c604506",
"href": "/systems/7f3b5799-1621-4d74-b91e-0a951c604506"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409852188942399",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.coa_fap-402",
"entityId": "7f908b3e-c91d-4d1d-957c-8d7e77703820",
"href": "/systems/7f908b3e-c91d-4d1d-957c-8d7e77703820"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409319791009811",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_vmx-58",
"entityId": "808ccc01-4e03-446d-9781-cef99b056b2c",
"href": "/systems/808ccc01-4e03-446d-9781-cef99b056b2c"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409296728628664",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.camp_far-494",
"entityId": "813dec0a-1321-43b0-91fc-eaab48400367",
"href": "/systems/813dec0a-1321-43b0-91fc-eaab48400367"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409290184931018",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.camp_far-148",
"entityId": "81bee737-bd28-4a45-87ad-a55a801a64a1",
"href": "/systems/81bee737-bd28-4a45-87ad-a55a801a64a1"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409741935359627",
"powerState": "Running",
"currentType": "n1-standard-2",
"displayName": "gl02.ttr_xtr-198",
"entityId": "81e10e87-95c4-48a9-ba5a-bc932180b0dd",
"href": "/systems/81e10e87-95c4-48a9-ba5a-bc932180b0dd"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409634725160736",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_gas-550",
"entityId": "826d0263-666b-4727-97d3-d73c4d7383ee",
"href": "/systems/826d0263-666b-4727-97d3-d73c4d7383ee"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409589090731561",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.coa_xtr-482",
"entityId": "82730f8c-f43b-4923-b8c9-9d5f15dc82a4",
"href": "/systems/82730f8c-f43b-4923-b8c9-9d5f15dc82a4"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409525844071653",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.doop_fet-600",
"entityId": "82764dbc-d935-45bd-99b7-a942f29ff730",
"href": "/systems/82764dbc-d935-45bd-99b7-a942f29ff730"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409526512270982",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.coa_xtr-336",
"entityId": "83159e2f-8dd7-4e72-904a-c81acbedb5b0",
"href": "/systems/83159e2f-8dd7-4e72-904a-c81acbedb5b0"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409614862395539",
"powerState": "Running",
"currentType": "n1-standard-1",
"displayName": "gl08.ttr_fet-464",
"entityId": "84b92e6d-ca3e-424e-b3cc-25d675f91ba9",
"href": "/systems/84b92e6d-ca3e-424e-b3cc-25d675f91ba9"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409768922637783",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.camp_gas-236",
"entityId": "8570f7f9-9c1e-403c-ae8d-3bdce42e32aa",
"href": "/systems/8570f7f9-9c1e-403c-ae8d-3bdce42e32aa"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409527781401308",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.hosa_gas-262",
"entityId": "85bff84a-48b1-48b2-84e3-5824a17ba889",
"href": "/systems/85bff84a-48b1-48b2-84e3-5824a17ba889"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409966708094101",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.ttr_xtr-254",
"entityId": "8701c90a-896f-414e-9604-a02bc38325d3",
"href": "/systems/8701c90a-896f-414e-9604-a02bc38325d3"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409843569618581",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.camp_gas-470",
"entityId": "876ea118-6c57-47f4-bcb4-ab9640b28850",
"href": "/systems/876ea118-6c57-47f4-bcb4-ab9640b28850"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409812896432249",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.mln_gas-442",
"entityId": "8827c8bb-2f4a-4148-adfc-e02457f449a0",
"href": "/systems/8827c8bb-2f4a-4148-adfc-e02457f449a0"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409455863264363",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.doop_fet-426",
"entityId": "8a35d765-dff6-4909-aabb-c45942e95f2f",
"href": "/systems/8a35d765-dff6-4909-aabb-c45942e95f2f"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409521990168048",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.mln_far-84",
"entityId": "8e0a5bff-adec-40ef-8155-406dfe0cfc1b",
"href": "/systems/8e0a5bff-adec-40ef-8155-406dfe0cfc1b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409226087156908",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.camp_gas-510",
"entityId": "9103ceb8-4047-4c80-9bce-fba9ba62a4d7",
"href": "/systems/9103ceb8-4047-4c80-9bce-fba9ba62a4d7"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409127828918544",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.hosa_vmx-548",
"entityId": "915ea825-c1d1-49c5-98c0-1ece38d6c151",
"href": "/systems/915ea825-c1d1-49c5-98c0-1ece38d6c151"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409379077357242",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.coa_xtr-26",
"entityId": "91bbd8f8-1381-4dcd-b50a-1af655a51891",
"href": "/systems/91bbd8f8-1381-4dcd-b50a-1af655a51891"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409723807808113",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.camp_gas-308",
"entityId": "91bd06b7-ac19-40ad-9d6b-3ed53e912181",
"href": "/systems/91bd06b7-ac19-40ad-9d6b-3ed53e912181"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409387085535173",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.hosa_vmx-356",
"entityId": "928dd0a9-fd60-4a05-a9b8-08170f5502fe",
"href": "/systems/928dd0a9-fd60-4a05-a9b8-08170f5502fe"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409547162754771",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_gas-126",
"entityId": "93236434-b690-4f41-b30b-df8309be31c1",
"href": "/systems/93236434-b690-4f41-b30b-df8309be31c1"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409575940209243",
"powerState": "Running",
"currentType": "n1-standard-2",
"displayName": "gl02.coa_xtr-40",
"entityId": "93ff1067-9156-46b1-82b8-72c3b4c821e7",
"href": "/systems/93ff1067-9156-46b1-82b8-72c3b4c821e7"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409304435228587",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.mln_gas-66",
"entityId": "9448e4a3-77f2-486e-abf8-c1a625329aa6",
"href": "/systems/9448e4a3-77f2-486e-abf8-c1a625329aa6"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409583093340055",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.doop_xtr-564",
"entityId": "9468d040-e3b9-466e-8ef1-965f9b3a669a",
"href": "/systems/9468d040-e3b9-466e-8ef1-965f9b3a669a"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409246844823754",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.doop_clt-88",
"entityId": "94ea1f7e-81e9-4be5-8dba-e6d466954b34",
"href": "/systems/94ea1f7e-81e9-4be5-8dba-e6d466954b34"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409723672626657",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.coa_xtr-22",
"entityId": "951b1331-0322-4fb2-9a70-51252f8f0c4b",
"href": "/systems/951b1331-0322-4fb2-9a70-51252f8f0c4b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409705048279988",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.mln_gas-320",
"entityId": "9549e5ae-a67c-40e5-9516-ae131db548bf",
"href": "/systems/9549e5ae-a67c-40e5-9516-ae131db548bf"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409312045353832",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.hosa_gas-460",
"entityId": "964bb6ee-ee2e-4b6d-8908-4ceda4177693",
"href": "/systems/964bb6ee-ee2e-4b6d-8908-4ceda4177693"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409489178670702",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.doop_xtr-438",
"entityId": "96a1e6c3-6bd5-4c07-9e67-bea8bfb04d35",
"href": "/systems/96a1e6c3-6bd5-4c07-9e67-bea8bfb04d35"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409726842914705",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.doop_clt-80",
"entityId": "975ca9f7-fee3-41e2-a96a-9b1012cce9fc",
"href": "/systems/975ca9f7-fee3-41e2-a96a-9b1012cce9fc"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409752038179500",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.doop_fap-282",
"entityId": "97c5a896-a52d-4239-9dfc-e81ed54f18fc",
"href": "/systems/97c5a896-a52d-4239-9dfc-e81ed54f18fc"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409521307814500",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.doop_xtr-216",
"entityId": "986bb8fe-4b14-4050-a383-23c3713d7f39",
"href": "/systems/986bb8fe-4b14-4050-a383-23c3713d7f39"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409376893620660",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl08.coa_clt-420",
"entityId": "9995254f-6e18-42d2-b6e3-bc2845dacebb",
"href": "/systems/9995254f-6e18-42d2-b6e3-bc2845dacebb"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409167628991170",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.mln_far-180",
"entityId": "9a54b30b-192b-4f86-9677-927697abcb45",
"href": "/systems/9a54b30b-192b-4f86-9677-927697abcb45"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409629945542410",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.coa_fet-138",
"entityId": "9b2b8116-801e-4076-92d3-90904bb8fe72",
"href": "/systems/9b2b8116-801e-4076-92d3-90904bb8fe72"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409495734314856",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.hosa_gas-588",
"entityId": "9bd44319-1220-48c8-aaf0-f1cf0d5ca1a2",
"href": "/systems/9bd44319-1220-48c8-aaf0-f1cf0d5ca1a2"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409847001686980",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.hosa_gas-54",
"entityId": "9c560fc9-4e09-491e-94a9-f5cb6a6f8b8d",
"href": "/systems/9c560fc9-4e09-491e-94a9-f5cb6a6f8b8d"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409809738561675",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.doop_fet-244",
"entityId": "9d79da31-0212-4a3b-8738-440815bbd47b",
"href": "/systems/9d79da31-0212-4a3b-8738-440815bbd47b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409180163288940",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.mln_vmx-56",
"entityId": "9d8d14fa-d465-4c62-8697-7d43ecb2da84",
"href": "/systems/9d8d14fa-d465-4c62-8697-7d43ecb2da84"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409510649137736",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.mln_gas-382",
"entityId": "9e1e2d2d-975c-4d59-9ce6-b489336306b4",
"href": "/systems/9e1e2d2d-975c-4d59-9ce6-b489336306b4"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409488583548481",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.doop_fet-242",
"entityId": "9e4865ae-48cb-45f9-be28-ee230f0f2d29",
"href": "/systems/9e4865ae-48cb-45f9-be28-ee230f0f2d29"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409608361056798",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.doop_fet-416",
"entityId": "9f0c93bc-4b49-433c-a349-362a4836bb1f",
"href": "/systems/9f0c93bc-4b49-433c-a349-362a4836bb1f"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409579214129193",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.coa_fap-170",
"entityId": "a37b518a-e91e-4cfe-b0cd-38c508569742",
"href": "/systems/a37b518a-e91e-4cfe-b0cd-38c508569742"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409987269783590",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.hosa_gas-134",
"entityId": "a3beb47b-bcae-4002-b7e0-34315c1b172e",
"href": "/systems/a3beb47b-bcae-4002-b7e0-34315c1b172e"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409152281828223",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.ttr_clt-270",
"entityId": "a3cf324e-04ab-41eb-b9a6-b8bec154b429",
"href": "/systems/a3cf324e-04ab-41eb-b9a6-b8bec154b429"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409651379365208",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.ttr_fap-312",
"entityId": "a3e3b018-0a76-441c-b97a-4442000ccb6f",
"href": "/systems/a3e3b018-0a76-441c-b97a-4442000ccb6f"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409277998764081",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.coa_fap-212",
"entityId": "a48e27de-4f30-454c-ad94-27731aae127d",
"href": "/systems/a48e27de-4f30-454c-ad94-27731aae127d"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409632342179707",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.coa_clt-10",
"entityId": "a6399234-01fd-4e35-bb7f-5f21f4385d30",
"href": "/systems/a6399234-01fd-4e35-bb7f-5f21f4385d30"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409273670659020",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.ttr_xtr-554",
"entityId": "a666b789-b980-415f-b759-30a7ffcea1de",
"href": "/systems/a666b789-b980-415f-b759-30a7ffcea1de"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409574475946274",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.mln_vmx-342",
"entityId": "a792694b-9b1a-4dfa-9a6c-583b6027cfdf",
"href": "/systems/a792694b-9b1a-4dfa-9a6c-583b6027cfdf"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409732163555395",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.mln_sti-118",
"entityId": "aac494e5-e2ff-4196-9733-bf99c37802e2",
"href": "/systems/aac494e5-e2ff-4196-9733-bf99c37802e2"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409575266960994",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.doop_fet-542",
"entityId": "aaf8e84e-0b90-44de-b02d-b935c0a3bea7",
"href": "/systems/aaf8e84e-0b90-44de-b02d-b935c0a3bea7"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409948173470785",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.ttr_xtr-50",
"entityId": "ad2be036-e8df-4337-ad7a-9cc7adf4cac9",
"href": "/systems/ad2be036-e8df-4337-ad7a-9cc7adf4cac9"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409794893062534",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.coa_clt-574",
"entityId": "afd894c8-66e2-4169-94e0-20a08058780c",
"href": "/systems/afd894c8-66e2-4169-94e0-20a08058780c"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409969505918237",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.ttr_xtr-418",
"entityId": "aff073d2-4fb2-446e-b6c0-b6bab5395c50",
"href": "/systems/aff073d2-4fb2-446e-b6c0-b6bab5395c50"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409667611748177",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl08.camp_vmx-70",
"entityId": "b0969703-68fe-4dd0-8568-cf14bee54bf1",
"href": "/systems/b0969703-68fe-4dd0-8568-cf14bee54bf1"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409985463883256",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_gas-306",
"entityId": "b0e6876e-9dca-4b04-9036-c21976bc34ad",
"href": "/systems/b0e6876e-9dca-4b04-9036-c21976bc34ad"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409712597900340",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.mln_gas-366",
"entityId": "b15e68b2-4f88-44a1-b3ba-f24b70d16b7e",
"href": "/systems/b15e68b2-4f88-44a1-b3ba-f24b70d16b7e"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409965214718187",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.camp_far-72",
"entityId": "b180160e-0faa-4afb-ad1d-fff31c42ce09",
"href": "/systems/b180160e-0faa-4afb-ad1d-fff31c42ce09"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409946505590578",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.hosa_vmx-414",
"entityId": "b21074ca-71aa-499f-9eb3-786095b11c62",
"href": "/systems/b21074ca-71aa-499f-9eb3-786095b11c62"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409919177675513",
"powerState": "Running",
"currentType": "n1-standard-2",
"displayName": "gl08.doop_clt-246",
"entityId": "b34e185f-676c-4d75-bb5b-ef03b0d37d7b",
"href": "/systems/b34e185f-676c-4d75-bb5b-ef03b0d37d7b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409188616887714",
"powerState": "Running",
"currentType": "n1-standard-1",
"displayName": "gl04.mln_vmx-596",
"entityId": "b4745fb2-9278-4633-b25d-53c7a5e70737",
"href": "/systems/b4745fb2-9278-4633-b25d-53c7a5e70737"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409332901899758",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.ttr_fet-202",
"entityId": "b4fd7e77-3268-4de6-bb24-4b9b2abdc9b9",
"href": "/systems/b4fd7e77-3268-4de6-bb24-4b9b2abdc9b9"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409965510838782",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl04.doop_xtr-400",
"entityId": "b642219c-0f10-44e3-82af-176ad64cd9c1",
"href": "/systems/b642219c-0f10-44e3-82af-176ad64cd9c1"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409477499940572",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.ttr_clt-514",
"entityId": "b8b201a4-921f-4852-8acb-ee86437a37e8",
"href": "/systems/b8b201a4-921f-4852-8acb-ee86437a37e8"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409171943714583",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.mln_gas-508",
"entityId": "b9406b39-66f7-4483-bd54-c134d1d3ec8f",
"href": "/systems/b9406b39-66f7-4483-bd54-c134d1d3ec8f"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409235667443659",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.mln_sti-100",
"entityId": "ba3f6b60-4807-4be7-81d8-583354a24638",
"href": "/systems/ba3f6b60-4807-4be7-81d8-583354a24638"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409307585541627",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_sti-46",
"entityId": "ba416716-c8e1-49bc-a092-bddaf4f1d5d4",
"href": "/systems/ba416716-c8e1-49bc-a092-bddaf4f1d5d4"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409624113855503",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.ttr_fap-44",
"entityId": "badc2614-371e-4d0b-8d4d-7a3cf7748a1f",
"href": "/systems/badc2614-371e-4d0b-8d4d-7a3cf7748a1f"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409643220763581",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.camp_far-240",
"entityId": "bb5ac2e4-89c8-4d18-8aca-4cdefd9a7724",
"href": "/systems/bb5ac2e4-89c8-4d18-8aca-4cdefd9a7724"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409773678451678",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.camp_sti-52",
"entityId": "bc06ef97-9c59-49d4-a05c-10f26e7dee4c",
"href": "/systems/bc06ef97-9c59-49d4-a05c-10f26e7dee4c"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409740583597965",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.coa_xtr-188",
"entityId": "bcf60e79-d60b-43bf-8961-1875c22ce2b4",
"href": "/systems/bcf60e79-d60b-43bf-8961-1875c22ce2b4"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409768845995453",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.coa_fap-92",
"entityId": "be77f025-3eec-4439-9680-4b2d0488c588",
"href": "/systems/be77f025-3eec-4439-9680-4b2d0488c588"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409937602191584",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.hosa_sti-328",
"entityId": "be855b18-ade4-4978-b4c4-e9fba6482237",
"href": "/systems/be855b18-ade4-4978-b4c4-e9fba6482237"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409310783937676",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.ttr_fap-294",
"entityId": "bf3a086c-1441-438a-85f0-b76b36190e8e",
"href": "/systems/bf3a086c-1441-438a-85f0-b76b36190e8e"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409811363144429",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.coa_xtr-226",
"entityId": "bf46a026-7530-4fb8-9131-f84b29e6c688",
"href": "/systems/bf46a026-7530-4fb8-9131-f84b29e6c688"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409636635027741",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.hosa_far-408",
"entityId": "c171e178-16a9-463a-9272-0bc2123c7843",
"href": "/systems/c171e178-16a9-463a-9272-0bc2123c7843"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409899964817697",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.ttr_clt-384",
"entityId": "c1a46e2d-5d48-498a-a470-085cc3498a91",
"href": "/systems/c1a46e2d-5d48-498a-a470-085cc3498a91"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409885298393239",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.coa_xtr-358",
"entityId": "c3264cc0-e943-491a-92ef-5bb90b65fde0",
"href": "/systems/c3264cc0-e943-491a-92ef-5bb90b65fde0"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409755901868169",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.doop_fet-166",
"entityId": "c33d7e6b-6a58-414a-93b0-33d0dfd3a17c",
"href": "/systems/c33d7e6b-6a58-414a-93b0-33d0dfd3a17c"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409937756090679",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.hosa_far-586",
"entityId": "c3fa261a-6ea6-4d64-9890-a51d98b10adf",
"href": "/systems/c3fa261a-6ea6-4d64-9890-a51d98b10adf"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409987490266283",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.ttr_fap-582",
"entityId": "c56314bf-0b3b-40d6-9ee1-bc020562fe7c",
"href": "/systems/c56314bf-0b3b-40d6-9ee1-bc020562fe7c"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409852525078080",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.coa_xtr-436",
"entityId": "c68b0b16-6e5c-4fb7-b2c3-d622a9165b80",
"href": "/systems/c68b0b16-6e5c-4fb7-b2c3-d622a9165b80"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409775286317486",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.doop_clt-504",
"entityId": "c7490c8c-523b-4fa1-a011-055c1610db28",
"href": "/systems/c7490c8c-523b-4fa1-a011-055c1610db28"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409235239021493",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl02.camp_vmx-560",
"entityId": "c77885f4-8684-45e5-9e7e-d8acae13bd71",
"href": "/systems/c77885f4-8684-45e5-9e7e-d8acae13bd71"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409672346437238",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.camp_gas-492",
"entityId": "c7d84d5d-f7d7-4852-a6a8-066c0558a69b",
"href": "/systems/c7d84d5d-f7d7-4852-a6a8-066c0558a69b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409590693202682",
"powerState": "Running",
"currentType": "n1-standard-1",
"displayName": "gl04.doop_xtr-136",
"entityId": "c7eb0189-6c12-4b19-8c81-dcfd151ba47d",
"href": "/systems/c7eb0189-6c12-4b19-8c81-dcfd151ba47d"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409701089684950",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.doop_clt-578",
"entityId": "ca77b352-2c9b-4737-8431-fcc608b5cf76",
"href": "/systems/ca77b352-2c9b-4737-8431-fcc608b5cf76"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409947093367886",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.doop_clt-446",
"entityId": "cb0843b8-d068-4c41-a07a-f5997006507a",
"href": "/systems/cb0843b8-d068-4c41-a07a-f5997006507a"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409489847690592",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.coa_fet-112",
"entityId": "cbc0533e-ba9c-459d-ba14-80ed2e799d8a",
"href": "/systems/cbc0533e-ba9c-459d-ba14-80ed2e799d8a"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409198256136182",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.ttr_fap-110",
"entityId": "cc6ac39f-e125-42ae-967c-939f1977634b",
"href": "/systems/cc6ac39f-e125-42ae-967c-939f1977634b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409347967789139",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.mln_gas-466",
"entityId": "cc97cff2-a321-4e15-8928-d3c371caddad",
"href": "/systems/cc97cff2-a321-4e15-8928-d3c371caddad"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409916619990605",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.coa_fap-98",
"entityId": "ce35c8cc-a0e8-42a5-9c16-d66c1e920840",
"href": "/systems/ce35c8cc-a0e8-42a5-9c16-d66c1e920840"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409772903555446",
"powerState": "Running",
"currentType": "n1-standard-2",
"displayName": "gl02.doop_clt-82",
"entityId": "cebd9db0-b695-4172-8749-c5bc2be5e419",
"href": "/systems/cebd9db0-b695-4172-8749-c5bc2be5e419"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409295549379493",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.doop_fap-362",
"entityId": "cf8dd96e-e9bd-43b4-9d00-61f83fd5bf55",
"href": "/systems/cf8dd96e-e9bd-43b4-9d00-61f83fd5bf55"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409854572496078",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.coa_clt-562",
"entityId": "cffd2ad9-5407-4640-87fb-8bca38fa977c",
"href": "/systems/cffd2ad9-5407-4640-87fb-8bca38fa977c"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409868895687415",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.coa_fet-326",
"entityId": "d1975129-963f-4256-b04c-0e8188531239",
"href": "/systems/d1975129-963f-4256-b04c-0e8188531239"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409585688666831",
"powerState": "Running",
"currentType": "n1-standard-32",
"displayName": "gl08.camp_vmx-310",
"entityId": "d299b9fb-199a-4321-8b2d-bb510507539e",
"href": "/systems/d299b9fb-199a-4321-8b2d-bb510507539e"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409229924892526",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.camp_gas-2",
"entityId": "d2b7806f-6002-4d01-82ff-541faf5f2829",
"href": "/systems/d2b7806f-6002-4d01-82ff-541faf5f2829"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409493839044094",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.hosa_gas-428",
"entityId": "d2db023f-0b93-431e-856b-5583b8e3911d",
"href": "/systems/d2db023f-0b93-431e-856b-5583b8e3911d"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409913846814337",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.camp_gas-432",
"entityId": "d3127c58-8c8b-4366-9a4b-15a2abbdcbbc",
"href": "/systems/d3127c58-8c8b-4366-9a4b-15a2abbdcbbc"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409309299239411",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.coa_fap-260",
"entityId": "d3bb50d3-5f55-4985-a0ca-8ca9e5b513f1",
"href": "/systems/d3bb50d3-5f55-4985-a0ca-8ca9e5b513f1"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409197950993902",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.coa_xtr-474",
"entityId": "d545aaca-5270-40a1-8527-434e28f40d9a",
"href": "/systems/d545aaca-5270-40a1-8527-434e28f40d9a"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409796764432472",
"powerState": "Running",
"currentType": "n1-standard-2",
"displayName": "gl02.hosa_far-304",
"entityId": "d9128f0a-81cb-4702-b417-94a2f2808197",
"href": "/systems/d9128f0a-81cb-4702-b417-94a2f2808197"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409943628880962",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.ttr_fet-130",
"entityId": "d9749d55-eb42-4c33-9209-3943fda9036a",
"href": "/systems/d9749d55-eb42-4c33-9209-3943fda9036a"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409535932312864",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.hosa_far-12",
"entityId": "d979d616-8799-4fc4-a3ef-4e79b5253f18",
"href": "/systems/d979d616-8799-4fc4-a3ef-4e79b5253f18"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409840793873750",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.doop_fet-76",
"entityId": "d9888a67-61d5-4712-b863-a0503c6745c9",
"href": "/systems/d9888a67-61d5-4712-b863-a0503c6745c9"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409492258286611",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.hosa_gas-300",
"entityId": "d9a0a31e-81f6-4353-acd4-11fd26891319",
"href": "/systems/d9a0a31e-81f6-4353-acd4-11fd26891319"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409811172087154",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.coa_fap-520",
"entityId": "d9a30621-0caa-4691-af0b-84f724ebe7d2",
"href": "/systems/d9a30621-0caa-4691-af0b-84f724ebe7d2"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409588339669518",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.doop_xtr-186",
"entityId": "da706aae-4fef-41a9-b0b4-0c1a1b65f834",
"href": "/systems/da706aae-4fef-41a9-b0b4-0c1a1b65f834"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409156979646655",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl08.ttr_fet-334",
"entityId": "da8a69be-8d66-48a9-a990-e25c07971f47",
"href": "/systems/da8a69be-8d66-48a9-a990-e25c07971f47"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409747569095635",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.camp_sti-532",
"entityId": "da8f3563-36ed-497c-ae28-ffdd41946163",
"href": "/systems/da8f3563-36ed-497c-ae28-ffdd41946163"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409845823013607",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.mln_vmx-516",
"entityId": "df551848-613a-47b4-9f85-cd26bc1fc837",
"href": "/systems/df551848-613a-47b4-9f85-cd26bc1fc837"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409455788409074",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.ttr_fet-206",
"entityId": "e278e4ae-d33f-4848-a08b-2ae1fb728110",
"href": "/systems/e278e4ae-d33f-4848-a08b-2ae1fb728110"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409652523161322",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.hosa_gas-48",
"entityId": "e46d5577-63ff-466c-90ea-22159b0a5508",
"href": "/systems/e46d5577-63ff-466c-90ea-22159b0a5508"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409930347536908",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_gas-96",
"entityId": "e4b5de9f-7cfa-439c-8293-270deab6e622",
"href": "/systems/e4b5de9f-7cfa-439c-8293-270deab6e622"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409969011898842",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.mln_gas-276",
"entityId": "e5b82afe-a0f9-479e-973f-d788075c8948",
"href": "/systems/e5b82afe-a0f9-479e-973f-d788075c8948"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409350848780406",
"powerState": "Running",
"currentType": "n1-standard-1",
"displayName": "gl02.coa_xtr-16",
"entityId": "e761affa-4b6b-440d-82e9-67079342dcec",
"href": "/systems/e761affa-4b6b-440d-82e9-67079342dcec"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409189026148765",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.doop_xtr-200",
"entityId": "e76ec153-92b5-41ab-bb0a-f35dfc0d1764",
"href": "/systems/e76ec153-92b5-41ab-bb0a-f35dfc0d1764"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409926223700244",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.mln_vmx-476",
"entityId": "e77c73a5-19f9-4769-8023-2fd611a24363",
"href": "/systems/e77c73a5-19f9-4769-8023-2fd611a24363"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409227619853046",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.mln_vmx-450",
"entityId": "e944efae-339e-4fd1-8ffd-7efbaedad147",
"href": "/systems/e944efae-339e-4fd1-8ffd-7efbaedad147"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409764396002821",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.camp_gas-94",
"entityId": "e995ed3a-8b83-4ca1-a61e-4a905f911e6a",
"href": "/systems/e995ed3a-8b83-4ca1-a61e-4a905f911e6a"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409176205907899",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.hosa_gas-422",
"entityId": "ec30ed09-ed77-41b3-9d17-a1dd26bf5695",
"href": "/systems/ec30ed09-ed77-41b3-9d17-a1dd26bf5695"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409609494616799",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.camp_far-114",
"entityId": "ec5a3519-964e-44d0-af5a-91ae13523816",
"href": "/systems/ec5a3519-964e-44d0-af5a-91ae13523816"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409287918918566",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_gas-220",
"entityId": "ed44ae71-67bf-4a92-96ca-11c137a3dcbf",
"href": "/systems/ed44ae71-67bf-4a92-96ca-11c137a3dcbf"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409896995341116",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.coa_fap-424",
"entityId": "edea6490-062d-4c6c-b946-49a8d6cae11e",
"href": "/systems/edea6490-062d-4c6c-b946-49a8d6cae11e"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409570985172244",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.camp_sti-566",
"entityId": "edef17e2-20dd-4532-90c9-a0bb3f06159a",
"href": "/systems/edef17e2-20dd-4532-90c9-a0bb3f06159a"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409575022735343",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.camp_far-458",
"entityId": "ef4f8d59-70a8-4f89-8aa4-709c927adf0b",
"href": "/systems/ef4f8d59-70a8-4f89-8aa4-709c927adf0b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409445500063273",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.doop_clt-322",
"entityId": "f22efe36-39a8-4244-902b-aa41a518cfa5",
"href": "/systems/f22efe36-39a8-4244-902b-aa41a518cfa5"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409160794289803",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.ttr_fap-354",
"entityId": "f2624af2-7372-4f56-826c-87e78644757c",
"href": "/systems/f2624af2-7372-4f56-826c-87e78644757c"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409643224341400",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.hosa_gas-182",
"entityId": "f2dad023-c80f-4577-97b6-598c7fb4177b",
"href": "/systems/f2dad023-c80f-4577-97b6-598c7fb4177b"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409866514167349",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.ttr_fap-302",
"entityId": "f33f3c0c-75af-4481-bd2b-60348ada6f21",
"href": "/systems/f33f3c0c-75af-4481-bd2b-60348ada6f21"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409235411905310",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.ttr_xtr-318",
"entityId": "f3a29ab8-5d37-4719-b20c-68189f7145dd",
"href": "/systems/f3a29ab8-5d37-4719-b20c-68189f7145dd"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409257228484593",
"powerState": "Running",
"currentType": "n1-standard-2",
"displayName": "gl04.hosa_far-288",
"entityId": "f408d7d9-37f0-4e7a-b25c-f78e93801ee4",
"href": "/systems/f408d7d9-37f0-4e7a-b25c-f78e93801ee4"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409277170246830",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.doop_fet-580",
"entityId": "f477d2f7-ff7a-4751-844c-5711e67b85ef",
"href": "/systems/f477d2f7-ff7a-4751-844c-5711e67b85ef"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409747125059325",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.hosa_gas-14",
"entityId": "f55d4329-b7b2-4cf2-8a6e-5050039ae0a2",
"href": "/systems/f55d4329-b7b2-4cf2-8a6e-5050039ae0a2"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409616386934392",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl08.coa_xtr-238",
"entityId": "f60a8651-09db-41b9-9037-558c8ec0a0f9",
"href": "/systems/f60a8651-09db-41b9-9037-558c8ec0a0f9"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409937412688347",
"powerState": "Running",
"currentType": "n1-highmem-8",
"displayName": "gl04.ttr_fet-468",
"entityId": "f65f4e7f-f2e5-4e08-b179-2a24023dfd70",
"href": "/systems/f65f4e7f-f2e5-4e08-b179-2a24023dfd70"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409956882486512",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.ttr_xtr-568",
"entityId": "f94adf1e-85df-4720-bed6-6ba1a963bfbe",
"href": "/systems/f94adf1e-85df-4720-bed6-6ba1a963bfbe"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409788667147002",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl04.camp_sti-298",
"entityId": "fb10ba67-2e17-41b6-b9ae-f14c05e422e8",
"href": "/systems/fb10ba67-2e17-41b6-b9ae-f14c05e422e8"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409290594762386",
"powerState": "Offline",
"currentType": "n1-standard-1",
"displayName": "gl04.hosa_sti-448",
"entityId": "fb983675-e0a5-4a01-9e19-ab50c9c94d59",
"href": "/systems/fb983675-e0a5-4a01-9e19-ab50c9c94d59"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409210047826898",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl08.hosa_gas-132",
"entityId": "fc32746e-77f2-4ab0-84d6-7d016b6452de",
"href": "/systems/fc32746e-77f2-4ab0-84d6-7d016b6452de"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409969828798714",
"powerState": "Running",
"currentType": "n1-standard-8",
"displayName": "gl02.mln_vmx-392",
"entityId": "fd2a5d3d-f475-4f65-97cb-25067e8105b2",
"href": "/systems/fd2a5d3d-f475-4f65-97cb-25067e8105b2"
},
{
"serviceType": "Compute Engine",
"resourceId": "4090409832671729944",
"powerState": "Running",
"currentType": "n1-standard-4",
"displayName": "gl04.doop_xtr-218",
"entityId": "fda95f61-afcd-4d41-856e-5497084285f7",
"href": "/systems/fda95f61-afcd-4d41-856e-5497084285f7"
}
]
- name: Get Analysis Recommendations (JSON)
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"entityId\", firstdata.entityId);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- "{{analysisId}}"
- results
description: |-
Retrieves the latest GCP recommendations. The output is available in JSON or Terraform media format.
Refer to the help topic below for a full description of the elements. A few important ones:
- **approvalType**
This is a key element which triggers an instance resize if you are using the Kubex Terraform reference implementation. This will contain either **all** or a new instance type (e.g. **n1-highmem-4**), if a recommendation has passed all criteria in your chosen Kubex Policy.
- **implementationMethod**
A value of **Self Optimization** indicates the recommendation has passed all criteria and can be automated. A value of **Manual** indicates the recommendation should be manually done as in the case of a _Terminate_ of idle instances.
- Generally Self Optimization is only set when Effort has been determined to be **Low**. See Informed decisions section.
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
> In this example, the environment variable `entityId` is set to the first returned _entityId_ element for future use.
See example. Refer to Kubex Online Help [GCP Analysis Recommendations](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_GCP_Results.htm).
response:
- name: Get Analysis Recommendations (JSON)
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/gcp/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- "{{analysisId}}"
- results
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: vary
value: accept-encoding
- key: content-encoding
value: gzip
- key: content-type
value: application/json;charset=UTF-8
- key: date
value: Wed, 10 Jun 2020 21:06:58 GMT
- key: x-envoy-upstream-service-time
value: "30"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"entityId": "710b55de-1861-4ab2-9d47-9feb00ba47a5",
"resourceId": "6535977574244477252",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 21.67,
"totalHoursRunning": 312,
"name": "test-markham",
"rptHref": "/systems/710b55de-1861-4ab2-9d47-9feb00ba47a5/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 24.27,
"recommendedCost": 24.27,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.03,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1590724800000,
"totalDays": 18,
"seenDays": 6
}
}
},
{
"entityId": "4501803e-b305-4764-98b8-92977be98b5d",
"resourceId": "3732095405880331089",
"accountIdRef": "engineering-183318",
"currentType": "f1-micro",
"recommendationType": "Just Right",
"recommendedType": "f1-micro",
"implementationMethod": "N/A",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "marham_555",
"rptHref": "/systems/4501803e-b305-4764-98b8-92977be98b5d/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "7dd494d3-1098-4080-b966-b68d36df643e",
"currentCost": 3.88,
"recommendedCost": 3.88,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589515200000,
"lastDate": 1590724800000,
"totalDays": 15,
"seenDays": 5
}
}
},
{
"entityId": "355bb68d-1639-4f0e-a2ad-9da55a033006",
"resourceId": "2160676630163177835",
"accountIdRef": "engineering-183318",
"currentType": "f1-micro",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "custom-2-4096",
"implementationMethod": "Manual",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "maria-win-instance-2",
"rptHref": "/systems/355bb68d-1639-4f0e-a2ad-9da55a033006/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -10.7422905,
"effortEstimate": "Low",
"powerState": "Running",
"recommendedHostEntityId": "bc619657-8377-41ea-a9ac-5050ad0bfe89",
"currentCost": 18.48,
"recommendedCost": 72.19145,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.1,
"recommFirstSeen": 1590218244053,
"recommLastSeen": 1591772936587,
"recommSeenCount": 8,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589515200000,
"lastDate": 1590724800000,
"totalDays": 15,
"seenDays": 5
}
}
},
{
"entityId": "b873eeef-b0b9-4fc2-aeeb-35bfc6b6b492",
"resourceId": "1847326295923540183",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "avani-instance-1",
"rptHref": "/systems/b873eeef-b0b9-4fc2-aeeb-35bfc6b6b492/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 24.27,
"recommendedCost": 24.27,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.03,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589515200000,
"lastDate": 1590724800000,
"totalDays": 15,
"seenDays": 5
}
}
},
{
"entityId": "683a5ddd-337e-446d-bf01-7fc5f854611f",
"resourceId": "1567053360300213752",
"accountIdRef": "engineering-183318",
"currentType": "custom-1-1024",
"recommendationType": "Not Analyzed",
"name": "jdeng-instance-1",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 48.42382,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
}
}
},
{
"entityId": "310b3d8e-1d23-483e-89a4-46588cd689b9",
"resourceId": "1192433367711366304",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Not Analyzed",
"name": "jenny-instance",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 24.27,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587653,
"recommLastSeen": 1591772936747,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 123
}
}
},
{
"entityId": "c6b45471-fa2f-4a62-858d-20fbc1dd0f06",
"resourceId": "4817694711166582719",
"accountIdRef": "engineering-183318",
"currentType": "f1-micro",
"recommendationType": "Not Analyzed",
"name": "maria-container-instance-3",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 3.88,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587630,
"recommLastSeen": 1591772936723,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 122
}
}
},
{
"entityId": "e0d8670a-8a0f-4a5a-8202-261ee385287c",
"resourceId": "5994290118412925376",
"accountIdRef": "engineering-183318",
"currentType": "g1-small",
"recommendationType": "Just Right",
"recommendedType": "g1-small",
"implementationMethod": "N/A",
"predictedUptime": 21.67,
"totalHoursRunning": 312,
"name": "maria-custom-lin",
"rptHref": "/systems/e0d8670a-8a0f-4a5a-8202-261ee385287c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "b0f16641-c3ad-4fa8-a6a8-8cf1608123cb",
"currentCost": 13.13,
"recommendedCost": 13.13,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1590724800000,
"totalDays": 18,
"seenDays": 6
}
}
},
{
"entityId": "fd980148-535a-47d9-b16e-babf4af9d232",
"resourceId": "266110794289921090",
"accountIdRef": "engineering-183318",
"currentType": "custom-1-8192-ext",
"recommendationType": "Just Right",
"recommendedType": "custom-1-8192-ext",
"implementationMethod": "N/A",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "maria-custom-lin-ext",
"rptHref": "/systems/fd980148-535a-47d9-b16e-babf4af9d232/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "0c2ed0f2-7d8c-41c1-b80b-1f83d46800af",
"currentCost": 39.039375,
"recommendedCost": 39.039375,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.05,
"recommendedHourlyRate": 0.05,
"recommFirstSeen": 1579680587630,
"recommLastSeen": 1591772936723,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 122
},
"workloadDataLast30": {
"firstDate": 1589515200000,
"lastDate": 1590724800000,
"totalDays": 15,
"seenDays": 5
}
}
},
{
"entityId": "ea4815d5-217c-45fd-8c4e-81af60d3231c",
"resourceId": "1446530341679591051",
"accountIdRef": "engineering-183318",
"currentType": "custom-2-4096",
"recommendationType": "Just Right",
"recommendedType": "custom-2-4096",
"implementationMethod": "N/A",
"predictedUptime": 28.33,
"totalHoursRunning": 408,
"name": "maria-custom-win",
"rptHref": "/systems/ea4815d5-217c-45fd-8c4e-81af60d3231c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "bc619657-8377-41ea-a9ac-5050ad0bfe89",
"currentCost": 72.19145,
"recommendedCost": 72.19145,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.1,
"recommendedHourlyRate": 0.1,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591588800000,
"totalDays": 28,
"seenDays": 11
}
}
},
{
"entityId": "45e6274c-6691-4f91-bc66-288842f597b3",
"resourceId": "1621772240079517796",
"accountIdRef": "engineering-183318",
"currentType": "custom-1-8192-ext",
"recommendationType": "Not Analyzed",
"name": "maria-custom-win-ext",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 68.23937,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 122
}
}
},
{
"entityId": "c789f436-e39d-42f6-bb7c-d5232a89bc2f",
"resourceId": "4876052068152647045",
"accountIdRef": "engineering-183318",
"currentType": "custom-2-16384-ext",
"recommendationType": "Not Analyzed",
"name": "maria-preemptive-1",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 78.07875,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587563,
"recommLastSeen": 1591772936560,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 122
}
}
},
{
"entityId": "4aa0c2ad-8d8e-4c17-bfe4-23f8aae88468",
"resourceId": "2074566354104409023",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "maria-win-instance-1",
"rptHref": "/systems/4aa0c2ad-8d8e-4c17-bfe4-23f8aae88468/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 53.47,
"recommendedCost": 53.47,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.07,
"recommendedHourlyRate": 0.07,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589515200000,
"lastDate": 1590724800000,
"totalDays": 15,
"seenDays": 5
}
}
},
{
"entityId": "e4d9a6e1-ee57-4568-a448-7ee2678a1120",
"resourceId": "8568015726842351383",
"accountIdRef": "engineering-183318",
"currentType": "custom-1-1024",
"recommendationType": "Not Analyzed",
"name": "terence-instance-1",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 19.22382,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
}
}
},
{
"entityId": "7f31e572-54b2-42a8-affd-ec0ff4d5d08b",
"resourceId": "40066566720730101",
"accountIdRef": "engineering-183318",
"currentType": "custom-1-5120",
"recommendationType": "Just Right",
"recommendedType": "custom-1-5120",
"implementationMethod": "N/A",
"predictedUptime": 21.67,
"totalHoursRunning": 312,
"name": "uma-custominstance-2",
"rptHref": "/systems/7f31e572-54b2-42a8-affd-ec0ff4d5d08b/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "df80e3d2-ab41-4273-8c89-674373901e68",
"currentCost": 28.311443,
"recommendedCost": 28.311443,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.04,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1590724800000,
"totalDays": 18,
"seenDays": 6
}
}
},
{
"entityId": "d63bb8b4-7777-40ab-9f83-625274d3a575",
"resourceId": "3505287799366677238",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Not Analyzed",
"name": "uma-instance-1",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 24.27,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
}
}
},
{
"entityId": "9bb1add0-f5db-4aec-8708-07162db8f314",
"resourceId": "1733686078363071723",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 28.33,
"totalHoursRunning": 408,
"name": "uma-instance-2",
"rptHref": "/systems/9bb1add0-f5db-4aec-8708-07162db8f314/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 24.27,
"recommendedCost": 24.27,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.03,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 122
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591588800000,
"totalDays": 28,
"seenDays": 11
}
}
}
]
- name: Get Analysis Recommendations (JSON) + Disk I/O Workload dataQuality
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: '{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/gcp/92a8b4c8-f8b4-44c3-a0e5-f6b62adce8eb/results?dataQuality="Disk I/O Bytes"'
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- 92a8b4c8-f8b4-44c3-a0e5-f6b62adce8eb
- results
query:
- key: dataQuality
value: '"Disk I/O Bytes"'
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-encoding
value: gzip
- key: vary
value: Accept-Encoding
- key: date
value: Mon, 25 May 2020 20:09:55 GMT
- key: x-envoy-upstream-service-time
value: "34"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"entityId": "710b55de-1861-4ab2-9d47-9feb00ba47a5",
"resourceId": "6535977574244477252",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 21.67,
"totalHoursRunning": 312,
"name": "test-markham",
"rptHref": "/systems/710b55de-1861-4ab2-9d47-9feb00ba47a5/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 24.27,
"recommendedCost": 24.27,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.03,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 109
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1589601600000,
"totalDays": 18,
"seenDays": 9
}
},
"dataQuality": [
{
"workloadName": "Disk I/O Bytes",
"firstSeen": 1569297600000,
"lastSeen": 1589601600000,
"completeDays": 121,
"partialDays": 0
}
]
},
{
"entityId": "4501803e-b305-4764-98b8-92977be98b5d",
"resourceId": "3732095405880331089",
"accountIdRef": "engineering-183318",
"currentType": "f1-micro",
"recommendationType": "Just Right",
"recommendedType": "f1-micro",
"implementationMethod": "N/A",
"predictedUptime": 18.33,
"totalHoursRunning": 264,
"name": "marham_555",
"rptHref": "/systems/4501803e-b305-4764-98b8-92977be98b5d/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "7dd494d3-1098-4080-b966-b68d36df643e",
"currentCost": 3.88,
"recommendedCost": 3.88,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 109
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1589601600000,
"totalDays": 18,
"seenDays": 8
}
},
"dataQuality": [
{
"workloadName": "Disk I/O Bytes",
"firstSeen": 1569297600000,
"lastSeen": 1589601600000,
"completeDays": 118,
"partialDays": 0
}
]
},
{
"entityId": "355bb68d-1639-4f0e-a2ad-9da55a033006",
"resourceId": "2160676630163177835",
"accountIdRef": "engineering-183318",
"currentType": "f1-micro",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "custom-2-4096",
"implementationMethod": "Self Optimization",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "maria-win-instance-2",
"rptHref": "/systems/355bb68d-1639-4f0e-a2ad-9da55a033006/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": -10.7422905,
"effortEstimate": "Low",
"powerState": "Running",
"recommendedHostEntityId": "bc619657-8377-41ea-a9ac-5050ad0bfe89",
"currentCost": 18.48,
"recommendedCost": 72.19145,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.1,
"recommFirstSeen": 1590218244053,
"recommLastSeen": 1590218244053,
"recommSeenCount": 1,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 109
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1589601600000,
"totalDays": 18,
"seenDays": 8
}
},
"dataQuality": [
{
"workloadName": "Disk I/O Bytes",
"firstSeen": 1569297600000,
"lastSeen": 1589601600000,
"completeDays": 115,
"partialDays": 0
}
]
},
{
"entityId": "b873eeef-b0b9-4fc2-aeeb-35bfc6b6b492",
"resourceId": "1847326295923540183",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 18.33,
"totalHoursRunning": 264,
"name": "avani-instance-1",
"rptHref": "/systems/b873eeef-b0b9-4fc2-aeeb-35bfc6b6b492/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 24.27,
"recommendedCost": 24.27,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.03,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 109
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1589601600000,
"totalDays": 18,
"seenDays": 8
}
},
"dataQuality": [
{
"workloadName": "Disk I/O Bytes",
"firstSeen": 1569297600000,
"lastSeen": 1589601600000,
"completeDays": 118,
"partialDays": 0
}
]
},
{
"entityId": "683a5ddd-337e-446d-bf01-7fc5f854611f",
"resourceId": "1567053360300213752",
"currentType": "custom-1-1024",
"recommendationType": "Not Analyzed",
"name": "jdeng-instance-1",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 48.42382,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 109
}
}
},
{
"entityId": "310b3d8e-1d23-483e-89a4-46588cd689b9",
"resourceId": "1192433367711366304",
"currentType": "n1-standard-1",
"recommendationType": "Not Analyzed",
"name": "jenny-instance",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 24.27,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587653,
"recommLastSeen": 1590218244297,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 111
}
}
},
{
"entityId": "c6b45471-fa2f-4a62-858d-20fbc1dd0f06",
"resourceId": "4817694711166582719",
"currentType": "f1-micro",
"recommendationType": "Not Analyzed",
"name": "maria-container-instance-3",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 3.88,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587630,
"recommLastSeen": 1590218244280,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 110
}
}
},
{
"entityId": "e0d8670a-8a0f-4a5a-8202-261ee385287c",
"resourceId": "5994290118412925376",
"accountIdRef": "engineering-183318",
"currentType": "g1-small",
"recommendationType": "Just Right",
"recommendedType": "g1-small",
"implementationMethod": "N/A",
"predictedUptime": 21.67,
"totalHoursRunning": 312,
"name": "maria-custom-lin",
"rptHref": "/systems/e0d8670a-8a0f-4a5a-8202-261ee385287c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "b0f16641-c3ad-4fa8-a6a8-8cf1608123cb",
"currentCost": 13.13,
"recommendedCost": 13.13,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 109
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1589601600000,
"totalDays": 18,
"seenDays": 9
}
},
"dataQuality": [
{
"workloadName": "Disk I/O Bytes",
"firstSeen": 1569297600000,
"lastSeen": 1589601600000,
"completeDays": 123,
"partialDays": 0
}
]
},
{
"entityId": "fd980148-535a-47d9-b16e-babf4af9d232",
"resourceId": "266110794289921090",
"accountIdRef": "engineering-183318",
"currentType": "custom-1-8192-ext",
"recommendationType": "Just Right",
"recommendedType": "custom-1-8192-ext",
"implementationMethod": "N/A",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "maria-custom-lin-ext",
"rptHref": "/systems/fd980148-535a-47d9-b16e-babf4af9d232/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "0c2ed0f2-7d8c-41c1-b80b-1f83d46800af",
"currentCost": 39.039375,
"recommendedCost": 39.039375,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.05,
"recommendedHourlyRate": 0.05,
"recommFirstSeen": 1579680587630,
"recommLastSeen": 1590218244280,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 110
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1589601600000,
"totalDays": 18,
"seenDays": 8
}
},
"dataQuality": [
{
"workloadName": "Disk I/O Bytes",
"firstSeen": 1569297600000,
"lastSeen": 1589601600000,
"completeDays": 118,
"partialDays": 0
}
]
},
{
"entityId": "ea4815d5-217c-45fd-8c4e-81af60d3231c",
"resourceId": "1446530341679591051",
"accountIdRef": "engineering-183318",
"currentType": "custom-2-4096",
"recommendationType": "Just Right",
"recommendedType": "custom-2-4096",
"implementationMethod": "N/A",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "maria-custom-win",
"rptHref": "/systems/ea4815d5-217c-45fd-8c4e-81af60d3231c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "bc619657-8377-41ea-a9ac-5050ad0bfe89",
"currentCost": 72.19145,
"recommendedCost": 72.19145,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.1,
"recommendedHourlyRate": 0.1,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 109
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1589601600000,
"totalDays": 18,
"seenDays": 8
}
},
"dataQuality": [
{
"workloadName": "Disk I/O Bytes",
"firstSeen": 1569297600000,
"lastSeen": 1589601600000,
"completeDays": 113,
"partialDays": 0
}
]
},
{
"entityId": "45e6274c-6691-4f91-bc66-288842f597b3",
"resourceId": "1621772240079517796",
"currentType": "custom-1-8192-ext",
"recommendationType": "Not Analyzed",
"name": "maria-custom-win-ext",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 68.23937,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 110
}
}
},
{
"entityId": "c789f436-e39d-42f6-bb7c-d5232a89bc2f",
"resourceId": "4876052068152647045",
"currentType": "custom-2-16384-ext",
"recommendationType": "Not Analyzed",
"name": "maria-preemptive-1",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 78.07875,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587563,
"recommLastSeen": 1590218244040,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 110
}
}
},
{
"entityId": "4aa0c2ad-8d8e-4c17-bfe4-23f8aae88468",
"resourceId": "2074566354104409023",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 18.33,
"totalHoursRunning": 264,
"name": "maria-win-instance-1",
"rptHref": "/systems/4aa0c2ad-8d8e-4c17-bfe4-23f8aae88468/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 53.47,
"recommendedCost": 53.47,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.07,
"recommendedHourlyRate": 0.07,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 109
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1589601600000,
"totalDays": 18,
"seenDays": 8
}
},
"dataQuality": [
{
"workloadName": "Disk I/O Bytes",
"firstSeen": 1569297600000,
"lastSeen": 1589601600000,
"completeDays": 115,
"partialDays": 0
}
]
},
{
"entityId": "e4d9a6e1-ee57-4568-a448-7ee2678a1120",
"resourceId": "8568015726842351383",
"currentType": "custom-1-1024",
"recommendationType": "Not Analyzed",
"name": "terence-instance-1",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 19.22382,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 109
}
}
},
{
"entityId": "7f31e572-54b2-42a8-affd-ec0ff4d5d08b",
"resourceId": "40066566720730101",
"accountIdRef": "engineering-183318",
"currentType": "custom-1-5120",
"recommendationType": "Just Right",
"recommendedType": "custom-1-5120",
"implementationMethod": "N/A",
"predictedUptime": 21.67,
"totalHoursRunning": 312,
"name": "uma-custominstance-2",
"rptHref": "/systems/7f31e572-54b2-42a8-affd-ec0ff4d5d08b/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "df80e3d2-ab41-4273-8c89-674373901e68",
"currentCost": 28.311443,
"recommendedCost": 28.311443,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.04,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 109
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1589601600000,
"totalDays": 18,
"seenDays": 9
}
},
"dataQuality": [
{
"workloadName": "Disk I/O Bytes",
"firstSeen": 1569297600000,
"lastSeen": 1589601600000,
"completeDays": 122,
"partialDays": 0
}
]
},
{
"entityId": "d63bb8b4-7777-40ab-9f83-625274d3a575",
"resourceId": "3505287799366677238",
"currentType": "n1-standard-1",
"recommendationType": "Not Analyzed",
"name": "uma-instance-1",
"densifyPolicy": "Initial Assessment",
"powerState": "Offline",
"currentCost": 24.27,
"serviceType": "Compute Engine",
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 109
}
}
},
{
"entityId": "9bb1add0-f5db-4aec-8708-07162db8f314",
"resourceId": "1733686078363071723",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "uma-instance-2",
"rptHref": "/systems/9bb1add0-f5db-4aec-8708-07162db8f314/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 24.27,
"recommendedCost": 24.27,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.03,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1590218244053,
"recommSeenCount": 27,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1590206702717,
"auditCount": 110
},
"workloadDataLast30": {
"firstDate": 1588132800000,
"lastDate": 1589601600000,
"totalDays": 18,
"seenDays": 8
}
},
"dataQuality": [
{
"workloadName": "Disk I/O Bytes",
"firstSeen": 1569297600000,
"lastSeen": 1589601600000,
"completeDays": 112,
"partialDays": 0
}
]
}
]
- name: Get Analysis Recommendations (Terraform)
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/terraform-map
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- "{{analysisId}}"
- results
description: |-
Retrieves the latest GCP recommendations as a Terraform Parameter map of variables. The Kubex Terraform reference implementation expects this format. This output can be saved as-is in a file called **densify.auto.tfvars** and placed in your Terraform directory. See [GitHub](https://github.com/densify-dev/terraform-null-optimization-as-code).
Refer to Get Recommendations (JSON) for important details.
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
> Here we use header: _Accept_ - **application/terraform-map**
See example. Refer to Kubex Online Help [GCP Analysis Recommendations](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_GCP_Results.htm).
response:
- name: Get Analysis Recommendations (Terraform)
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/terraform-map
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/gcp/0930c31d-13ac-4a3f-892e-2a35c8a3f842/results"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- 0930c31d-13ac-4a3f-892e-2a35c8a3f842
- results
status: OK
code: 200
_postman_previewlanguage: raw
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/terraform-map;charset=UTF-8
- key: date
value: Fri, 22 May 2020 19:10:46 GMT
- key: x-envoy-upstream-service-time
value: "6573"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |
densify_recommendations = {
"gl02.camp_far-72" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "70.21463"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_gas-432" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.88112"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_gas-78" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "69.26212"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_sti-52" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "34.540524"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_fap-68" = {
currentType = "n1-standard-2"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Upsize"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "-47.65182"
effortEstimate = "Very Low"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_fet-112" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "71.9145"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_fet-60" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_xtr-188" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "34.635788"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_xtr-226" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "92.19"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "33.77841"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_fap-362" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_far-204" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_gas-220" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "92.78"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "67.9799"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_gas-550" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "70.21463"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_gas-96" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_sti-412" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "91.67"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "67.166595"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_vmx-450" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_xtr-160" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "71.9145"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_xtr-498" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "69.26212"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_far-36" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "91.67"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "67.166595"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_gas-20" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "69.26212"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_gas-488" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "71.9145"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_gas-510" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_sti-298" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.79"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "69.45262"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_vmx-158" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.49"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.500114"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_fap-260" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_xtr-162" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "35.962154"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_xtr-436" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "35.962154"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_clt-578" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "34.540524"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_fet-580" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.49"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.500114"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_fet-76" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "71.9145"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_xtr-200" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "34.15947"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_xtr-216" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_xtr-32" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "70.21463"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_far-12" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "34.540524"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_gas-262" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "71.9145"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_sti-454" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "70.21463"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_sti-118" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "34.15947"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_sti-350" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_vmx-444" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.79"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "69.45262"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_xtr-268" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "35.962154"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_far-404" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.75"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.69061"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_sti-452" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_clt-562" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "34.15947"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_fap-456" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_fet-138" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.88112"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_xtr-6" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_clt-504" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_fap-8" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "70.21463"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_fet-330" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Upsize"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "-95.29383"
effortEstimate = "Very Low"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_fet-600" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_xtr-186" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "34.15947"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_xtr-248" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "69.07162"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_xtr-360" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "34.15947"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_xtr-484" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "69.07162"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_xtr-584" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "69.26212"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_far-174" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "35.962154"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_far-586" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.88112"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_gas-132" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "95.42"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "69.91422"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_gas-14" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "34.15947"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_gas-274" = {
currentType = "n1-standard-32"
recommendedType = "n1-highmem-16"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "287.67764"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_sti-252" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.88112"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_far-104" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.309616"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_gas-366" = {
currentType = "n1-standard-4"
recommendedType = "n1-highmem-2"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "34.635788"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_fap-110" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "95.42"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "69.91422"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_fap-194" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "69.07162"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_xtr-318" = {
currentType = "n1-standard-8"
recommendedType = "n1-highmem-4"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Downsize - Optimal Family"
powerState = "Running"
implementationMethod = "Self Optimization"
savingsEstimate = "68.88112"
effortEstimate = "Low"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_far-458" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_far-490" = {
currentType = "n1-standard-2"
recommendedType = "n1-standard-2"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_far-494" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_gas-308" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "92.19"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_gas-340" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_gas-480" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_gas-502" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_sti-190" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_sti-526" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_sti-566" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_vmx-266" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.camp_vmx-560" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_clt-156" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_clt-172" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.49"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_clt-572" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_clt-90" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_fap-212" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.79"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_fap-402" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_fap-92" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_xtr-16" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_xtr-168" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_xtr-264" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_xtr-336" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_xtr-380" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.coa_xtr-40" = {
currentType = "n1-standard-2"
recommendedType = "n1-standard-2"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_clt-446" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_clt-512" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_clt-82" = {
currentType = "n1-standard-2"
recommendedType = "n1-standard-2"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_clt-88" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_fap-430" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_fet-242" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_fet-244" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_fet-426" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_fet-542" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_xtr-124" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_xtr-332" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_xtr-440" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_xtr-524" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_xtr-564" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.doop_xtr-598" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_far-304" = {
currentType = "n1-standard-2"
recommendedType = "n1-standard-2"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_far-314" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_far-486" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_gas-102" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_gas-126" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_gas-134" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_gas-182" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "92.5"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_gas-306" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_gas-558" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "91.67"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_sti-46" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_vmx-222" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.49"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_vmx-548" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.hosa_vmx-58" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_far-180" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_far-386" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_gas-196" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_gas-382" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_gas-466" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_gas-496" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_gas-508" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_gas-66" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "91.67"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_sti-184" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_sti-224" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_sti-234" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_sti-374" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_vmx-392" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_vmx-476" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.mln_vmx-500" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_clt-250" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_clt-270" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_fap-24" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_fap-294" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_fap-302" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_fap-312" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_fet-176" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_fet-202" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_fet-346" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "95.42"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_fet-462" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_xtr-154" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_xtr-198" = {
currentType = "n1-standard-2"
recommendedType = "n1-standard-2"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl02.ttr_xtr-390" = {
currentType = "n1-standard-2"
recommendedType = "n1-standard-2"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_far-114" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_far-148" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "92.19"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_gas-492" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "95.42"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_gas-86" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_gas-94" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_sti-146" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_sti-532" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.49"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_sti-540" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.camp_vmx-106" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_clt-10" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_clt-140" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_clt-574" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_fap-116" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_fap-424" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_fap-520" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_fet-326" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_fet-472" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_xtr-232" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_xtr-358" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_xtr-394" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_xtr-482" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.coa_xtr-546" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.49"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_clt-322" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_clt-324" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_clt-80" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_fap-544" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_fap-64" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_fet-416" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_xtr-136" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_xtr-218" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.doop_xtr-400" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_far-284" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "71.99"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_far-288" = {
currentType = "n1-standard-2"
recommendedType = "n1-standard-2"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_far-408" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_gas-120" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_gas-292" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_gas-388" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_gas-422" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "91.67"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_gas-530" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_gas-588" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.79"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_sti-448" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "88.96"
recommendationType = "Just Right"
powerState = "Offline"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_vmx-178" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_vmx-316" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.hosa_vmx-538" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_far-338" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_far-528" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_gas-150" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_gas-192" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_gas-278" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_gas-320" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_gas-372" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_gas-506" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_sti-290" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_vmx-128" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_vmx-342" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.mln_vmx-596" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_clt-384" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_clt-514" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_fap-354" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_fap-44" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_fap-582" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_fet-130" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_fet-214" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_fet-228" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_fet-468" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_xtr-4" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_xtr-418" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_xtr-50" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl04.ttr_xtr-536" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_far-240" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_far-352" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_far-396" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_gas-164" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_gas-2" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_gas-236" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_gas-296" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_gas-38" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.79"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_gas-470" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_sti-152" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "91.67"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_sti-34" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_sti-594" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "95.83"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_vmx-310" = {
currentType = "n1-standard-32"
recommendedType = "n1-standard-32"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.camp_vmx-70" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_clt-18" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "92.19"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_clt-230" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_clt-420" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_fap-170" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_fap-522" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.49"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_fap-98" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_fet-378" = {
currentType = "n1-standard-2"
recommendedType = "n1-standard-2"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_xtr-108" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_xtr-22" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_xtr-238" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_xtr-26" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_xtr-286" = {
currentType = "n1-standard-32"
recommendedType = "n1-standard-32"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_xtr-474" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.coa_xtr-576" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_clt-142" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_clt-246" = {
currentType = "n1-standard-2"
recommendedType = "n1-standard-2"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_clt-42" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_fap-282" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_fet-166" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "94.27"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_fet-592" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.doop_xtr-438" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.01"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_far-210" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "92.19"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_far-348" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_gas-300" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_gas-370" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_gas-428" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_gas-460" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_gas-48" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_gas-54" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_sti-328" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_vmx-356" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_vmx-410" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "95.42"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.hosa_vmx-414" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_far-84" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_gas-122" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_gas-276" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.49"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_gas-280" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_gas-442" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_gas-552" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "91.67"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_sti-100" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_sti-28" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_sti-368" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "92.19"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_sti-376" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_vmx-516" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_vmx-556" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_vmx-56" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.mln_vmx-62" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_clt-344" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_clt-398" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "95.42"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_fap-208" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_fap-256" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_fet-206" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_fet-334" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_fet-406" = {
currentType = "n1-highmem-8"
recommendedType = "n1-highmem-8"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_fet-464" = {
currentType = "n1-standard-1"
recommendedType = "n1-standard-1"
approvalType = "na"
predictedUptime = "98.15"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_xtr-254" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_xtr-554" = {
currentType = "n1-standard-4"
recommendedType = "n1-standard-4"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_xtr-568" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "93.23"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
"gl08.ttr_xtr-74" = {
currentType = "n1-standard-8"
recommendedType = "n1-standard-8"
approvalType = "na"
predictedUptime = "94.53"
recommendationType = "Just Right"
powerState = "Running"
implementationMethod = "N/A"
savingsEstimate = "0.0"
effortEstimate = "None"
densifyPolicy = "GCP Assessement"
}
}
description: After the analysis completes, you can get Densify's recommendations. See [Optimizing GCP Compute Engine Instances](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_GCP_Compute_Engine_Instances.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 2.3.4 GCP Informed Decisions
item:
- name: Download Impact Analysis and Recommendations Report
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/octet-stream
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems/{{entityId}}/analysis-report"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
- "{{entityId}}"
- analysis-report
description: |-
As an application owner, you may want to see details of a recommendation for a particular instance.
The Impact Analysis and Recommendation Report provides this and can be downloaded in PDF format for any instance.
Notes:
> The `entityId` environment variable is used to identify the recommendation system. This variable was set in a previous request. If you want the report for a specific system, modify the `entityId` variable with your desired recommendation _entityId_ in the Kubex environment.
> Ensure the request header includes: _Accept_ - **application/octet-stream**
> This report is based on data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. As a result, the first time you run `/analyze`, the report won't be available until the next day. Once automatic daily analysis updates begin, this restriction is lifted.
Refer to Kubex Online Help [Impact Analysis and Recommendations Report](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_GCP_Results.htm?Highlight=impact%20analysis#Example_DownloadAppOwner)
response: []
- name: Get 'Just Right' Recommendations (JSON)
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " { \r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"entityId\", firstdata.entityId);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/cloud/gcp/{{analysisId}}/results?recommendationType=Just Right"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- "{{analysisId}}"
- results
query:
- key: recommendationType
value: Just Right
description: "There are several properties included with Recommendations. Three are key:\r\n+ **recommendationType** \r\n The recommendation class; Upsize, Modernize, Downsize...\r\n\r\n+ **recommendedType** \r\n The Kubex recommended optimal instance Type. For example the recommendation may be to transition an older instance type to a newer generation which almost always offers more and costs less.\r\n\r\n+ **effortEstimate** \r\n Effort required to move to the new Type. Ranges High to None. Is determined by a rule engine. For example; effort might be 'Medium' when changing family. There might be a significant cost savings to be but you must review and decide.\r\n\r\nIn this example, we request \"Just Right\" recommendations (i.e. instances that are already optimal based on the selected policy).\r\n\r\nNote:\r\n> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want the results for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.\r\n\r\n> In this example, the environment variable `entityId` is set to the first returned *entityId* element for future use."
response:
- name: Get 'Just Right' Recommendations (JSON)
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/cloud/gcp/{{analysisId}}/results?recommendationType=Just Right"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- cloud
- gcp
- "{{analysisId}}"
- results
query:
- key: recommendationType
value: Just Right
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: vary
value: accept-encoding
- key: content-encoding
value: gzip
- key: content-type
value: application/json;charset=UTF-8
- key: date
value: Wed, 10 Jun 2020 21:44:30 GMT
- key: x-envoy-upstream-service-time
value: "133"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"entityId": "710b55de-1861-4ab2-9d47-9feb00ba47a5",
"resourceId": "6535977574244477252",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 21.67,
"totalHoursRunning": 312,
"name": "test-markham",
"rptHref": "/systems/710b55de-1861-4ab2-9d47-9feb00ba47a5/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 24.27,
"recommendedCost": 24.27,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.03,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1590724800000,
"totalDays": 18,
"seenDays": 6
}
}
},
{
"entityId": "4501803e-b305-4764-98b8-92977be98b5d",
"resourceId": "3732095405880331089",
"accountIdRef": "engineering-183318",
"currentType": "f1-micro",
"recommendationType": "Just Right",
"recommendedType": "f1-micro",
"implementationMethod": "N/A",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "marham_555",
"rptHref": "/systems/4501803e-b305-4764-98b8-92977be98b5d/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "7dd494d3-1098-4080-b966-b68d36df643e",
"currentCost": 3.88,
"recommendedCost": 3.88,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.01,
"recommendedHourlyRate": 0.01,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589515200000,
"lastDate": 1590724800000,
"totalDays": 15,
"seenDays": 5
}
}
},
{
"entityId": "b873eeef-b0b9-4fc2-aeeb-35bfc6b6b492",
"resourceId": "1847326295923540183",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "avani-instance-1",
"rptHref": "/systems/b873eeef-b0b9-4fc2-aeeb-35bfc6b6b492/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 24.27,
"recommendedCost": 24.27,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.03,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589515200000,
"lastDate": 1590724800000,
"totalDays": 15,
"seenDays": 5
}
}
},
{
"entityId": "e0d8670a-8a0f-4a5a-8202-261ee385287c",
"resourceId": "5994290118412925376",
"accountIdRef": "engineering-183318",
"currentType": "g1-small",
"recommendationType": "Just Right",
"recommendedType": "g1-small",
"implementationMethod": "N/A",
"predictedUptime": 21.67,
"totalHoursRunning": 312,
"name": "maria-custom-lin",
"rptHref": "/systems/e0d8670a-8a0f-4a5a-8202-261ee385287c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "b0f16641-c3ad-4fa8-a6a8-8cf1608123cb",
"currentCost": 13.13,
"recommendedCost": 13.13,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.02,
"recommendedHourlyRate": 0.02,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1590724800000,
"totalDays": 18,
"seenDays": 6
}
}
},
{
"entityId": "fd980148-535a-47d9-b16e-babf4af9d232",
"resourceId": "266110794289921090",
"accountIdRef": "engineering-183318",
"currentType": "custom-1-8192-ext",
"recommendationType": "Just Right",
"recommendedType": "custom-1-8192-ext",
"implementationMethod": "N/A",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "maria-custom-lin-ext",
"rptHref": "/systems/fd980148-535a-47d9-b16e-babf4af9d232/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "0c2ed0f2-7d8c-41c1-b80b-1f83d46800af",
"currentCost": 39.039375,
"recommendedCost": 39.039375,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.05,
"recommendedHourlyRate": 0.05,
"recommFirstSeen": 1579680587630,
"recommLastSeen": 1591772936723,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 122
},
"workloadDataLast30": {
"firstDate": 1589515200000,
"lastDate": 1590724800000,
"totalDays": 15,
"seenDays": 5
}
}
},
{
"entityId": "ea4815d5-217c-45fd-8c4e-81af60d3231c",
"resourceId": "1446530341679591051",
"accountIdRef": "engineering-183318",
"currentType": "custom-2-4096",
"recommendationType": "Just Right",
"recommendedType": "custom-2-4096",
"implementationMethod": "N/A",
"predictedUptime": 28.33,
"totalHoursRunning": 408,
"name": "maria-custom-win",
"rptHref": "/systems/ea4815d5-217c-45fd-8c4e-81af60d3231c/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "bc619657-8377-41ea-a9ac-5050ad0bfe89",
"currentCost": 72.19145,
"recommendedCost": 72.19145,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.1,
"recommendedHourlyRate": 0.1,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591588800000,
"totalDays": 28,
"seenDays": 11
}
}
},
{
"entityId": "4aa0c2ad-8d8e-4c17-bfe4-23f8aae88468",
"resourceId": "2074566354104409023",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 20,
"totalHoursRunning": 288,
"name": "maria-win-instance-1",
"rptHref": "/systems/4aa0c2ad-8d8e-4c17-bfe4-23f8aae88468/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 53.47,
"recommendedCost": 53.47,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.07,
"recommendedHourlyRate": 0.07,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589515200000,
"lastDate": 1590724800000,
"totalDays": 15,
"seenDays": 5
}
}
},
{
"entityId": "7f31e572-54b2-42a8-affd-ec0ff4d5d08b",
"resourceId": "40066566720730101",
"accountIdRef": "engineering-183318",
"currentType": "custom-1-5120",
"recommendationType": "Just Right",
"recommendedType": "custom-1-5120",
"implementationMethod": "N/A",
"predictedUptime": 21.67,
"totalHoursRunning": 312,
"name": "uma-custominstance-2",
"rptHref": "/systems/7f31e572-54b2-42a8-affd-ec0ff4d5d08b/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "df80e3d2-ab41-4273-8c89-674373901e68",
"currentCost": 28.311443,
"recommendedCost": 28.311443,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.04,
"recommendedHourlyRate": 0.04,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 121
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1590724800000,
"totalDays": 18,
"seenDays": 6
}
}
},
{
"entityId": "9bb1add0-f5db-4aec-8708-07162db8f314",
"resourceId": "1733686078363071723",
"accountIdRef": "engineering-183318",
"currentType": "n1-standard-1",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"implementationMethod": "N/A",
"predictedUptime": 28.33,
"totalHoursRunning": 408,
"name": "uma-instance-2",
"rptHref": "/systems/9bb1add0-f5db-4aec-8708-07162db8f314/analysis-report",
"approvalType": "na",
"densifyPolicy": "Initial Assessment",
"savingsEstimate": 0,
"effortEstimate": "None",
"powerState": "Running",
"recommendedHostEntityId": "996c43fb-28bc-4b24-acc8-439de46c03fa",
"currentCost": 24.27,
"recommendedCost": 24.27,
"serviceType": "Compute Engine",
"currentHourlyRate": 0.03,
"recommendedHourlyRate": 0.03,
"recommFirstSeen": 1579680587570,
"recommLastSeen": 1591772936587,
"recommSeenCount": 34,
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1571951513223,
"dateLastAudited": 1591761914283,
"auditCount": 122
},
"workloadDataLast30": {
"firstDate": 1589256000000,
"lastDate": 1591588800000,
"totalDays": 28,
"seenDays": 11
}
}
}
]
- name: Get GCP Labels (Densify Attributes)
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " { \r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"systemId\", firstdata.id);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems/?platform=gcp&attribute_name_value=Resource+Tags,owner+:+Max+Machino"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
- ""
query:
- key: platform
value: gcp
- key: attribute_name_value
value: Resource+Tags,owner+:+Max+Machino
description: |-
In Kubex System Attributes are synonymous to GCP Labels.
- Kubex maintains an extensive list of attributes for each instance.
- Kubex collects instance GCP Labels and maps them to a Kubex System Attribute called **Resource Tags**
- The format of the _Resource Tags_ System Attribute is: **GCP_Label_Name : GCP_Label_Value**
For example, an instance with an GCP Label of **"Owner"** **"Bill"** is represented in Kubex as System Attribute: _Name_ **Resource Tags** _Value_ **Owner : Bill**
Here we request recommendations for GCP Label "Owner" with a value of "Max+Machino"
> /systems/?attribute_name_value=Resource+Tags,Owner+:+Max+Machino
Notes:
> The _systems_ resource uses data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. The _systems_ resource returns no or partial data until the reporting task completes.
> In this example, the environment variable `systemId` is set to the first returned _id_ element for future use.
See example. Refer to Kubex Online Help [Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Systems.htm)
response:
- name: Get GCP Labels (Densify Attributes)
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/systems/?platform=gcp&attribute_name_value=Resource+Tags,owner+:+Max+Machino"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- systems
- ""
query:
- key: platform
value: gcp
- key: attribute_name_value
value: Resource+Tags,owner+:+Max+Machino
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: vary
value: accept-encoding
- key: content-encoding
value: gzip
- key: content-type
value: application/json;charset=UTF-8
- key: date
value: Wed, 10 Jun 2020 21:50:19 GMT
- key: x-envoy-upstream-service-time
value: "414"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |-
[
{
"id": "23d2f8d2-7683-4e13-8e37-02a6cd8cba38",
"name": "gl08.hosa_far-210",
"href": "/systems/23d2f8d2-7683-4e13-8e37-02a6cd8cba38",
"resource_id": "4090409783622225200",
"type": "vm",
"platform_model": "n1-standard-4",
"platform": "GCP",
"total_physical_cpus": "4",
"cores_per_cpu": "1",
"memory": "15360",
"infrastructure_group": {
"id": "6234d552-d482-4c20-b271-29658bc9563e",
"name": "us-east1-b",
"href": "/infrastructure-groups/6234d552-d482-4c20-b271-29658bc9563e"
},
"control_environment": {
"id": "cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13",
"name": "level3-production-op",
"platform_category": "External Cloud",
"href": "/control-environments/cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13",
"icon": "/control-environments/cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13/icon"
},
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "DevOps"
},
{
"id": "attr_Application",
"name": "Application",
"value": "GEN"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.45751277"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "4"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "4.552146"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "90.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-05-29 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "26483.008"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "1.631"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "4.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "119.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "15360.0"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "61.819992"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "80.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "13111.991"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "25.918085"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "24.58"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "Prod"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "n1-standard-4"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "4e8309c5-cf70-42d9-ab70-4aa46516ff62"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "92.19"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "4.552146"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "61.819992"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "n1-standard-4-4X15.0"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "15360.0"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "application : Growth"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "business_unit : Marketing"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cost_center : 409"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "department : Core"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "owner : Irina Yashina"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "application : Growth"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "business_unit : Marketing"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "cost_center : 409"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "department : Core"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : Max Machino"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "M"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 15 2020, 07:14:57 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "level3-production-op"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "rhel-7-server"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "DevOps"
},
{
"id": "CLD.COST.CENTER",
"name": "Cost Center",
"value": "409"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Max Machino"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "15360"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east1-b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "level3-production-op"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
},
{
"id": "fc32746e-77f2-4ab0-84d6-7d016b6452de",
"name": "gl08.hosa_gas-132",
"href": "/systems/fc32746e-77f2-4ab0-84d6-7d016b6452de",
"resource_id": "4090409210047826898",
"type": "vm",
"platform_model": "n1-standard-8",
"platform": "GCP",
"total_physical_cpus": "8",
"cores_per_cpu": "1",
"memory": "30720",
"infrastructure_group": {
"id": "f6e8bc8a-7023-4189-95e8-c0704fc16965",
"name": "us-east1-c",
"href": "/infrastructure-groups/f6e8bc8a-7023-4189-95e8-c0704fc16965"
},
"control_environment": {
"id": "cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13",
"name": "level3-production-op",
"platform_category": "External Cloud",
"href": "/control-environments/cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13",
"icon": "/control-environments/cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13/icon"
},
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "DevOps"
},
{
"id": "attr_Application",
"name": "Application",
"value": "SVC_Dev"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "3.4725764"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "4"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.8145003"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "90.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-06-04 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "30777.102"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "1.5521667"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "8.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "239.2"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "30720.0"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "44.965332"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "80.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "12329.004"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "28.565666"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.90"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "Prod"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "n1-highmem-4"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "f65feadb-e6d6-421c-86ce-38b881cd48c6"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "95.42"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.8145003"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "44.965332"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "n1-highmem-4-4X26.0"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "23552.0"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "application : Growth"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "business_unit : Marketing"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cost_center : 409"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "department : Core"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "owner : Irina Yashina"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "application : Growth"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "business_unit : Marketing"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "cost_center : 409"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "department : Core"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : Max Machino"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "M"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 15 2020, 07:14:50 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "level3-production-op"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "rhel-7-server"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "DevOps"
},
{
"id": "CLD.COST.CENTER",
"name": "Cost Center",
"value": "409"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Max Machino"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "26624"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east1-c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "level3-production-op"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
},
{
"id": "26eb455d-0c1a-4f91-af50-5286d5aab8ba",
"name": "gl08.ttr_clt-398",
"href": "/systems/26eb455d-0c1a-4f91-af50-5286d5aab8ba",
"resource_id": "4090409881817359163",
"type": "vm",
"platform_model": "n1-standard-8",
"platform": "GCP",
"total_physical_cpus": "8",
"cores_per_cpu": "1",
"memory": "30720",
"infrastructure_group": {
"id": "6234d552-d482-4c20-b271-29658bc9563e",
"name": "us-east1-b",
"href": "/infrastructure-groups/6234d552-d482-4c20-b271-29658bc9563e"
},
"control_environment": {
"id": "cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13",
"name": "level3-production-op",
"platform_category": "External Cloud",
"href": "/control-environments/cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13",
"icon": "/control-environments/cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13/icon"
},
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Business Services"
},
{
"id": "attr_Application",
"name": "Application",
"value": "MOB"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "6.791971"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "8"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "19.349453"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "90.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-06-04 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "30279.672"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "1.5513333"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "8.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "239.2"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "30720.0"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "72.1141"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "80.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "4734034.5"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "4642.0796"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "15.90"
},
{
"id": "attr_OperationalEnvironment",
"name": "Operational Environment",
"value": "Test"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "n1-standard-8"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "fa7c0044-ec56-41d9-942f-24bb653e659a"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "95.42"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "19.349453"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "72.1141"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "n1-standard-8-8X30.0"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "2"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "30720.0"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "application : Leads"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "business_unit : Marketing"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cost_center : 409"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "department : Core"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "owner : Irina Yashina"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "application : Leads"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "business_unit : Marketing"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "cost_center : 409"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "department : Core"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : Max Machino"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "M"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Apr 15 2020, 07:14:57 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "level3-production-op"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "rhel-7-server"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Business Services"
},
{
"id": "CLD.COST.CENTER",
"name": "Cost Center",
"value": "409"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Kaybok Issarra"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "30720"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east1-b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "level3-production-op"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
}
]
- name: Get Full Details of an Instance
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems/{{systemId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
- "{{systemId}}"
description: |-
You can get a full details listing of a specific instance using the `/systems` resource.
Notes:
> The `systemId` environment variable is used to identify the system. This variable was set in a previous request. If you want the details for another system, modify the `systemId` variable with your desired system _id_ in the Kubex environment.
> The _systems_ resource uses data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. The _systems_ resource returns no or partial data until the reporting task is complete.
See example. Refer to Kubex Online Help [Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Systems.htm)
response:
- name: Get Full Details of an Instance
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/systems/23d2f8d2-7683-4e13-8e37-02a6cd8cba38"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- systems
- 23d2f8d2-7683-4e13-8e37-02a6cd8cba38
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Content-Encoding
value: gzip
- key: Vary
value: Accept-Encoding
- key: Date
value: Tue, 19 Feb 2019 20:02:44 GMT
cookie: []
body: |-
{
"id": "23d2f8d2-7683-4e13-8e37-02a6cd8cba38",
"name": "gl08.hosa_far-210",
"href": "/systems/23d2f8d2-7683-4e13-8e37-02a6cd8cba38",
"resource_id": "4090409783622225200",
"type": "vm",
"platform_model": "n1-standard-4",
"platform": "GCP",
"os": "Linux",
"os_version": "RHEL 7 server",
"manufacturer": "GCP",
"cpu_model": "Intel Haswell",
"total_physical_cpus": "4",
"cores_per_cpu": "1",
"total_logical_cpus": "4",
"threads_per_core": "1",
"cpu_speed": "2600",
"memory": "15360",
"hostId": "N/A",
"parent": "N/A",
"infrastructure_group": {
"id": "6234d552-d482-4c20-b271-29658bc9563e",
"name": "us-east1-b",
"href": "/infrastructure-groups/6234d552-d482-4c20-b271-29658bc9563e"
},
"control_environment": {
"id": "cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13",
"name": "level3-production-op",
"platform_category": "External Cloud",
"href": "/control-environments/cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13",
"icon": "/control-environments/cf25d8c1-4fdf-42b1-b3a3-1a8d8a425d13/icon"
},
"cpu_benchmarks": [
{
"name": "CINT2006 Rate",
"score_type": "cint2006rate",
"value": 119.6
}
],
"I/O_benchmarks": [
{
"name": "Maximum Disk Throughput (bytes/s)",
"score_type": "disk",
"value": -1
},
{
"name": "Maximum Network Throughput (bytes/s)",
"score_type": "net",
"value": -1
}
],
"attributes": [
{
"id": "attr_2",
"name": "Department",
"value": "Core"
},
{
"id": "attr_AnalysisResult",
"name": "Analysis Result",
"value": "OK"
},
{
"id": "attr_AnalysisStatus",
"name": "Analysis Status",
"value": "Included in Analysis"
},
{
"id": "attr_Application",
"name": "Application",
"value": "Growth"
},
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.45751277"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "2"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "2.9945378"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2018-05-29 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "33917.42"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "2.3453333"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "4.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "119.6"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "15360.0"
},
{
"id": "attr_InsightSummary",
"name": "Insight Summary",
"value": "Downsize - Optimal Family"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "61.819992"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "13520.904"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "26.442667"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "24.58"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "n1-highmem-2"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "09a6ff8d-de93-4fc2-8bac-7d3aaa53a935"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "92.19"
},
{
"id": "attr_Provider",
"name": "Provider",
"value": "GCP"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "2.9945378"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "61.819992"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "n1-highmem-2-2X13"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "12288.0"
},
{
"id": "attr_Recommendation",
"name": "Recommendation",
"value": "n1-standard-4 > n1-highmem-2"
},
{
"id": "attr_RecommendationType",
"name": "Recommendation Type",
"value": "Downsize - Optimal Family"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "application : Growth"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "business_unit : Marketing"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cost_center : 409"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "department : Core"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "owner : Irina Yashina"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "application : Growth"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "business_unit : Marketing"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "cost_center : 409"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "department : Core"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : Max Machino"
},
{
"id": "attr_Service",
"name": "Service",
"value": "VM"
},
{
"id": "attr_ServiceDescribed",
"name": "Service Described",
"value": "VM"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via actual workload data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Feb 07 2019, 16:07:21 EST"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "level3-production-op"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "rhel-7-server"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.BUSINESS.UNIT",
"name": "Business Unit",
"value": "Marketing"
},
{
"id": "CLD.COST.CENTER",
"name": "Cost Center",
"value": "409"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "Max Machino"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "13312"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east1-b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "level3-production-op"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
}
- name: Get Full Details of all GCP Instances
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems?platform=gcp"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
query:
- key: platform
value: gcp
description: |-
You can filter for specific instances using the `/systems` resource.
Notes:
> In this example, we are requesting for only **GCP** systems.
> The _systems_ resource uses data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. The _systems_ resource returns no or partial data until the reporting task is complete.
See example. Refer to Kubex Online Help [Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Systems.htm)
response:
- name: Get Full Details of all GCP Instances
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/systems/?platform=gcp"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- systems
- ""
query:
- key: platform
value: gcp
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Content-Encoding
value: gzip
- key: Vary
value: Accept-Encoding
- key: Date
value: Mon, 04 Feb 2019 12:02:47 GMT
cookie: []
body: |-
[
{
"id": "4db47f1c-96c9-4d3a-b062-028017842e5c",
"name": "avani-instance-1",
"href": "/systems/4db47f1c-96c9-4d3a-b062-028017842e5c",
"resource_id": "1847326295923540183",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"infrastructure_group": {
"id": "b7b6df32-0f0b-4a09-ab70-3288b203b05b",
"name": "us-east1-b",
"href": "/infrastructure-groups/b7b6df32-0f0b-4a09-ab70-3288b203b05b"
},
"control_environment": {
"id": "ff8d3fc6-9ece-4bc3-aaa6-75899247ce1b",
"name": "engineering-183318",
"platform_category": "External Cloud",
"href": "/control-environments/ff8d3fc6-9ece-4bc3-aaa6-75899247ce1b",
"icon": "/control-environments/ff8d3fc6-9ece-4bc3-aaa6-75899247ce1b/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "0.040536832"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "1.6566796"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-01-05 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "80253.75"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "1.3424166"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "29.9"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "1616.4719"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "6.524125"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "50.00"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "n1-standard-1"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "acde5cc2-f0a9-4ad9-addd-4a82f9a79016"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "100.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "1.6566796"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "n1-standard-1-1X3.75"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "description : gcpdescriptiontest"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "gear_id : uma-gcptest"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner_id2 : cirba-old"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Feb 04 2019, 06:39:29 EST"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "engineering-183318"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "debian-9-stretch"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "3840"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east1-b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "engineering-183318"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
},
{
"id": "d4b977a6-7503-48ce-b8ae-d1045d4f4db0",
"name": "jenny-instance",
"href": "/systems/d4b977a6-7503-48ce-b8ae-d1045d4f4db0",
"resource_id": "1192433367711366304",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"infrastructure_group": {
"id": "b82b6d81-b768-410d-b7cd-e3d37e9e8915",
"name": "us-east1-c",
"href": "/infrastructure-groups/b82b6d81-b768-410d-b7cd-e3d37e9e8915"
},
"control_environment": {
"id": "ff8d3fc6-9ece-4bc3-aaa6-75899247ce1b",
"name": "engineering-183318",
"platform_category": "External Cloud",
"href": "/control-environments/ff8d3fc6-9ece-4bc3-aaa6-75899247ce1b",
"icon": "/control-environments/ff8d3fc6-9ece-4bc3-aaa6-75899247ce1b/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "29.9"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Feb 04 2019, 06:39:31 EST"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "engineering-183318"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "debian-9-stretch"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "in_maint_mode",
"name": "In Maintenance Mode",
"value": "N/A"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east1-c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "engineering-183318"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
}
]
- name: Get Systems with Insufficient Workload
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems?attribute_name_value=Insufficient+Workload,true&platform=GCP"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
query:
- key: attribute_name_value
value: Insufficient+Workload,true
- key: platform
value: GCP
description: |-
To improve analysis performance, Kubex now removes instances that do not have
sufficient workload to produce valid recommendations. These instances are either transient systems
or have insufficient workload data to be analyzed accurately.
Using the 3 policy settings that define the amount of required workload and a table of required
workload types for each container and cloud provider, Kubex then filters out instances that do not
meet both the volume and type of workload data, requirements.
Once enable this feature applies to auto-created analysis and to analysis that are initiated through the
Kubex API.
Contact [Support@Densify.com](https://mailto:Support@Densify.com) for detail on enabling this feature
Refer to Kubex Online Help [Densify Docs](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/API_New_Features.htm)
response:
- name: Get Systems with Insufficient Workload Copy
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems?attribute_name_value=Insufficient+Workload,true&platform=GCP"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
query:
- key: attribute_name_value
value: Insufficient+Workload,true
- key: platform
value: GCP
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Access-Control-Max-Age
value: "86400"
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Pragma
value: no-cache
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Mon, 24 Jul 2023 10:40:54 GMT
- key: Keep-Alive
value: timeout=20
- key: Connection
value: keep-alive
cookie: []
body: |-
[
{
"id": "b7b7279d-01f9-3c13-b9f6-55fb12f4f59a",
"name": "testinstance",
"href": "/systems/b7b7279d-01f9-3c13-b9f6-55fb12f4f59a",
"resource_id": "5940122099146969354",
"type": "vm",
"platform_model": "e2-micro",
"platform": "GCP",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "1024",
"attributes": [
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "debian-11-bullseye"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "engineering-183318-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "engineering-183318-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-east1-b"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-east1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "engineering-183318"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "d2758529-a5a9-3fdd-9b37-f66bdefdf1e8",
"name": "gke-cluster-1-pool-1-e2bc114b-9ubg",
"href": "/systems/d2758529-a5a9-3fdd-9b37-f66bdefdf1e8",
"resource_id": "7396651294265436895",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"infrastructure_group": {
"id": "2dd7a6a9-5cd9-4220-b587-c27e24fd3675",
"name": "us-central1-a",
"href": "/infrastructure-groups/2dd7a6a9-5cd9-4220-b587-c27e24fd3675"
},
"control_environment": {
"id": "1967540e-d561-4e73-b4c6-9fcf3f7aa405",
"name": "pm-testing-160714",
"platform_category": "External Cloud",
"href": "/control-environments/1967540e-d561-4e73-b4c6-9fcf3f7aa405",
"icon": "/control-environments/1967540e-d561-4e73-b4c6-9fcf3f7aa405/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "4.199717"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "17.330847"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-07-21 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "3226766.8"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "83.933334"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "29.9"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "195555.78"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "264.51373"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "100.00"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "n1-standard-1"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "1b249323-083f-409c-90c9-912e023f8b70"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "100.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "17.330847"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "n1-standard-1-1X4"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-location : us-central1-a"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-name : cluster-1"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-uid : daede88bc44dce0f8c568f02820420e581c2b6d79a09c0e20d7c61523ab27671"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "configure-sh : #!/usr/bin/env bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "created-by : projects/341260897916/zones/us-central1-a/instanceGroupManagers/gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "disable-legacy-endpoints : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-metrics-enabled : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-update-strategy : update_disabled"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "google-compute-enable-pcid : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "instance-template : projects/341260897916/global/instanceTemplates/gke-cluster-1-pool-1-6e91b12e"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-env : ALLOCATE_NODE_CIDRS: \"true\"\nAPI_SERVER_TEST_LOG_LEVEL: --v=3\nAUTOSCALER_ENV_VARS: kube_reserved=cpu=60m,memory=960Mi,ephemeral-storage=41Gi;node_labels=cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-labels : cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,cloud.google.com/gke-cpu-scaling-level=1,cloud.google.com/gke-logging-variant=DEFAULT,cloud.google.com/gke-max-pods-per-node=110,cloud.google.com/gke"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kubelet-config : apiVersion: kubelet.config.k8s.io/v1beta1\nauthentication:\n anonymous:\n enabled: false\n webhook:\n enabled: true\n x509:\n clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt\nauthorization:\n mode: Webhook\ncgroupRoot: /\nclust"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "serial-port-logging-enable : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "user-data : #cloud-config\n\nusers:\n - name: kube-bootstrap-logs-forwarder\n gecos: User the kube-bootstrap-logs-forwarder.service runs as.\n system: true\n\nwrite_files:\n - path: /etc/systemd/system/kube-bootstrap-logs-forwarder.service\n permissions:"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-gke-node : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-location : us-central1-a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-name : cluster-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-node-pool-name : pool-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : kgillan"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 22 2023, 21:02:05 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "cos, cos-pcid, gke-node, shielded-cos"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "3840"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "516c6831-87be-4b7b-996e-c2908d40a7b3",
"name": "instance-3",
"href": "/systems/516c6831-87be-4b7b-996e-c2908d40a7b3",
"resource_id": "3370832112997177085",
"type": "vm",
"platform_model": "custom-1-1024",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1024",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "29.9"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1024.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "densify-metadata1 : line1\nline2\nline3"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "densify-label1-empty : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "densify-label2 : densify-label2-value"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : aevrenoz"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 21:02:05 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "debian-9-stretch"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "aevrenoz"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "4873791c-69f7-3a50-a020-4f1a1a2904a0",
"name": "gke-cluster-1-pool-1-e2bc114b-wxz9",
"href": "/systems/4873791c-69f7-3a50-a020-4f1a1a2904a0",
"resource_id": "9049102573711120882",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"infrastructure_group": {
"id": "2dd7a6a9-5cd9-4220-b587-c27e24fd3675",
"name": "us-central1-a",
"href": "/infrastructure-groups/2dd7a6a9-5cd9-4220-b587-c27e24fd3675"
},
"control_environment": {
"id": "1967540e-d561-4e73-b4c6-9fcf3f7aa405",
"name": "pm-testing-160714",
"platform_category": "External Cloud",
"href": "/control-environments/1967540e-d561-4e73-b4c6-9fcf3f7aa405",
"icon": "/control-environments/1967540e-d561-4e73-b4c6-9fcf3f7aa405/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "3.460657"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "12.137667"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-07-21 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "955490.1"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "75.43875"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "29.9"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "31735.635"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "56.370964"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "100.00"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "n1-standard-1"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "1b249323-083f-409c-90c9-912e023f8b70"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "100.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "12.137667"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "n1-standard-1-1X4"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-location : us-central1-a"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-name : cluster-1"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-uid : daede88bc44dce0f8c568f02820420e581c2b6d79a09c0e20d7c61523ab27671"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "configure-sh : #!/usr/bin/env bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "created-by : projects/341260897916/zones/us-central1-a/instanceGroupManagers/gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "disable-legacy-endpoints : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-metrics-enabled : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-update-strategy : update_disabled"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "google-compute-enable-pcid : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "instance-template : projects/341260897916/global/instanceTemplates/gke-cluster-1-pool-1-6e91b12e"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-env : ALLOCATE_NODE_CIDRS: \"true\"\nAPI_SERVER_TEST_LOG_LEVEL: --v=3\nAUTOSCALER_ENV_VARS: kube_reserved=cpu=60m,memory=960Mi,ephemeral-storage=41Gi;node_labels=cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-labels : cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,cloud.google.com/gke-cpu-scaling-level=1,cloud.google.com/gke-logging-variant=DEFAULT,cloud.google.com/gke-max-pods-per-node=110,cloud.google.com/gke"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kubelet-config : apiVersion: kubelet.config.k8s.io/v1beta1\nauthentication:\n anonymous:\n enabled: false\n webhook:\n enabled: true\n x509:\n clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt\nauthorization:\n mode: Webhook\ncgroupRoot: /\nclust"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "serial-port-logging-enable : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "user-data : #cloud-config\n\nusers:\n - name: kube-bootstrap-logs-forwarder\n gecos: User the kube-bootstrap-logs-forwarder.service runs as.\n system: true\n\nwrite_files:\n - path: /etc/systemd/system/kube-bootstrap-logs-forwarder.service\n permissions:"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-gke-node : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-location : us-central1-a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-name : cluster-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-node-pool-name : pool-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : kgillan"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 22 2023, 21:02:05 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "cos, cos-pcid, gke-node, shielded-cos"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "3840"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "f5255c55-d805-3411-8a55-ce9b8118521a",
"name": "gke-cluster-1-pool-1-e2bc114b-2lt6",
"href": "/systems/f5255c55-d805-3411-8a55-ce9b8118521a",
"resource_id": "3880768186469047318",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"infrastructure_group": {
"id": "2dd7a6a9-5cd9-4220-b587-c27e24fd3675",
"name": "us-central1-a",
"href": "/infrastructure-groups/2dd7a6a9-5cd9-4220-b587-c27e24fd3675"
},
"control_environment": {
"id": "1967540e-d561-4e73-b4c6-9fcf3f7aa405",
"name": "pm-testing-160714",
"platform_category": "External Cloud",
"href": "/control-environments/1967540e-d561-4e73-b4c6-9fcf3f7aa405",
"icon": "/control-environments/1967540e-d561-4e73-b4c6-9fcf3f7aa405/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "2.8533862"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "10.32266"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-07-21 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "970563.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "75.69063"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "29.9"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "30798.938"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "64.61171"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "1.67"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "n1-standard-1"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "1b249323-083f-409c-90c9-912e023f8b70"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "100.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "10.32266"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "n1-standard-1-1X4"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-location : us-central1-a"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-name : cluster-1"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-uid : daede88bc44dce0f8c568f02820420e581c2b6d79a09c0e20d7c61523ab27671"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "configure-sh : #!/usr/bin/env bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "created-by : projects/341260897916/zones/us-central1-a/instanceGroupManagers/gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "disable-legacy-endpoints : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-metrics-enabled : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-update-strategy : update_disabled"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "google-compute-enable-pcid : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "instance-template : projects/341260897916/global/instanceTemplates/gke-cluster-1-pool-1-6e91b12e"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-env : ALLOCATE_NODE_CIDRS: \"true\"\nAPI_SERVER_TEST_LOG_LEVEL: --v=3\nAUTOSCALER_ENV_VARS: kube_reserved=cpu=60m,memory=960Mi,ephemeral-storage=41Gi;node_labels=cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-labels : cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,cloud.google.com/gke-cpu-scaling-level=1,cloud.google.com/gke-logging-variant=DEFAULT,cloud.google.com/gke-max-pods-per-node=110,cloud.google.com/gke"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kubelet-config : apiVersion: kubelet.config.k8s.io/v1beta1\nauthentication:\n anonymous:\n enabled: false\n webhook:\n enabled: true\n x509:\n clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt\nauthorization:\n mode: Webhook\ncgroupRoot: /\nclust"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "serial-port-logging-enable : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "user-data : #cloud-config\n\nusers:\n - name: kube-bootstrap-logs-forwarder\n gecos: User the kube-bootstrap-logs-forwarder.service runs as.\n system: true\n\nwrite_files:\n - path: /etc/systemd/system/kube-bootstrap-logs-forwarder.service\n permissions:"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-gke-node : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-location : us-central1-a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-name : cluster-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-node-pool-name : pool-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : kgillan"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 22 2023, 21:02:05 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "cos, cos-pcid, gke-node, shielded-cos"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "3840"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "d48fb842-152d-463c-8306-48c3c05ad46d",
"name": "instance-3-with-extra-disk",
"href": "/systems/d48fb842-152d-463c-8306-48c3c05ad46d",
"resource_id": "5256101767041797484",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "29.9"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : aevrenoz"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 21:02:05 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "debian-9-stretch"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "preemptible"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "aevrenoz"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "9ed43985-6ffe-31f5-beee-d3b06c1afbfd",
"name": "gke-cluster-1-pool-1-e2bc114b-nlwn",
"href": "/systems/9ed43985-6ffe-31f5-beee-d3b06c1afbfd",
"resource_id": "1882495503378422612",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"attributes": [
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-location : us-central1-a"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-name : cluster-1"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-uid : daede88bc44dce0f8c568f02820420e581c2b6d79a09c0e20d7c61523ab27671"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "configure-sh : #!/usr/bin/env bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "created-by : projects/341260897916/zones/us-central1-a/instanceGroupManagers/gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "disable-legacy-endpoints : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-metrics-enabled : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-update-strategy : update_disabled"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "google-compute-enable-pcid : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "instance-template : projects/341260897916/global/instanceTemplates/gke-cluster-1-pool-1-deb9c529"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-env : ALLOCATE_NODE_CIDRS: \"true\"\nAPI_SERVER_TEST_LOG_LEVEL: --v=3\nAUTOSCALER_ENV_VARS: kube_reserved=cpu=60m,memory=960Mi,ephemeral-storage=41Gi;node_labels=cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-labels : cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,cloud.google.com/gke-cpu-scaling-level=1,cloud.google.com/gke-logging-variant=DEFAULT,cloud.google.com/gke-max-pods-per-node=110,cloud.google.com/gke"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kubelet-config : apiVersion: kubelet.config.k8s.io/v1beta1\nauthentication:\n anonymous:\n enabled: false\n webhook:\n enabled: true\n x509:\n clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt\nauthorization:\n mode: Webhook\ncgroupRoot: /\nclust"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "serial-port-logging-enable : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "user-data : #cloud-config\n\nusers:\n - name: kube-bootstrap-logs-forwarder\n gecos: User the kube-bootstrap-logs-forwarder.service runs as.\n system: true\n\nwrite_files:\n - path: /etc/systemd/system/kube-bootstrap-logs-forwarder.service\n permissions:"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-gke-node : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-location : us-central1-a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-name : cluster-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-node-pool-name : pool-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : kgillan"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "cos, cos-pcid, gke-node, shielded-cos"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
}
]
},
{
"id": "1ae2e921-2516-4c11-a34b-3ef7cb7266be",
"name": "jltest-c3",
"href": "/systems/1ae2e921-2516-4c11-a34b-3ef7cb7266be",
"resource_id": "5322987074557539971",
"type": "vm",
"platform_model": "c3-highcpu-4",
"platform": "GCP",
"total_physical_cpus": "4",
"cores_per_cpu": "1",
"memory": "8192",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "4.0"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "8192.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Benchmark"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Benchmark ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 21:02:07 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "debian-11-bullseye"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "c9836a32-6256-3547-8b12-a7059a8e54f6",
"name": "gke-cluster-1-pool-1-e2bc114b-f0ve",
"href": "/systems/c9836a32-6256-3547-8b12-a7059a8e54f6",
"resource_id": "8735534738076604931",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"attributes": [
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-location : us-central1-a"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-name : cluster-1"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-uid : daede88bc44dce0f8c568f02820420e581c2b6d79a09c0e20d7c61523ab27671"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "configure-sh : #!/usr/bin/env bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "created-by : projects/341260897916/zones/us-central1-a/instanceGroupManagers/gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "disable-legacy-endpoints : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-metrics-enabled : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-update-strategy : update_disabled"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "google-compute-enable-pcid : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "instance-template : projects/341260897916/global/instanceTemplates/gke-cluster-1-pool-1-deb9c529"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-env : ALLOCATE_NODE_CIDRS: \"true\"\nAPI_SERVER_TEST_LOG_LEVEL: --v=3\nAUTOSCALER_ENV_VARS: kube_reserved=cpu=60m,memory=960Mi,ephemeral-storage=41Gi;node_labels=cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-labels : cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,cloud.google.com/gke-cpu-scaling-level=1,cloud.google.com/gke-logging-variant=DEFAULT,cloud.google.com/gke-max-pods-per-node=110,cloud.google.com/gke"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kubelet-config : apiVersion: kubelet.config.k8s.io/v1beta1\nauthentication:\n anonymous:\n enabled: false\n webhook:\n enabled: true\n x509:\n clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt\nauthorization:\n mode: Webhook\ncgroupRoot: /\nclust"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "serial-port-logging-enable : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "user-data : #cloud-config\n\nusers:\n - name: kube-bootstrap-logs-forwarder\n gecos: User the kube-bootstrap-logs-forwarder.service runs as.\n system: true\n\nwrite_files:\n - path: /etc/systemd/system/kube-bootstrap-logs-forwarder.service\n permissions:"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-gke-node : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-location : us-central1-a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-name : cluster-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-node-pool-name : pool-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : kgillan"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "cos, cos-pcid, gke-node, shielded-cos"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
}
]
},
{
"id": "5d14fa1a-d9de-34d9-85ab-f91baf0651d5",
"name": "gke-cluster-1-pool-1-e2bc114b-gaag",
"href": "/systems/5d14fa1a-d9de-34d9-85ab-f91baf0651d5",
"resource_id": "4457145247041540262",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"attributes": [
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-location : us-central1-a"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-name : cluster-1"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-uid : daede88bc44dce0f8c568f02820420e581c2b6d79a09c0e20d7c61523ab27671"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "configure-sh : #!/usr/bin/env bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "created-by : projects/341260897916/zones/us-central1-a/instanceGroupManagers/gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "disable-legacy-endpoints : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-metrics-enabled : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-update-strategy : update_disabled"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "google-compute-enable-pcid : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "instance-template : projects/341260897916/global/instanceTemplates/gke-cluster-1-pool-1-d3c1d4b2"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-env : ALLOCATE_NODE_CIDRS: \"true\"\nAPI_SERVER_TEST_LOG_LEVEL: --v=3\nAUTOSCALER_ENV_VARS: kube_reserved=cpu=60m,memory=960Mi,ephemeral-storage=41Gi;node_labels=cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-labels : cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,cloud.google.com/gke-cpu-scaling-level=1,cloud.google.com/gke-logging-variant=DEFAULT,cloud.google.com/gke-max-pods-per-node=110,cloud.google.com/gke"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kubelet-config : apiVersion: kubelet.config.k8s.io/v1beta1\nauthentication:\n anonymous:\n enabled: false\n webhook:\n enabled: true\n x509:\n clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt\nauthorization:\n mode: Webhook\ncgroupRoot: /\nclust"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "serial-port-logging-enable : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "user-data : #cloud-config\n\nusers:\n - name: kube-bootstrap-logs-forwarder\n gecos: User the kube-bootstrap-logs-forwarder.service runs as.\n system: true\n\nwrite_files:\n - path: /etc/systemd/system/kube-bootstrap-logs-forwarder.service\n permissions:"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-gke-node : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-location : us-central1-a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-name : cluster-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-node-pool-name : pool-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : kgillan"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "cos, cos-pcid, gke-node, shielded-cos"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
}
]
},
{
"id": "107a6c3b-7c6e-420f-9e63-2932711fa08c",
"name": "test-n1-cust-1x2",
"href": "/systems/107a6c3b-7c6e-420f-9e63-2932711fa08c",
"resource_id": "2017694918196775466",
"type": "vm",
"platform_model": "custom-1-2048",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "2048",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "29.9"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "2048.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : qa"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 21:02:07 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "debian-9-stretch"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "qa"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "86ec8fe8-fb2d-3b63-a0d2-54bf9fc0ee0c",
"name": "gke-cluster-1-pool-2-cd3fb934-c6rv",
"href": "/systems/86ec8fe8-fb2d-3b63-a0d2-54bf9fc0ee0c",
"resource_id": "7950209189297510219",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"infrastructure_group": {
"id": "2dd7a6a9-5cd9-4220-b587-c27e24fd3675",
"name": "us-central1-a",
"href": "/infrastructure-groups/2dd7a6a9-5cd9-4220-b587-c27e24fd3675"
},
"control_environment": {
"id": "1967540e-d561-4e73-b4c6-9fcf3f7aa405",
"name": "pm-testing-160714",
"platform_category": "External Cloud",
"href": "/control-environments/1967540e-d561-4e73-b4c6-9fcf3f7aa405",
"icon": "/control-environments/1967540e-d561-4e73-b4c6-9fcf3f7aa405/icon"
},
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "2.5066066"
},
{
"id": "attr_CPUAllocation",
"name": "CPU Allocation",
"value": "1"
},
{
"id": "attr_CPUUtil(%)",
"name": "CPU Util (%)",
"value": "9.355642"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-07-21 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)",
"name": "Disk IO (Bytes)",
"value": "956063.3"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)",
"name": "Disk IO (Ops)",
"value": "76.631836"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "29.9"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)",
"name": "Network IO (Bytes)",
"value": "32321.309"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)",
"name": "Network IO (Packets)",
"value": "51.841087"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "100.00"
},
{
"id": "attr_PlacementTarget",
"name": "Placement Target",
"value": "n1-standard-1"
},
{
"id": "attr_PlacementTarget_id",
"name": "Placement Target _id",
"value": "1b249323-083f-409c-90c9-912e023f8b70"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "100.00"
},
{
"id": "attr_RA_CU",
"name": "RA_CU",
"value": "9.355642"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "n1-standard-1-1X4"
},
{
"id": "attr_RawCPUAllocation",
"name": "Raw CPU Allocation",
"value": "1"
},
{
"id": "attr_RawMemoryAllocation",
"name": "Raw Memory Allocation",
"value": "3840.0"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-location : us-central1-a"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-name : cluster-1"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-uid : daede88bc44dce0f8c568f02820420e581c2b6d79a09c0e20d7c61523ab27671"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "configure-sh : #!/usr/bin/env bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "created-by : projects/341260897916/zones/us-central1-a/instanceGroupManagers/gke-cluster-1-pool-2-cd3fb934-grp"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "disable-legacy-endpoints : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-metrics-enabled : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-update-strategy : update_disabled"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "google-compute-enable-pcid : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "instance-template : projects/341260897916/global/instanceTemplates/gke-cluster-1-pool-2-63ecb239"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-env : ALLOCATE_NODE_CIDRS: \"true\"\nAPI_SERVER_TEST_LOG_LEVEL: --v=3\nAUTOSCALER_ENV_VARS: kube_reserved=cpu=60m,memory=960Mi,ephemeral-storage=41Gi;node_labels=cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-labels : cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,cloud.google.com/gke-cpu-scaling-level=1,cloud.google.com/gke-logging-variant=DEFAULT,cloud.google.com/gke-max-pods-per-node=110,cloud.google.com/gke"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kubelet-config : apiVersion: kubelet.config.k8s.io/v1beta1\nauthentication:\n anonymous:\n enabled: false\n webhook:\n enabled: true\n x509:\n clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt\nauthorization:\n mode: Webhook\ncgroupRoot: /\nclust"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "serial-port-logging-enable : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "user-data : #cloud-config\n\nusers:\n - name: kube-bootstrap-logs-forwarder\n gecos: User the kube-bootstrap-logs-forwarder.service runs as.\n system: true\n\nwrite_files:\n - path: /etc/systemd/system/kube-bootstrap-logs-forwarder.service\n permissions:"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-gke-node : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-location : us-central1-a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-name : cluster-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-node-pool-name : pool-2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : kgillan"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "No Memory Utilization Data"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "S"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "Jul 22 2023, 21:02:05 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "gke-cluster-1-pool-2-cd3fb934-grp"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "cos, cos-pcid, gke-node, shielded-cos"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "memory_allocation",
"name": "Memory Allocation",
"value": "3840"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "1e82eb15-206e-4759-bf4d-de83d2128eec",
"name": "sles11",
"href": "/systems/1e82eb15-206e-4759-bf4d-de83d2128eec",
"resource_id": "1705308224411999885",
"type": "vm",
"platform_model": "custom-1-1536",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1536",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "29.9"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1536.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : aevrenoz"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 21:02:05 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "sles-sap-12"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "aevrenoz"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "414b9a5c-5ea1-40bd-957d-74dff7db6ebe",
"name": "redhat7",
"href": "/systems/414b9a5c-5ea1-40bd-957d-74dff7db6ebe",
"resource_id": "9084552696003894952",
"type": "vm",
"platform_model": "custom-1-1536",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "1536",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "29.9"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "1536.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : aevrenoz"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 21:02:05 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "rhel-7-server"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "aevrenoz"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-c"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "d5d9b4a4-2fc4-40ab-bd32-aee10f741e27",
"name": "jltest-t2a",
"href": "/systems/d5d9b4a4-2fc4-40ab-bd32-aee10f741e27",
"resource_id": "323131876235696497",
"type": "vm",
"platform_model": "t2a-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "4096",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2023-03-13 00:00:00"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "1.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "48.85"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "4096.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 21:02:07 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "debian-11-bullseye"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
}
]
},
{
"id": "bac3affc-57db-3d1a-813d-cb6863a68cd0",
"name": "gke-cluster-1-pool-1-e2bc114b-mhc5",
"href": "/systems/bac3affc-57db-3d1a-813d-cb6863a68cd0",
"resource_id": "6612259355414451097",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"attributes": [
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-location : us-central1-a"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-name : cluster-1"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-uid : daede88bc44dce0f8c568f02820420e581c2b6d79a09c0e20d7c61523ab27671"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "configure-sh : #!/usr/bin/env bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "created-by : projects/341260897916/zones/us-central1-a/instanceGroupManagers/gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "disable-legacy-endpoints : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-metrics-enabled : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-update-strategy : update_disabled"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "google-compute-enable-pcid : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "instance-template : projects/341260897916/global/instanceTemplates/gke-cluster-1-pool-1-d3c1d4b2"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-env : ALLOCATE_NODE_CIDRS: \"true\"\nAPI_SERVER_TEST_LOG_LEVEL: --v=3\nAUTOSCALER_ENV_VARS: kube_reserved=cpu=60m,memory=960Mi,ephemeral-storage=41Gi;node_labels=cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-labels : cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,cloud.google.com/gke-cpu-scaling-level=1,cloud.google.com/gke-logging-variant=DEFAULT,cloud.google.com/gke-max-pods-per-node=110,cloud.google.com/gke"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kubelet-config : apiVersion: kubelet.config.k8s.io/v1beta1\nauthentication:\n anonymous:\n enabled: false\n webhook:\n enabled: true\n x509:\n clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt\nauthorization:\n mode: Webhook\ncgroupRoot: /\nclust"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "serial-port-logging-enable : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "user-data : #cloud-config\n\nusers:\n - name: kube-bootstrap-logs-forwarder\n gecos: User the kube-bootstrap-logs-forwarder.service runs as.\n system: true\n\nwrite_files:\n - path: /etc/systemd/system/kube-bootstrap-logs-forwarder.service\n permissions:"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-gke-node : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-location : us-central1-a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-name : cluster-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-node-pool-name : pool-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : kgillan"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "gke-cluster-1-pool-1-e2bc114b-grp"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "cos, cos-pcid, gke-node, shielded-cos"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
}
]
},
{
"id": "acf1b3e5-2688-3d32-9446-c2ec7ea51620",
"name": "gke-cluster-1-pool-2-cd3fb934-t35j",
"href": "/systems/acf1b3e5-2688-3d32-9446-c2ec7ea51620",
"resource_id": "5038738334939781645",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"attributes": [
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-location : us-central1-a"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-name : cluster-1"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-uid : daede88bc44dce0f8c568f02820420e581c2b6d79a09c0e20d7c61523ab27671"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "configure-sh : #!/usr/bin/env bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "created-by : projects/341260897916/zones/us-central1-a/instanceGroupManagers/gke-cluster-1-pool-2-cd3fb934-grp"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "disable-legacy-endpoints : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-metrics-enabled : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-update-strategy : update_disabled"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "google-compute-enable-pcid : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "instance-template : projects/341260897916/global/instanceTemplates/gke-cluster-1-pool-2-03a30d19"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-env : ALLOCATE_NODE_CIDRS: \"true\"\nAPI_SERVER_TEST_LOG_LEVEL: --v=3\nAUTOSCALER_ENV_VARS: kube_reserved=cpu=60m,memory=960Mi,ephemeral-storage=41Gi;node_labels=cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-labels : cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,cloud.google.com/gke-cpu-scaling-level=1,cloud.google.com/gke-logging-variant=DEFAULT,cloud.google.com/gke-max-pods-per-node=110,cloud.google.com/gke"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kubelet-config : apiVersion: kubelet.config.k8s.io/v1beta1\nauthentication:\n anonymous:\n enabled: false\n webhook:\n enabled: true\n x509:\n clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt\nauthorization:\n mode: Webhook\ncgroupRoot: /\nclust"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "serial-port-logging-enable : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "user-data : #cloud-config\n\nusers:\n - name: kube-bootstrap-logs-forwarder\n gecos: User the kube-bootstrap-logs-forwarder.service runs as.\n system: true\n\nwrite_files:\n - path: /etc/systemd/system/kube-bootstrap-logs-forwarder.service\n permissions:"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-gke-node : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-location : us-central1-a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-name : cluster-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-node-pool-name : pool-2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : kgillan"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "gke-cluster-1-pool-2-cd3fb934-grp"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "cos, cos-pcid, gke-node, shielded-cos"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
}
]
},
{
"id": "9c0c9db0-f91f-462f-8010-456dc849d281",
"name": "test-n2-cust-2x9",
"href": "/systems/9c0c9db0-f91f-462f-8010-456dc849d281",
"resource_id": "1073026121391065785",
"type": "vm",
"platform_model": "n2-custom-2-9216",
"platform": "GCP",
"total_physical_cpus": "2",
"cores_per_cpu": "1",
"memory": "9216",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "2.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "74.58"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "9216.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : aevrenoz"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 21:02:07 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "debian-9-stretch"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "aevrenoz"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "1e53ac28-cc70-4c02-afad-a01bde03bd92",
"name": "test-n2d-cust-4x5",
"href": "/systems/1e53ac28-cc70-4c02-afad-a01bde03bd92",
"resource_id": "895295310916143694",
"type": "vm",
"platform_model": "n2d-custom-4-5120",
"platform": "GCP",
"total_physical_cpus": "4",
"cores_per_cpu": "1",
"memory": "5120",
"attributes": [
{
"id": "attr_BasePerformanceCINT2006Rate",
"name": "Base Performance CINT2006Rate",
"value": "-1.0"
},
{
"id": "attr_CPUUtil(%)Limit",
"name": "CPU Util (%) Limit",
"value": "95.0"
},
{
"id": "attr_DiskIO(Bytes)Limit",
"name": "Disk IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_DiskIO(Ops)Limit",
"name": "Disk IO (Ops) Limit",
"value": "100000.0"
},
{
"id": "attr_ExistingCPUAllocation",
"name": "Existing CPU Allocation",
"value": "4.0"
},
{
"id": "attr_ExistingCPUBenchmark",
"name": "Existing CPU Benchmark",
"value": "145.36"
},
{
"id": "attr_ExistingMemoryAllocation",
"name": "Existing Memory Allocation",
"value": "5120.0"
},
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_MemUtil(%)",
"name": "Mem Util (%)",
"value": "85.0"
},
{
"id": "attr_MemUtil(%)Limit",
"name": "Mem Util (%) Limit",
"value": "100.0"
},
{
"id": "attr_NetworkIO(Bytes)Limit",
"name": "Network IO (Bytes) Limit",
"value": "1.0E9"
},
{
"id": "attr_NetworkIO(Packets)Limit",
"name": "Network IO (Packets) Limit",
"value": "1000000.0"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0"
},
{
"id": "attr_RA_MU",
"name": "RA_MU",
"value": "85.0"
},
{
"id": "attr_RAExclusionReason",
"name": "RA Exclusion Reason",
"value": "Missing Workload"
},
{
"id": "attr_RATargetType",
"name": "RA Target Type",
"value": "*** Missing Workload ***"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : aevrenoz"
},
{
"id": "attr_SizingNotes",
"name": "Sizing Notes",
"value": "Sized via fallback workload"
},
{
"id": "attr_TargetEnvironment",
"name": "Target Environment",
"value": "Unable to Process"
},
{
"id": "attr_TransformLastRefreshed",
"name": "Transform Last Refreshed",
"value": "May 27 2023, 21:02:07 EDT"
},
{
"id": "attr_TransformScenario",
"name": "Transform Scenario",
"value": "pm-testing-160714"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "debian-9-stretch"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "aevrenoz"
},
{
"id": "state_power",
"name": "Power State",
"value": "Offline"
},
{
"id": "tier1_account_breakdown",
"name": "Tier 1 Account Breakdown",
"value": "pm-testing-160714-Tier1"
},
{
"id": "tier2_account_breakdown",
"name": "Tier 2 Account Breakdown",
"value": "pm-testing-160714-Tier2"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "us-central1-a"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "us-central1"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "pm-testing-160714"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "GCP"
}
]
},
{
"id": "ab39444f-5ab7-3777-87c8-4463996d6e0a",
"name": "gke-cluster-1-pool-2-cd3fb934-x762",
"href": "/systems/ab39444f-5ab7-3777-87c8-4463996d6e0a",
"resource_id": "1710274268360892206",
"type": "vm",
"platform_model": "n1-standard-1",
"platform": "GCP",
"total_physical_cpus": "1",
"cores_per_cpu": "1",
"memory": "3840",
"attributes": [
{
"id": "attr_insufficient_workload",
"name": "Insufficient Workload",
"value": "true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-location : us-central1-a"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-name : cluster-1"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "cluster-uid : daede88bc44dce0f8c568f02820420e581c2b6d79a09c0e20d7c61523ab27671"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "configure-sh : #!/usr/bin/env bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "created-by : projects/341260897916/zones/us-central1-a/instanceGroupManagers/gke-cluster-1-pool-2-cd3fb934-grp"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "disable-legacy-endpoints : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-metrics-enabled : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "gci-update-strategy : update_disabled"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "google-compute-enable-pcid : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "instance-template : projects/341260897916/global/instanceTemplates/gke-cluster-1-pool-2-09677cba"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-env : ALLOCATE_NODE_CIDRS: \"true\"\nAPI_SERVER_TEST_LOG_LEVEL: --v=3\nAUTOSCALER_ENV_VARS: kube_reserved=cpu=60m,memory=960Mi,ephemeral-storage=41Gi;node_labels=cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kube-labels : cloud.google.com/gke-boot-disk=pd-standard,cloud.google.com/gke-container-runtime=containerd,cloud.google.com/gke-cpu-scaling-level=1,cloud.google.com/gke-logging-variant=DEFAULT,cloud.google.com/gke-max-pods-per-node=110,cloud.google.com/gke"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "kubelet-config : apiVersion: kubelet.config.k8s.io/v1beta1\nauthentication:\n anonymous:\n enabled: false\n webhook:\n enabled: true\n x509:\n clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt\nauthorization:\n mode: Webhook\ncgroupRoot: /\nclust"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "serial-port-logging-enable : true"
},
{
"id": "attr_resource_metadata",
"name": "Resource Metadata",
"value": "user-data : #cloud-config\n\nusers:\n - name: kube-bootstrap-logs-forwarder\n gecos: User the kube-bootstrap-logs-forwarder.service runs as.\n system: true\n\nwrite_files:\n - path: /etc/systemd/system/kube-bootstrap-logs-forwarder.service\n permissions:"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-gke-node : "
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-location : us-central1-a"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-cluster-name : cluster-1"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "goog-k8s-node-pool-name : pool-2"
},
{
"id": "attr_resource_tags",
"name": "Resource Tags",
"value": "owner : kgillan"
},
{
"id": "aws:autoscaling:groupName",
"name": "Auto Scaling Group",
"value": "gke-cluster-1-pool-2-cd3fb934-grp"
},
{
"id": "aws:licensemodel",
"name": "License model",
"value": "cos, cos-pcid, gke-node, shielded-cos"
},
{
"id": "aws:lifecycle",
"name": "Life Cycle",
"value": "normal"
},
{
"id": "CLD.OWNER",
"name": "Owner",
"value": "kgillan"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
}
]
}
]
description: |-
After detailed analysis of your cloud environment, Kubex generates recommendations to help you reduce risk and cost.
The next step is to decide which recommendations to action. Kubex provides useful additional details. The following requests demonstrate some of the available options.
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
description: |-
Before Kubex can make recommendations for optimizing your GCP environment, data collection must be initiated. Once your instance data begins rolling in, the analysis are performed and recommendations generated.
See [Optimizing GCP Compute Engine Instances](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_GCP_Compute_Engine_Instances.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
description: The analysis process is initiated automatically after data collection completes. Results can be immediately pulled from the Kubex API or pushed to a webhook URI once the analysis is complete.
- name: 3. Analyzing Containers
item:
- name: 3.1 Analyzing Kubernetes
item:
- name: 3.1.1 Kubernetes Setup
item:
- name: List Containers Policies
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/containers/kubernetes/policy?details=true"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- containers
- kubernetes
- policy
query:
- key: details
value: "true"
description: |-
_This is an optional step as the analysis runs with the default policy if no policy is specified._
Kubex Policy affects recommendations. You have a choice of policies ranging from more aggressive (lowest operating cost, a bit of work on your end for review) to more conservative (more modest operating cost savings, minimal to no work on your end for review).
Regardless of which policy you choose, Kubex recommendations are always safe. Most can be fully automated with an orchestration tool of your choice.
Note:
> Currently for Kubernetes you need to contact your Kubex Advisor to make changes to the policy.
See example. Refer to Kubex Online Help [Policy](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Policy.htm)
response:
- name: Review Policy
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: https://your_densify_instance::443/api/v2/analysis/containers/kubernetes/policy?details=true
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- containers
- kubernetes
- policy
query:
- key: details
value: "true"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "354"
- key: Date
value: Wed, 27 Feb 2019 12:29:02 GMT
cookie: []
body: |-
[
{
"policyId": "a60759dd-d2f4-4319-90a2-6f85ff5872ad",
"policyInstanceId": "094d9c96-4802-4689-a260-ab4c08ee6123",
"name": "Initial Assessment",
"description": "Policy that is focused on producing end-state recommendations as opposed to gradual changes. Intended for short term assessment when recommendations are validated and confirmed before being applied."
}
]
description: In this section you will get a listing of available polices that can be used when analyzing your collected data.
- name: 3.1.2 Kubernetes Data Collection and Analysis
item:
- name: Setup of Data Collection
request:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/api/ping"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- api
- ping
description: |-
_This Ping request is a no-op and simply a placeholder for somewhere to hang a description_.
---
For Kubernetes _data collection_, you need to have an existing monitoring and metrics collection service. Prometheus, cAdvisor, kube-state-metrics and optionally node-exporter are used.
With Prometheus providing the aggregation layer, a Kubex _Data Forwarder_ container securely transmits the collected data to your Kubex instance for analysis.
Your Kubex instance needs to be enabled with Data Forwarder support for Kubernetes data collection. Contact Kubex support ([Support@Densify.com](https://mailto:Support@Densify.com)) to enable Data Forwarder support.
Refer to Kubex Online Help [Data Collection for Containers](https://www.densify.com/docs/WebHelp_Densify_Cloud/Content/Data_Collection_for_Public_Cloud_Systems/Container_Data_Collection_Prerequisites.htm) for details.
response: []
- name: List all Containers Analyses
event:
- listen: test
script:
exec:
- "var firstdata = pm.response.json()[0];\r"
- pm.environment.set("analysisId", firstdata.analysisId);
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/containers/kubernetes"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- containers
- kubernetes
description: |-
Returns a list of all existing Kubernetes analyses, with associated references and status.
The elements `analysisResults`, `analysisStatus` and `analysisId` are commonly used in many other requests.
Note:
> In this example, the environment variable `analysisId` is set to the first returned _analysisId_ element for future use.
See example. Refer to Kubex Online Help [Analysis Entity](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Entity.htm)
response:
- name: List all Generated Analyses
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: https://your_densify_instance:443/api/v2/analysis/containers/kubernetes
protocol: https
host:
- your_densify_instance
port: "443"
path:
- api
- v2
- analysis
- containers
- kubernetes
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Fri, 04 Sep 2020 18:23:05 GMT
cookie: []
body: |-
[
{
"policyInstanceId": "094d9c96-4802-4689-a260-ab4c08ee6123",
"analysisCompletedOn": 1585725429013,
"analysisResults": "/analysis/containers/kubernetes/519a1b9f-aae0-4b65-bb63-1180ff68d27a/results",
"policyName": "Initial Assessment",
"analysisId": "519a1b9f-aae0-4b65-bb63-1180ff68d27a",
"href": "/analysis/containers/kubernetes/519a1b9f-aae0-4b65-bb63-1180ff68d27a",
"analysisStatus": "/analysis/containers/kubernetes/519a1b9f-aae0-4b65-bb63-1180ff68d27a/status",
"analysisName": "kube-master"
},
{
"policyInstanceId": "094d9c96-4802-4689-a260-ab4c08ee6123",
"analysisCompletedOn": 1585725434757,
"analysisResults": "/analysis/containers/kubernetes/8334887b-59ca-42a4-a241-f970d7c306f1/results",
"policyName": "Initial Assessment",
"analysisId": "8334887b-59ca-42a4-a241-f970d7c306f1",
"href": "/analysis/containers/kubernetes/8334887b-59ca-42a4-a241-f970d7c306f1",
"analysisStatus": "/analysis/containers/kubernetes/8334887b-59ca-42a4-a241-f970d7c306f1/status",
"analysisName": "mini-kube"
},
{
"policyInstanceId": "094d9c96-4802-4689-a260-ab4c08ee6123",
"analysisCompletedOn": 1585725792413,
"analysisResults": "/analysis/containers/kubernetes/2e39b310-edec-49ff-9285-44967cbaad62/results",
"policyName": "Initial Assessment",
"analysisId": "2e39b310-edec-49ff-9285-44967cbaad62",
"href": "/analysis/containers/kubernetes/2e39b310-edec-49ff-9285-44967cbaad62",
"analysisStatus": "/analysis/containers/kubernetes/2e39b310-edec-49ff-9285-44967cbaad62/status",
"analysisName": "ekspreproduseast2"
},
{
"policyInstanceId": "094d9c96-4802-4689-a260-ab4c08ee6123",
"analysisCompletedOn": 1585725417963,
"analysisResults": "/analysis/containers/kubernetes/27af69b8-2f0b-4d2f-b255-99052402774c/results",
"policyName": "Initial Assessment",
"analysisId": "27af69b8-2f0b-4d2f-b255-99052402774c",
"href": "/analysis/containers/kubernetes/27af69b8-2f0b-4d2f-b255-99052402774c",
"analysisStatus": "/analysis/containers/kubernetes/27af69b8-2f0b-4d2f-b255-99052402774c/status",
"analysisName": "k8master"
},
{
"policyInstanceId": "ec6d6f97-d933-47d6-812e-ab951f5717ed",
"analysisCompletedOn": 1594234424337,
"analysisResults": "/analysis/containers/kubernetes/665dede3-78fb-4535-a3f4-0dc4e5009c12/results",
"policyName": "Copy of Initial Assessment",
"analysisId": "665dede3-78fb-4535-a3f4-0dc4e5009c12",
"href": "/analysis/containers/kubernetes/665dede3-78fb-4535-a3f4-0dc4e5009c12",
"analysisStatus": "/analysis/containers/kubernetes/665dede3-78fb-4535-a3f4-0dc4e5009c12/status",
"analysisName": "eks-prod-cluster-us-east2"
},
{
"policyInstanceId": "094d9c96-4802-4689-a260-ab4c08ee6123",
"analysisCompletedOn": 1593599822503,
"analysisResults": "/analysis/containers/kubernetes/c095f7b4-20b4-4987-988a-0de49dd63e39/results",
"policyName": "Initial Assessment",
"analysisId": "c095f7b4-20b4-4987-988a-0de49dd63e39",
"href": "/analysis/containers/kubernetes/c095f7b4-20b4-4987-988a-0de49dd63e39",
"analysisStatus": "/analysis/containers/kubernetes/c095f7b4-20b4-4987-988a-0de49dd63e39/status",
"analysisName": "eks-prod-eu-west-3"
},
{
"policyInstanceId": "094d9c96-4802-4689-a260-ab4c08ee6123",
"analysisCompletedOn": 1593599692443,
"analysisResults": "/analysis/containers/kubernetes/41cc0941-ba2f-452c-93a0-546a3b929150/results",
"policyName": "Initial Assessment",
"analysisId": "41cc0941-ba2f-452c-93a0-546a3b929150",
"href": "/analysis/containers/kubernetes/41cc0941-ba2f-452c-93a0-546a3b929150",
"analysisStatus": "/analysis/containers/kubernetes/41cc0941-ba2f-452c-93a0-546a3b929150/status",
"analysisName": "iks-prod-eu-de"
},
{
"policyInstanceId": "094d9c96-4802-4689-a260-ab4c08ee6123",
"analysisCompletedOn": 1593599738937,
"analysisResults": "/analysis/containers/kubernetes/ae60c6b1-423e-47a7-9167-a4e17cf57c56/results",
"policyName": "Initial Assessment",
"analysisId": "ae60c6b1-423e-47a7-9167-a4e17cf57c56",
"href": "/analysis/containers/kubernetes/ae60c6b1-423e-47a7-9167-a4e17cf57c56",
"analysisStatus": "/analysis/containers/kubernetes/ae60c6b1-423e-47a7-9167-a4e17cf57c56/status",
"analysisName": "iks-prod-us-south"
}
]
- name: Get Analysis Status
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
name: Content-Type
type: text
value: application/json
- key: Content-Type
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/containers/kubernetes/{{analysisId}}/status"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- containers
- kubernetes
- "{{analysisId}}"
- status
description: |-
Check Kubernetes analysis status.
_This requests will only return data after the initial data collection has completed_
Note:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
See example. Refer to Kubex Online Help [Analysis Status](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Status.htm)
response:
- name: Get Analysis Status
originalRequest:
method: GET
header:
- key: Accept
name: Content-Type
type: text
value: application/json
- key: Content-Type
value: application/json
url:
raw: https://your_densify_instance::443/api/v2/analysis/containers/kubernetes/8334887b-59ca-42a4-a241-f970d7c306f1/status
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- containers
- kubernetes
- 8334887b-59ca-42a4-a241-f970d7c306f1
- status
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "137"
- key: Date
value: Wed, 27 Feb 2019 12:27:46 GMT
cookie: []
body: |-
{
"analysisStage": "Completed",
"webHookStatus": "",
"statusMessage": "Analysis mini-kube was last completed on Wed Feb 27 05:17:07 EST 2019."
}
description: |-
Before initiating data collection you must configure metrics collection as outlined in [Data Collection for Containers](https://www.densify.com/docs/WebHelp_Densify_Cloud/Content/Data_Collection_for_Public_Cloud_Systems/Container_Data_Collection_Prerequisites.htm).
The analysis process is initiated after data is ingested into the Kubex data model. Results can be pulled from the Kubex API or pushed to a webhook URI once the analysis is complete. See [Optimizing Kubernetes Containers](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_Kubernetes_Containers.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 3.1.3 Kubernetes Analysis Results
item:
- name: Get Analysis Container List
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/containers/kubernetes/{{analysisId}}/systems"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- containers
- kubernetes
- "{{analysisId}}"
- systems
description: |-
Return a collection of all containers included in the optimization analysis.
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
> In this example, the environment variable `entityId` is set to the first returned _entityId_ element for future use.
See example. Refer to Kubex Online Help [Kubernetes Analysis Container Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Kubernetes_Systems.htm).
response:
- name: Get Analysis Container List
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: https://your_densify_instance::443/api/v2/analysis/containers/kubernetes/your_analysis_id/systems
protocol: https
host:
- "your_densify_instance:"
port: "443"
path:
- api
- v2
- analysis
- containers
- kubernetes
- your_analysis_id
- systems
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Tue, 23 Jun 2020 15:57:56 GMT
cookie: []
body: |-
[
{
"hostName": "4b1ce9da-9fab-3d61-93e9-16de6ca4bc44",
"displayName": "resource-consumer-744fd9db88__resource-consumer",
"entityId": "9afa3453-786c-4535-a1e4-831840a155d4",
"href": "/systems/9afa3453-786c-4535-a1e4-831840a155d4"
},
{
"hostName": "4383aed9-6679-3eed-884a-f453086e194b",
"displayName": "hamster-84f899bddb__hamster",
"entityId": "9a1b4605-f5e5-4ac6-aad4-80ed40f784e8",
"href": "/systems/9a1b4605-f5e5-4ac6-aad4-80ed40f784e8"
},
{
"hostName": "56d85c60-94f2-388f-9e2b-74c5afa75beb",
"displayName": "kube-scheduler-kube-master.int.cirba.com__kube-scheduler",
"entityId": "943db157-6dfc-4fa8-87c3-b2d7f5545aa5",
"href": "/systems/943db157-6dfc-4fa8-87c3-b2d7f5545aa5"
},
{
"hostName": "eb455b9e-d208-3bde-9e0f-53e23ed91425",
"displayName": "kube-state-metrics-5d44cbfbf4__addon-resizer",
"entityId": "831d8f42-b7bf-4f6c-899c-1412144124f4",
"href": "/systems/831d8f42-b7bf-4f6c-899c-1412144124f4"
},
{
"hostName": "399bfa49-1e67-3db7-8d2c-21e2575c30f1",
"displayName": "kube-dns-6f4fd4bdf__kubedns",
"entityId": "80e3af3e-414d-4a27-8fb6-69a7525d2762",
"href": "/systems/80e3af3e-414d-4a27-8fb6-69a7525d2762"
},
{
"hostName": "9082bb51-6e4a-3ffd-814c-b0661056d4f1",
"displayName": "vpa-recommender-5dfc7669f7__recommender",
"entityId": "800c2185-ebd8-45b0-a69e-e2405d48a0f1",
"href": "/systems/800c2185-ebd8-45b0-a69e-e2405d48a0f1"
},
{
"hostName": "0b0a0f41-03a6-3a1e-b0d3-435acda8ecf0",
"displayName": "monitoring-influxdb-66946c9f58__influxdb",
"entityId": "7a6b802a-6a30-490b-9d45-c7a61bfc8548",
"href": "/systems/7a6b802a-6a30-490b-9d45-c7a61bfc8548"
},
{
"hostName": "98e929c2-df31-30cb-a3ed-25d2d6454ee7",
"displayName": "kube-dns-6f4fd4bdf__dnsmasq",
"entityId": "799f626f-c98f-4c5a-b789-38e311390603",
"href": "/systems/799f626f-c98f-4c5a-b789-38e311390603"
},
{
"hostName": "e82e3415-e2f2-3c50-a9f2-d53956207bc7",
"displayName": "kube-dns-6f4fd4bdf__sidecar",
"entityId": "77c5ee0f-08ea-4e7d-8414-dc7d961ae234",
"href": "/systems/77c5ee0f-08ea-4e7d-8414-dc7d961ae234"
},
{
"hostName": "86a8ac8a-a58b-3830-9abe-dfdeca2bbb30",
"displayName": "vertical-scaling-test-79c97b664b__ubuntu",
"entityId": "75d11eda-e181-4f69-8b3d-ce6726c87bfc",
"href": "/systems/75d11eda-e181-4f69-8b3d-ce6726c87bfc"
},
{
"hostName": "74f3d0e1-cf28-303a-80bf-873f93e8b8fc",
"displayName": "web1__python",
"entityId": "34423e35-bb85-49a4-8efb-5aad5e98ac62",
"href": "/systems/34423e35-bb85-49a4-8efb-5aad5e98ac62"
},
{
"hostName": "6bf519be-dd5c-3f4b-bbb4-fb07cfe70508",
"displayName": "nginx2__nginx2",
"entityId": "3284ffd7-0548-44e0-ba53-0cbc37623582",
"href": "/systems/3284ffd7-0548-44e0-ba53-0cbc37623582"
},
{
"hostName": "ae61f1c3-e31a-3ec1-9fd8-d0899eb3f26e",
"displayName": "nginx2__nginx2",
"entityId": "2a25d840-63d8-4e7f-9121-1fca9a7fd7bb",
"href": "/systems/2a25d840-63d8-4e7f-9121-1fca9a7fd7bb"
},
{
"hostName": "583719fc-9fb4-32fa-8d38-19aa539840c6",
"displayName": "terraform-example__example",
"entityId": "23804c61-3cc0-4c2f-93a4-9d94cb8f614d",
"href": "/systems/23804c61-3cc0-4c2f-93a4-9d94cb8f614d"
},
{
"hostName": "5e70451d-a736-3a9e-a338-4dfaebfd69da",
"displayName": "metrics-server-bb9ffc6b8__metrics-server",
"entityId": "13be3a74-f5c5-4237-9dfd-dcf30e042c6d",
"href": "/systems/13be3a74-f5c5-4237-9dfd-dcf30e042c6d"
},
{
"hostName": "33d0c4a7-a915-3cc8-80cf-19729e8b091c",
"displayName": "kubernetes-dashboard-845747bdd4__kubernetes-dashboard",
"entityId": "095f1e58-9646-4fcc-bda8-17b0334cf8d6",
"href": "/systems/095f1e58-9646-4fcc-bda8-17b0334cf8d6"
},
{
"hostName": "2e021430-5b65-307c-b049-3c0edca9be43",
"displayName": "kube-controller-manager-kube-master.int.cirba.com__kube-controller-manager",
"entityId": "07332024-c7c0-48d7-99e4-211e2e4411db",
"href": "/systems/07332024-c7c0-48d7-99e4-211e2e4411db"
},
{
"hostName": "e74c16ee-1f7c-3e40-bdfa-75f33de36405",
"displayName": "kube-apiserver-kube-master.int.cirba.com__kube-apiserver",
"entityId": "7bdf1b52-a4ac-4328-94c5-67bfa0ea95b4",
"href": "/systems/7bdf1b52-a4ac-4328-94c5-67bfa0ea95b4"
},
{
"hostName": "4bfc26dc-55e7-3d06-a00f-5f15d3fc4ef7",
"displayName": "load-generator-5c4d59d5dd__load-generator",
"entityId": "fafd7688-1141-46cc-a9ce-b8b5d6fbb47e",
"href": "/systems/fafd7688-1141-46cc-a9ce-b8b5d6fbb47e"
},
{
"hostName": "aa99f4de-2363-397c-9006-92349684fdc8",
"displayName": "vpa-admission-controller-6b758d8678__admission-controller",
"entityId": "f50430cd-f612-4c94-a17a-fa56c1dffc87",
"href": "/systems/f50430cd-f612-4c94-a17a-fa56c1dffc87"
},
{
"hostName": "06ac76d1-a565-3f4a-9246-7f3a580d5766",
"displayName": "prometheus-deployment-58f5ffc5f5__prometheus",
"entityId": "5c5bd411-92c9-4342-ae78-0c58475ee3e3",
"href": "/systems/5c5bd411-92c9-4342-ae78-0c58475ee3e3"
},
{
"hostName": "05df73a5-3b97-3ced-978c-de50a70f1577",
"displayName": "php-apache-7ccc68c5cd__php-apache",
"entityId": "5bf7ab4e-c735-4070-9875-ba63a9b3f9da",
"href": "/systems/5bf7ab4e-c735-4070-9875-ba63a9b3f9da"
},
{
"hostName": "cc516fb3-46f3-3ac6-8720-c526c3da8367",
"displayName": "heapster-5c448886d__heapster",
"entityId": "581f2bcc-f627-4b38-86de-8f849b87d92f",
"href": "/systems/581f2bcc-f627-4b38-86de-8f849b87d92f"
},
{
"hostName": "f1ce7df1-0e6c-31de-8f07-693ea42b4786",
"displayName": "load-generator2-765d6954b8__load-generator2",
"entityId": "e129d144-16d5-4c53-974a-8eb4c044f0d2",
"href": "/systems/e129d144-16d5-4c53-974a-8eb4c044f0d2"
},
{
"hostName": "f0ae2433-6f24-3172-a482-13b2c2222727",
"displayName": "prom-node-exporter__prom-node-exporter",
"entityId": "b5954d8e-363c-44ac-aa24-74c84eed738b",
"href": "/systems/b5954d8e-363c-44ac-aa24-74c84eed738b"
},
{
"hostName": "62af70a5-1ff9-3313-b5e3-8b20b076abee",
"displayName": "nginx2__nginx2",
"entityId": "de2667f6-9971-419f-86f5-ce0fb19e5dfe",
"href": "/systems/de2667f6-9971-419f-86f5-ce0fb19e5dfe"
},
{
"hostName": "78629878-c06d-31d2-be8b-e59dbde74057",
"displayName": "nginx2__nginx2",
"entityId": "bd6e0ace-7196-45dd-904c-a4a5e257771c",
"href": "/systems/bd6e0ace-7196-45dd-904c-a4a5e257771c"
},
{
"hostName": "5cbb3448-2cd2-36b0-b2a7-68edae103303",
"displayName": "monitoring-grafana-65757b9656__grafana",
"entityId": "b8533fd5-3dce-4888-976c-daec3bcf0883",
"href": "/systems/b8533fd5-3dce-4888-976c-daec3bcf0883"
},
{
"hostName": "86ed1968-2c7d-3a04-961a-8542f1808bdc",
"displayName": "etcd-kube-master.int.cirba.com__etcd",
"entityId": "4fda6d56-790b-4c19-8f39-b2de710ceeaf",
"href": "/systems/4fda6d56-790b-4c19-8f39-b2de710ceeaf"
},
{
"hostName": "6e35fbf2-ebc8-3ec1-bf5f-1a47d067ea19",
"displayName": "kube-proxy__kube-proxy",
"entityId": "4b2e1117-31db-443f-a230-c14bf890f252",
"href": "/systems/4b2e1117-31db-443f-a230-c14bf890f252"
},
{
"hostName": "a1dc3660-d9d9-3216-ab1b-47a5905bdc46",
"displayName": "hamster2-6586bc859f__hamster2",
"entityId": "3dc6c9f4-12b7-45e3-8a8c-244b6ae536d5",
"href": "/systems/3dc6c9f4-12b7-45e3-8a8c-244b6ae536d5"
},
{
"hostName": "6a648919-aee5-3230-a868-beddf90c5b56",
"displayName": "vpa-updater-5d596b7897__updater",
"entityId": "3c60fa0e-14b1-477e-8859-99ba46a1c6ff",
"href": "/systems/3c60fa0e-14b1-477e-8859-99ba46a1c6ff"
},
{
"hostName": "45ca6fba-efa1-37d1-86db-c74f32e28f13",
"displayName": "kube-state-metrics-5d44cbfbf4__kube-state-metrics",
"entityId": "dd9f0108-d0ac-40f7-b830-26507b297e15",
"href": "/systems/dd9f0108-d0ac-40f7-b830-26507b297e15"
},
{
"hostName": "06a33729-2bd9-3717-aa5b-965c22ad9f2a",
"displayName": "densify1__data-forwarder",
"entityId": "b1253c3b-16fe-47b5-b4db-6a72f541ab7e",
"href": "/systems/b1253c3b-16fe-47b5-b4db-6a72f541ab7e"
},
{
"hostName": "bda5b741-27f9-3a97-96ef-a89115508706",
"displayName": "kube-flannel-ds__kube-flannel",
"entityId": "c31aabb0-db80-44e4-ac1b-09d74673e3d6",
"href": "/systems/c31aabb0-db80-44e4-ac1b-09d74673e3d6"
},
{
"hostName": "e1c88d82-dd64-38b2-83e8-8d7b33f88c7d",
"displayName": "bit-of-nothing-7ccff9f74d__bitty",
"entityId": "628dd09a-cf98-443e-8e63-66db4b1268d1",
"href": "/systems/628dd09a-cf98-443e-8e63-66db4b1268d1"
}
]
- name: Get Analysis Recommendations (JSON)
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/containers/kubernetes/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- containers
- kubernetes
- "{{analysisId}}"
- results
description: |-
Retrieves the latest Kubernetes recommendations. The output is available in JSON or Terraform format.
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
> In this example, the environment variable `entityId` is set to the first returned _entityId_ element for future use.
> Use header: _Accept_ - **application/json**
See example. Refer to Kubex Online Help [Kubernetes Analysis Recommendations](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Kubernetes_Results.htm).
response:
- name: Get Analysis Recommendations (JSON)
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/containers/kubernetes/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- containers
- kubernetes
- "{{analysisId}}"
- results
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Tue, 25 Aug 2020 22:28:47 GMT
cookie: []
body: |-
[
{
"container": "addon-resizer",
"cluster": "kube-master",
"hostName": "eb455b9e-d208-3bde-9e0f-53e23ed91425",
"predictedUptime": 0.08,
"displayName": "kube-state-metrics-5d44cbfbf4__addon-resizer",
"recommLastSeen": 1597104000000,
"podService": "kube-state-metrics-5d44cbfbf4",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 6,
"recommSeenCount": 6,
"currentMemLimit": 40,
"recommendedMemLimit": 40,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 32,
"entityId": "831d8f42-b7bf-4f6c-899c-1412144124f4",
"currentCpuLimit": 10,
"recommendedMemRequest": 32,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "load-generator2",
"cluster": "kube-master",
"hostName": "f1ce7df1-0e6c-31de-8f07-693ea42b4786",
"predictedUptime": 0.08,
"displayName": "load-generator2-765d6954b8__load-generator2",
"recommLastSeen": 1597104000000,
"podService": "load-generator2-765d6954b8",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "e129d144-16d5-4c53-974a-8eb4c044f0d2",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "kube-apiserver",
"cluster": "kube-master",
"hostName": "e74c16ee-1f7c-3e40-bdfa-75f33de36405",
"predictedUptime": 0.08,
"displayName": "kube-apiserver-kube-master.int.cirba.com__kube-apiserver",
"recommLastSeen": 1597104000000,
"podService": "kube-apiserver-kube-master.int.cirba.com",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 80,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 630,
"recommendedMemLimit": 630,
"recommendationType": "Just Right",
"recommendedCpuRequest": 80,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicationController",
"currentMemRequest": 628,
"entityId": "7bdf1b52-a4ac-4328-94c5-67bfa0ea95b4",
"currentCpuLimit": 80,
"recommendedMemRequest": 628,
"currentCpuRequest": 80,
"namespace": "kube-system"
},
{
"container": "admission-controller",
"cluster": "kube-master",
"hostName": "aa99f4de-2363-397c-9006-92349684fdc8",
"predictedUptime": 0.08,
"displayName": "vpa-admission-controller-6b758d8678__admission-controller",
"recommLastSeen": 1597104000000,
"podService": "vpa-admission-controller-6b758d8678",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 156,
"recommendedMemLimit": 156,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 156,
"entityId": "f50430cd-f612-4c94-a17a-fa56c1dffc87",
"currentCpuLimit": 10,
"recommendedMemRequest": 156,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "nginx2",
"cluster": "kube-master",
"hostName": "78629878-c06d-31d2-be8b-e59dbde74057",
"predictedUptime": 0.08,
"displayName": "nginx2__nginx2",
"recommLastSeen": 1597104000000,
"podService": "nginx2",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "",
"currentMemRequest": 10,
"entityId": "bd6e0ace-7196-45dd-904c-a4a5e257771c",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default-mem-example"
},
{
"container": "nginx2",
"cluster": "kube-master",
"hostName": "62af70a5-1ff9-3313-b5e3-8b20b076abee",
"predictedUptime": 0.08,
"displayName": "nginx2__nginx2",
"recommLastSeen": 1597104000000,
"podService": "nginx2",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "Job",
"currentMemRequest": 10,
"entityId": "de2667f6-9971-419f-86f5-ce0fb19e5dfe",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "monitoring"
},
{
"container": "kube-scheduler",
"cluster": "kube-master",
"hostName": "56d85c60-94f2-388f-9e2b-74c5afa75beb",
"predictedUptime": 0.08,
"displayName": "kube-scheduler-kube-master.int.cirba.com__kube-scheduler",
"recommLastSeen": 1597104000000,
"podService": "kube-scheduler-kube-master.int.cirba.com",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 70,
"recommendedMemLimit": 70,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 66,
"entityId": "943db157-6dfc-4fa8-87c3-b2d7f5545aa5",
"currentCpuLimit": 10,
"recommendedMemRequest": 66,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "load-generator",
"cluster": "kube-master",
"hostName": "4bfc26dc-55e7-3d06-a00f-5f15d3fc4ef7",
"predictedUptime": 0.08,
"displayName": "load-generator-5c4d59d5dd__load-generator",
"recommLastSeen": 1597104000000,
"podService": "load-generator-5c4d59d5dd",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "fafd7688-1141-46cc-a9ce-b8b5d6fbb47e",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "kube-state-metrics",
"cluster": "kube-master",
"hostName": "45ca6fba-efa1-37d1-86db-c74f32e28f13",
"predictedUptime": 0.08,
"displayName": "kube-state-metrics-5d44cbfbf4__kube-state-metrics",
"recommLastSeen": 1597104000000,
"podService": "kube-state-metrics-5d44cbfbf4",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 6,
"recommSeenCount": 6,
"currentMemLimit": 46,
"recommendedMemLimit": 46,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 44,
"entityId": "dd9f0108-d0ac-40f7-b830-26507b297e15",
"currentCpuLimit": 10,
"recommendedMemRequest": 44,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "hamster",
"cluster": "kube-master",
"hostName": "4383aed9-6679-3eed-884a-f453086e194b",
"predictedUptime": 0.08,
"displayName": "hamster-84f899bddb__hamster",
"recommLastSeen": 1597104000000,
"podService": "hamster-84f899bddb",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "9a1b4605-f5e5-4ac6-aad4-80ed40f784e8",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "kubedns",
"cluster": "kube-master",
"hostName": "399bfa49-1e67-3db7-8d2c-21e2575c30f1",
"predictedUptime": 0.08,
"displayName": "kube-dns-6f4fd4bdf__kubedns",
"recommLastSeen": 1597104000000,
"podService": "kube-dns-6f4fd4bdf",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 50,
"recommendedMemLimit": 50,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 48,
"entityId": "80e3af3e-414d-4a27-8fb6-69a7525d2762",
"currentCpuLimit": 10,
"recommendedMemRequest": 48,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "data-forwarder",
"recommFirstSeen": 1594080000000,
"cluster": "kube-master",
"controllerType": "ReplicaSet",
"displayName": "densify1__data-forwarder",
"recommLastSeen": 1597104000000,
"currentMemRequest": 2048,
"entityId": "b1253c3b-16fe-47b5-b4db-6a72f541ab7e",
"podService": "densify1",
"currentCpuRequest": 520,
"currentCount": 1,
"recommSeenCount": 4,
"currentMemLimit": 3584,
"namespace": "default",
"recommendationType": "Not Analyzed"
},
{
"container": "prom-node-exporter",
"cluster": "kube-master",
"hostName": "f0ae2433-6f24-3172-a482-13b2c2222727",
"predictedUptime": 0.08,
"displayName": "prom-node-exporter__prom-node-exporter",
"recommLastSeen": 1597104000000,
"podService": "prom-node-exporter",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 3,
"recommSeenCount": 6,
"currentMemLimit": 40,
"recommendedMemLimit": 40,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "DaemonSet",
"currentMemRequest": 32,
"entityId": "b5954d8e-363c-44ac-aa24-74c84eed738b",
"currentCpuLimit": 10,
"recommendedMemRequest": 32,
"currentCpuRequest": 10,
"namespace": "monitoring"
},
{
"container": "grafana",
"cluster": "kube-master",
"hostName": "5cbb3448-2cd2-36b0-b2a7-68edae103303",
"predictedUptime": 0.08,
"displayName": "monitoring-grafana-65757b9656__grafana",
"recommLastSeen": 1597104000000,
"podService": "monitoring-grafana-65757b9656",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 26,
"recommendedMemLimit": 26,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 26,
"entityId": "b8533fd5-3dce-4888-976c-daec3bcf0883",
"currentCpuLimit": 10,
"recommendedMemRequest": 26,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "resource-consumer",
"cluster": "kube-master",
"hostName": "4b1ce9da-9fab-3d61-93e9-16de6ca4bc44",
"predictedUptime": 0.08,
"displayName": "resource-consumer-744fd9db88__resource-consumer",
"recommLastSeen": 1597104000000,
"podService": "resource-consumer-744fd9db88",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "9afa3453-786c-4535-a1e4-831840a155d4",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "sidecar",
"cluster": "kube-master",
"hostName": "e82e3415-e2f2-3c50-a9f2-d53956207bc7",
"predictedUptime": 0.08,
"displayName": "kube-dns-6f4fd4bdf__sidecar",
"recommLastSeen": 1597104000000,
"podService": "kube-dns-6f4fd4bdf",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 38,
"recommendedMemLimit": 38,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 38,
"entityId": "77c5ee0f-08ea-4e7d-8414-dc7d961ae234",
"currentCpuLimit": 10,
"recommendedMemRequest": 38,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "bitty",
"cluster": "kube-master",
"hostName": "e1c88d82-dd64-38b2-83e8-8d7b33f88c7d",
"predictedUptime": 0.08,
"displayName": "bit-of-nothing-7ccff9f74d__bitty",
"recommLastSeen": 1597104000000,
"podService": "bit-of-nothing-7ccff9f74d",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "628dd09a-cf98-443e-8e63-66db4b1268d1",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "heapster",
"cluster": "kube-master",
"hostName": "cc516fb3-46f3-3ac6-8720-c526c3da8367",
"predictedUptime": 0.08,
"displayName": "heapster-5c448886d__heapster",
"recommLastSeen": 1597104000000,
"podService": "heapster-5c448886d",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 78,
"recommendedMemLimit": 78,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 78,
"entityId": "581f2bcc-f627-4b38-86de-8f849b87d92f",
"currentCpuLimit": 10,
"recommendedMemRequest": 78,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "kube-flannel",
"cluster": "kube-master",
"hostName": "bda5b741-27f9-3a97-96ef-a89115508706",
"predictedUptime": 0.08,
"displayName": "kube-flannel-ds__kube-flannel",
"recommLastSeen": 1597104000000,
"podService": "kube-flannel-ds",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 70,
"recommendedMemLimit": 70,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 62,
"entityId": "c31aabb0-db80-44e4-ac1b-09d74673e3d6",
"currentCpuLimit": 10,
"recommendedMemRequest": 62,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "hamster2",
"cluster": "kube-master",
"hostName": "a1dc3660-d9d9-3216-ab1b-47a5905bdc46",
"predictedUptime": 0.08,
"displayName": "hamster2-6586bc859f__hamster2",
"recommLastSeen": 1597104000000,
"podService": "hamster2-6586bc859f",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 60,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 55,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "3dc6c9f4-12b7-45e3-8a8c-244b6ae536d5",
"currentCpuLimit": 60,
"recommendedMemRequest": 10,
"currentCpuRequest": 55,
"namespace": "default"
},
{
"container": "dnsmasq",
"cluster": "kube-master",
"hostName": "98e929c2-df31-30cb-a3ed-25d2d6454ee7",
"predictedUptime": 0.08,
"displayName": "kube-dns-6f4fd4bdf__dnsmasq",
"recommLastSeen": 1597104000000,
"podService": "kube-dns-6f4fd4bdf",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 36,
"recommendedMemLimit": 36,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 36,
"entityId": "799f626f-c98f-4c5a-b789-38e311390603",
"currentCpuLimit": 10,
"recommendedMemRequest": 36,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "recommender",
"cluster": "kube-master",
"hostName": "9082bb51-6e4a-3ffd-814c-b0661056d4f1",
"predictedUptime": 0.08,
"displayName": "vpa-recommender-5dfc7669f7__recommender",
"recommLastSeen": 1597104000000,
"podService": "vpa-recommender-5dfc7669f7",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 770,
"recommendedMemLimit": 770,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 770,
"entityId": "800c2185-ebd8-45b0-a69e-e2405d48a0f1",
"currentCpuLimit": 10,
"recommendedMemRequest": 770,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "etcd",
"cluster": "kube-master",
"hostName": "86ed1968-2c7d-3a04-961a-8542f1808bdc",
"predictedUptime": 0.08,
"displayName": "etcd-kube-master.int.cirba.com__etcd",
"recommLastSeen": 1597104000000,
"podService": "etcd-kube-master.int.cirba.com",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 20,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 462,
"recommendedMemLimit": 462,
"recommendationType": "Just Right",
"recommendedCpuRequest": 20,
"recommFirstSeen": 1593648000000,
"controllerType": "DaemonSet",
"currentMemRequest": 458,
"entityId": "4fda6d56-790b-4c19-8f39-b2de710ceeaf",
"currentCpuLimit": 20,
"recommendedMemRequest": 458,
"currentCpuRequest": 20,
"namespace": "kube-system"
},
{
"container": "ubuntu",
"cluster": "kube-master",
"hostName": "86a8ac8a-a58b-3830-9abe-dfdeca2bbb30",
"predictedUptime": 0.08,
"displayName": "vertical-scaling-test-79c97b664b__ubuntu",
"recommLastSeen": 1597104000000,
"podService": "vertical-scaling-test-79c97b664b",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 270,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 270,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "75d11eda-e181-4f69-8b3d-ce6726c87bfc",
"currentCpuLimit": 270,
"recommendedMemRequest": 10,
"currentCpuRequest": 270,
"namespace": "default"
},
{
"container": "python",
"cluster": "kube-master",
"hostName": "74f3d0e1-cf28-303a-80bf-873f93e8b8fc",
"predictedUptime": 0.02,
"displayName": "web1__python",
"recommLastSeen": 1597104000000,
"podService": "web1",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 34,
"recommendedMemLimit": 34,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 34,
"entityId": "34423e35-bb85-49a4-8efb-5aad5e98ac62",
"currentCpuLimit": 10,
"recommendedMemRequest": 34,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "influxdb",
"cluster": "kube-master",
"hostName": "0b0a0f41-03a6-3a1e-b0d3-435acda8ecf0",
"predictedUptime": 0.08,
"displayName": "monitoring-influxdb-66946c9f58__influxdb",
"recommLastSeen": 1597104000000,
"podService": "monitoring-influxdb-66946c9f58",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 300,
"recommendedMemLimit": 300,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 298,
"entityId": "7a6b802a-6a30-490b-9d45-c7a61bfc8548",
"currentCpuLimit": 10,
"recommendedMemRequest": 298,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "nginx2",
"cluster": "kube-master",
"hostName": "ae61f1c3-e31a-3ec1-9fd8-d0899eb3f26e",
"predictedUptime": 0.08,
"displayName": "nginx2__nginx2",
"recommLastSeen": 1597104000000,
"podService": "nginx2",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "Job",
"currentMemRequest": 10,
"entityId": "2a25d840-63d8-4e7f-9121-1fca9a7fd7bb",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "nginx2",
"cluster": "kube-master",
"hostName": "6bf519be-dd5c-3f4b-bbb4-fb07cfe70508",
"predictedUptime": 0.08,
"displayName": "nginx2__nginx2",
"recommLastSeen": 1597104000000,
"podService": "nginx2",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "3284ffd7-0548-44e0-ba53-0cbc37623582",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default-cpu-example"
},
{
"container": "updater",
"cluster": "kube-master",
"hostName": "6a648919-aee5-3230-a868-beddf90c5b56",
"predictedUptime": 0.08,
"displayName": "vpa-updater-5d596b7897__updater",
"recommLastSeen": 1597104000000,
"podService": "vpa-updater-5d596b7897",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 206,
"recommendedMemLimit": 206,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 206,
"entityId": "3c60fa0e-14b1-477e-8859-99ba46a1c6ff",
"currentCpuLimit": 10,
"recommendedMemRequest": 206,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "metrics-server",
"cluster": "kube-master",
"hostName": "5e70451d-a736-3a9e-a338-4dfaebfd69da",
"predictedUptime": 0.08,
"displayName": "metrics-server-bb9ffc6b8__metrics-server",
"recommLastSeen": 1597104000000,
"podService": "metrics-server-bb9ffc6b8",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 52,
"recommendedMemLimit": 52,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 46,
"entityId": "13be3a74-f5c5-4237-9dfd-dcf30e042c6d",
"currentCpuLimit": 10,
"recommendedMemRequest": 46,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "example",
"cluster": "kube-master",
"hostName": "583719fc-9fb4-32fa-8d38-19aa539840c6",
"predictedUptime": 0.08,
"displayName": "terraform-example__example",
"recommLastSeen": 1597104000000,
"podService": "terraform-example",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicationController",
"currentMemRequest": 10,
"entityId": "23804c61-3cc0-4c2f-93a4-9d94cb8f614d",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "kubernetes-dashboard",
"cluster": "kube-master",
"hostName": "33d0c4a7-a915-3cc8-80cf-19729e8b091c",
"predictedUptime": 0.08,
"displayName": "kubernetes-dashboard-845747bdd4__kubernetes-dashboard",
"recommLastSeen": 1597104000000,
"podService": "kubernetes-dashboard-845747bdd4",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 68,
"recommendedMemLimit": 68,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 68,
"entityId": "095f1e58-9646-4fcc-bda8-17b0334cf8d6",
"currentCpuLimit": 10,
"recommendedMemRequest": 68,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "kube-controller-manager",
"cluster": "kube-master",
"hostName": "2e021430-5b65-307c-b049-3c0edca9be43",
"predictedUptime": 0.08,
"displayName": "kube-controller-manager-kube-master.int.cirba.com__kube-controller-manager",
"recommLastSeen": 1597104000000,
"podService": "kube-controller-manager-kube-master.int.cirba.com",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 30,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 152,
"recommendedMemLimit": 152,
"recommendationType": "Just Right",
"recommendedCpuRequest": 30,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicationController",
"currentMemRequest": 152,
"entityId": "07332024-c7c0-48d7-99e4-211e2e4411db",
"currentCpuLimit": 30,
"recommendedMemRequest": 152,
"currentCpuRequest": 30,
"namespace": "kube-system"
},
{
"container": "prometheus",
"cluster": "kube-master",
"hostName": "06ac76d1-a565-3f4a-9246-7f3a580d5766",
"predictedUptime": 0.08,
"displayName": "prometheus-deployment-58f5ffc5f5__prometheus",
"recommLastSeen": 1597104000000,
"podService": "prometheus-deployment-58f5ffc5f5",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 60,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 5236,
"recommendedMemLimit": 5236,
"recommendationType": "Just Right",
"recommendedCpuRequest": 60,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 5186,
"entityId": "5c5bd411-92c9-4342-ae78-0c58475ee3e3",
"currentCpuLimit": 60,
"recommendedMemRequest": 5186,
"currentCpuRequest": 60,
"namespace": "monitoring"
},
{
"container": "php-apache",
"cluster": "kube-master",
"hostName": "05df73a5-3b97-3ced-978c-de50a70f1577",
"predictedUptime": 0.08,
"displayName": "php-apache-7ccc68c5cd__php-apache",
"recommLastSeen": 1597104000000,
"podService": "php-apache-7ccc68c5cd",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 30,
"recommendedMemLimit": 30,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 26,
"entityId": "5bf7ab4e-c735-4070-9875-ba63a9b3f9da",
"currentCpuLimit": 10,
"recommendedMemRequest": 26,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "kube-proxy",
"cluster": "kube-master",
"hostName": "6e35fbf2-ebc8-3ec1-bf5f-1a47d067ea19",
"predictedUptime": 0.08,
"displayName": "kube-proxy__kube-proxy",
"recommLastSeen": 1597104000000,
"podService": "kube-proxy",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 68,
"recommendedMemLimit": 68,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 64,
"entityId": "4b2e1117-31db-443f-a230-c14bf890f252",
"currentCpuLimit": 10,
"recommendedMemRequest": 64,
"currentCpuRequest": 10,
"namespace": "kube-system"
}
]
- name: Get Analysis Recommendations (JSON) - dataQuality
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/containers/kubernetes/{{analysisId}}/results?dataQuality='Memory Utilization in Percent'"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- containers
- kubernetes
- "{{analysisId}}"
- results
query:
- key: dataQuality
value: "'Memory Utilization in Percent'"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Fri, 28 Aug 2020 21:10:48 GMT
cookie: []
body: |-
[
{
"container": "kube-controller-manager",
"cluster": "kube-master",
"hostName": "2e021430-5b65-307c-b049-3c0edca9be43",
"predictedUptime": 0.08,
"displayName": "kube-controller-manager-kube-master.int.cirba.com__kube-controller-manager",
"recommLastSeen": 1597104000000,
"podService": "kube-controller-manager-kube-master.int.cirba.com",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 30,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 152,
"recommendedMemLimit": 152,
"recommendationType": "Just Right",
"recommendedCpuRequest": 30,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicationController",
"currentMemRequest": 152,
"entityId": "07332024-c7c0-48d7-99e4-211e2e4411db",
"currentCpuLimit": 30,
"recommendedMemRequest": 152,
"currentCpuRequest": 30,
"namespace": "kube-system"
},
{
"container": "kubernetes-dashboard",
"cluster": "kube-master",
"hostName": "33d0c4a7-a915-3cc8-80cf-19729e8b091c",
"predictedUptime": 0.08,
"displayName": "kubernetes-dashboard-845747bdd4__kubernetes-dashboard",
"recommLastSeen": 1597104000000,
"podService": "kubernetes-dashboard-845747bdd4",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 68,
"recommendedMemLimit": 68,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 68,
"entityId": "095f1e58-9646-4fcc-bda8-17b0334cf8d6",
"currentCpuLimit": 10,
"recommendedMemRequest": 68,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "metrics-server",
"cluster": "kube-master",
"hostName": "5e70451d-a736-3a9e-a338-4dfaebfd69da",
"predictedUptime": 0.08,
"displayName": "metrics-server-bb9ffc6b8__metrics-server",
"recommLastSeen": 1597104000000,
"podService": "metrics-server-bb9ffc6b8",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 52,
"recommendedMemLimit": 52,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 46,
"entityId": "13be3a74-f5c5-4237-9dfd-dcf30e042c6d",
"currentCpuLimit": 10,
"recommendedMemRequest": 46,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "example",
"cluster": "kube-master",
"hostName": "583719fc-9fb4-32fa-8d38-19aa539840c6",
"predictedUptime": 0.08,
"displayName": "terraform-example__example",
"recommLastSeen": 1597104000000,
"podService": "terraform-example",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicationController",
"currentMemRequest": 10,
"entityId": "23804c61-3cc0-4c2f-93a4-9d94cb8f614d",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "nginx2",
"cluster": "kube-master",
"hostName": "ae61f1c3-e31a-3ec1-9fd8-d0899eb3f26e",
"predictedUptime": 0.08,
"displayName": "nginx2__nginx2",
"recommLastSeen": 1597104000000,
"podService": "nginx2",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "Job",
"currentMemRequest": 10,
"entityId": "2a25d840-63d8-4e7f-9121-1fca9a7fd7bb",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "nginx2",
"cluster": "kube-master",
"hostName": "6bf519be-dd5c-3f4b-bbb4-fb07cfe70508",
"predictedUptime": 0.08,
"displayName": "nginx2__nginx2",
"recommLastSeen": 1597104000000,
"podService": "nginx2",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "3284ffd7-0548-44e0-ba53-0cbc37623582",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default-cpu-example"
},
{
"container": "python",
"cluster": "kube-master",
"hostName": "74f3d0e1-cf28-303a-80bf-873f93e8b8fc",
"predictedUptime": 0.02,
"displayName": "web1__python",
"recommLastSeen": 1597104000000,
"podService": "web1",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 34,
"recommendedMemLimit": 34,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 34,
"entityId": "34423e35-bb85-49a4-8efb-5aad5e98ac62",
"currentCpuLimit": 10,
"recommendedMemRequest": 34,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "updater",
"cluster": "kube-master",
"hostName": "6a648919-aee5-3230-a868-beddf90c5b56",
"predictedUptime": 0.08,
"displayName": "vpa-updater-5d596b7897__updater",
"recommLastSeen": 1597104000000,
"podService": "vpa-updater-5d596b7897",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 206,
"recommendedMemLimit": 206,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 206,
"entityId": "3c60fa0e-14b1-477e-8859-99ba46a1c6ff",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 206,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "hamster2",
"cluster": "kube-master",
"hostName": "a1dc3660-d9d9-3216-ab1b-47a5905bdc46",
"predictedUptime": 0.08,
"displayName": "hamster2-6586bc859f__hamster2",
"recommLastSeen": 1597104000000,
"podService": "hamster2-6586bc859f",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 60,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 55,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "3dc6c9f4-12b7-45e3-8a8c-244b6ae536d5",
"currentCpuLimit": 60,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 10,
"currentCpuRequest": 55,
"namespace": "default"
},
{
"container": "kube-proxy",
"cluster": "kube-master",
"hostName": "6e35fbf2-ebc8-3ec1-bf5f-1a47d067ea19",
"predictedUptime": 0.08,
"displayName": "kube-proxy__kube-proxy",
"recommLastSeen": 1597104000000,
"podService": "kube-proxy",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 68,
"recommendedMemLimit": 68,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 64,
"entityId": "4b2e1117-31db-443f-a230-c14bf890f252",
"currentCpuLimit": 10,
"recommendedMemRequest": 64,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "etcd",
"cluster": "kube-master",
"hostName": "86ed1968-2c7d-3a04-961a-8542f1808bdc",
"predictedUptime": 0.08,
"displayName": "etcd-kube-master.int.cirba.com__etcd",
"recommLastSeen": 1597104000000,
"podService": "etcd-kube-master.int.cirba.com",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 20,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 462,
"recommendedMemLimit": 462,
"recommendationType": "Just Right",
"recommendedCpuRequest": 20,
"recommFirstSeen": 1593648000000,
"controllerType": "DaemonSet",
"currentMemRequest": 458,
"entityId": "4fda6d56-790b-4c19-8f39-b2de710ceeaf",
"currentCpuLimit": 20,
"recommendedMemRequest": 458,
"currentCpuRequest": 20,
"namespace": "kube-system"
},
{
"container": "heapster",
"cluster": "kube-master",
"hostName": "cc516fb3-46f3-3ac6-8720-c526c3da8367",
"predictedUptime": 0.08,
"displayName": "heapster-5c448886d__heapster",
"recommLastSeen": 1597104000000,
"podService": "heapster-5c448886d",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 78,
"recommendedMemLimit": 78,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 78,
"entityId": "581f2bcc-f627-4b38-86de-8f849b87d92f",
"currentCpuLimit": 10,
"recommendedMemRequest": 78,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "php-apache",
"cluster": "kube-master",
"hostName": "05df73a5-3b97-3ced-978c-de50a70f1577",
"predictedUptime": 0.08,
"displayName": "php-apache-7ccc68c5cd__php-apache",
"recommLastSeen": 1597104000000,
"podService": "php-apache-7ccc68c5cd",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 30,
"recommendedMemLimit": 30,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 26,
"entityId": "5bf7ab4e-c735-4070-9875-ba63a9b3f9da",
"currentCpuLimit": 10,
"recommendedMemRequest": 26,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "prometheus",
"cluster": "kube-master",
"hostName": "06ac76d1-a565-3f4a-9246-7f3a580d5766",
"predictedUptime": 0.08,
"displayName": "prometheus-deployment-58f5ffc5f5__prometheus",
"recommLastSeen": 1597104000000,
"podService": "prometheus-deployment-58f5ffc5f5",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 60,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 5236,
"recommendedMemLimit": 5236,
"recommendationType": "Just Right",
"recommendedCpuRequest": 60,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 5186,
"entityId": "5c5bd411-92c9-4342-ae78-0c58475ee3e3",
"currentCpuLimit": 60,
"recommendedMemRequest": 5186,
"currentCpuRequest": 60,
"namespace": "monitoring"
},
{
"container": "bitty",
"cluster": "kube-master",
"hostName": "e1c88d82-dd64-38b2-83e8-8d7b33f88c7d",
"predictedUptime": 0.08,
"displayName": "bit-of-nothing-7ccff9f74d__bitty",
"recommLastSeen": 1597104000000,
"podService": "bit-of-nothing-7ccff9f74d",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "628dd09a-cf98-443e-8e63-66db4b1268d1",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "ubuntu",
"cluster": "kube-master",
"hostName": "86a8ac8a-a58b-3830-9abe-dfdeca2bbb30",
"predictedUptime": 0.08,
"displayName": "vertical-scaling-test-79c97b664b__ubuntu",
"recommLastSeen": 1597104000000,
"podService": "vertical-scaling-test-79c97b664b",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 270,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 270,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "75d11eda-e181-4f69-8b3d-ce6726c87bfc",
"currentCpuLimit": 270,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 10,
"currentCpuRequest": 270,
"namespace": "default"
},
{
"container": "sidecar",
"cluster": "kube-master",
"hostName": "e82e3415-e2f2-3c50-a9f2-d53956207bc7",
"predictedUptime": 0.08,
"displayName": "kube-dns-6f4fd4bdf__sidecar",
"recommLastSeen": 1597104000000,
"podService": "kube-dns-6f4fd4bdf",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 38,
"recommendedMemLimit": 38,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 38,
"entityId": "77c5ee0f-08ea-4e7d-8414-dc7d961ae234",
"currentCpuLimit": 10,
"recommendedMemRequest": 38,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "dnsmasq",
"cluster": "kube-master",
"hostName": "98e929c2-df31-30cb-a3ed-25d2d6454ee7",
"predictedUptime": 0.08,
"displayName": "kube-dns-6f4fd4bdf__dnsmasq",
"recommLastSeen": 1597104000000,
"podService": "kube-dns-6f4fd4bdf",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 36,
"recommendedMemLimit": 36,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 36,
"entityId": "799f626f-c98f-4c5a-b789-38e311390603",
"currentCpuLimit": 10,
"recommendedMemRequest": 36,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "influxdb",
"cluster": "kube-master",
"hostName": "0b0a0f41-03a6-3a1e-b0d3-435acda8ecf0",
"predictedUptime": 0.08,
"displayName": "monitoring-influxdb-66946c9f58__influxdb",
"recommLastSeen": 1597104000000,
"podService": "monitoring-influxdb-66946c9f58",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 300,
"recommendedMemLimit": 300,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 298,
"entityId": "7a6b802a-6a30-490b-9d45-c7a61bfc8548",
"currentCpuLimit": 10,
"recommendedMemRequest": 298,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "kube-apiserver",
"cluster": "kube-master",
"hostName": "e74c16ee-1f7c-3e40-bdfa-75f33de36405",
"predictedUptime": 0.08,
"displayName": "kube-apiserver-kube-master.int.cirba.com__kube-apiserver",
"recommLastSeen": 1597104000000,
"podService": "kube-apiserver-kube-master.int.cirba.com",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 80,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 630,
"recommendedMemLimit": 630,
"recommendationType": "Just Right",
"recommendedCpuRequest": 80,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicationController",
"currentMemRequest": 628,
"entityId": "7bdf1b52-a4ac-4328-94c5-67bfa0ea95b4",
"currentCpuLimit": 80,
"recommendedMemRequest": 628,
"currentCpuRequest": 80,
"namespace": "kube-system"
},
{
"container": "recommender",
"cluster": "kube-master",
"hostName": "9082bb51-6e4a-3ffd-814c-b0661056d4f1",
"predictedUptime": 0.08,
"displayName": "vpa-recommender-5dfc7669f7__recommender",
"recommLastSeen": 1597104000000,
"podService": "vpa-recommender-5dfc7669f7",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 770,
"recommendedMemLimit": 770,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 770,
"entityId": "800c2185-ebd8-45b0-a69e-e2405d48a0f1",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 770,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "kubedns",
"cluster": "kube-master",
"hostName": "399bfa49-1e67-3db7-8d2c-21e2575c30f1",
"predictedUptime": 0.08,
"displayName": "kube-dns-6f4fd4bdf__kubedns",
"recommLastSeen": 1597104000000,
"podService": "kube-dns-6f4fd4bdf",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 50,
"recommendedMemLimit": 50,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 48,
"entityId": "80e3af3e-414d-4a27-8fb6-69a7525d2762",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 48,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "addon-resizer",
"cluster": "kube-master",
"hostName": "eb455b9e-d208-3bde-9e0f-53e23ed91425",
"predictedUptime": 0.08,
"displayName": "kube-state-metrics-5d44cbfbf4__addon-resizer",
"recommLastSeen": 1597104000000,
"podService": "kube-state-metrics-5d44cbfbf4",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 6,
"recommSeenCount": 6,
"currentMemLimit": 40,
"recommendedMemLimit": 40,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 32,
"entityId": "831d8f42-b7bf-4f6c-899c-1412144124f4",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 32,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "kube-scheduler",
"cluster": "kube-master",
"hostName": "56d85c60-94f2-388f-9e2b-74c5afa75beb",
"predictedUptime": 0.08,
"displayName": "kube-scheduler-kube-master.int.cirba.com__kube-scheduler",
"recommLastSeen": 1597104000000,
"podService": "kube-scheduler-kube-master.int.cirba.com",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 70,
"recommendedMemLimit": 70,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 66,
"entityId": "943db157-6dfc-4fa8-87c3-b2d7f5545aa5",
"currentCpuLimit": 10,
"recommendedMemRequest": 66,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "hamster",
"cluster": "kube-master",
"hostName": "4383aed9-6679-3eed-884a-f453086e194b",
"predictedUptime": 0.08,
"displayName": "hamster-84f899bddb__hamster",
"recommLastSeen": 1597104000000,
"podService": "hamster-84f899bddb",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "9a1b4605-f5e5-4ac6-aad4-80ed40f784e8",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "resource-consumer",
"cluster": "kube-master",
"hostName": "4b1ce9da-9fab-3d61-93e9-16de6ca4bc44",
"predictedUptime": 0.08,
"displayName": "resource-consumer-744fd9db88__resource-consumer",
"recommLastSeen": 1597104000000,
"podService": "resource-consumer-744fd9db88",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "9afa3453-786c-4535-a1e4-831840a155d4",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "data-forwarder",
"recommFirstSeen": 1594080000000,
"cluster": "kube-master",
"controllerType": "ReplicaSet",
"displayName": "densify1__data-forwarder",
"recommLastSeen": 1597104000000,
"currentMemRequest": 2048,
"entityId": "b1253c3b-16fe-47b5-b4db-6a72f541ab7e",
"podService": "densify1",
"currentCpuRequest": 520,
"currentCount": 1,
"recommSeenCount": 4,
"currentMemLimit": 3584,
"namespace": "default",
"recommendationType": "Not Analyzed"
},
{
"container": "prom-node-exporter",
"cluster": "kube-master",
"hostName": "f0ae2433-6f24-3172-a482-13b2c2222727",
"predictedUptime": 0.08,
"displayName": "prom-node-exporter__prom-node-exporter",
"recommLastSeen": 1597104000000,
"podService": "prom-node-exporter",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 3,
"recommSeenCount": 6,
"currentMemLimit": 40,
"recommendedMemLimit": 40,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "DaemonSet",
"currentMemRequest": 32,
"entityId": "b5954d8e-363c-44ac-aa24-74c84eed738b",
"currentCpuLimit": 10,
"recommendedMemRequest": 32,
"currentCpuRequest": 10,
"namespace": "monitoring"
},
{
"container": "grafana",
"cluster": "kube-master",
"hostName": "5cbb3448-2cd2-36b0-b2a7-68edae103303",
"predictedUptime": 0.08,
"displayName": "monitoring-grafana-65757b9656__grafana",
"recommLastSeen": 1597104000000,
"podService": "monitoring-grafana-65757b9656",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 26,
"recommendedMemLimit": 26,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 26,
"entityId": "b8533fd5-3dce-4888-976c-daec3bcf0883",
"currentCpuLimit": 10,
"recommendedMemRequest": 26,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "nginx2",
"cluster": "kube-master",
"hostName": "78629878-c06d-31d2-be8b-e59dbde74057",
"predictedUptime": 0.08,
"displayName": "nginx2__nginx2",
"recommLastSeen": 1597104000000,
"podService": "nginx2",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "",
"currentMemRequest": 10,
"entityId": "bd6e0ace-7196-45dd-904c-a4a5e257771c",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default-mem-example"
},
{
"container": "kube-flannel",
"cluster": "kube-master",
"hostName": "bda5b741-27f9-3a97-96ef-a89115508706",
"predictedUptime": 0.08,
"displayName": "kube-flannel-ds__kube-flannel",
"recommLastSeen": 1597104000000,
"podService": "kube-flannel-ds",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 70,
"recommendedMemLimit": 70,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 62,
"entityId": "c31aabb0-db80-44e4-ac1b-09d74673e3d6",
"currentCpuLimit": 10,
"recommendedMemRequest": 62,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "kube-state-metrics",
"cluster": "kube-master",
"hostName": "45ca6fba-efa1-37d1-86db-c74f32e28f13",
"predictedUptime": 0.08,
"displayName": "kube-state-metrics-5d44cbfbf4__kube-state-metrics",
"recommLastSeen": 1597104000000,
"podService": "kube-state-metrics-5d44cbfbf4",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 6,
"recommSeenCount": 6,
"currentMemLimit": 46,
"recommendedMemLimit": 46,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 44,
"entityId": "dd9f0108-d0ac-40f7-b830-26507b297e15",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 44,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "nginx2",
"cluster": "kube-master",
"hostName": "62af70a5-1ff9-3313-b5e3-8b20b076abee",
"predictedUptime": 0.08,
"displayName": "nginx2__nginx2",
"recommLastSeen": 1597104000000,
"podService": "nginx2",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "Job",
"currentMemRequest": 10,
"entityId": "de2667f6-9971-419f-86f5-ce0fb19e5dfe",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "monitoring"
},
{
"container": "load-generator2",
"cluster": "kube-master",
"hostName": "f1ce7df1-0e6c-31de-8f07-693ea42b4786",
"predictedUptime": 0.08,
"displayName": "load-generator2-765d6954b8__load-generator2",
"recommLastSeen": 1597104000000,
"podService": "load-generator2-765d6954b8",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "e129d144-16d5-4c53-974a-8eb4c044f0d2",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
},
{
"container": "admission-controller",
"cluster": "kube-master",
"hostName": "aa99f4de-2363-397c-9006-92349684fdc8",
"predictedUptime": 0.08,
"displayName": "vpa-admission-controller-6b758d8678__admission-controller",
"recommLastSeen": 1597104000000,
"podService": "vpa-admission-controller-6b758d8678",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 156,
"recommendedMemLimit": 156,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 156,
"entityId": "f50430cd-f612-4c94-a17a-fa56c1dffc87",
"currentCpuLimit": 10,
"dataQuality": [
{
"partialDays": 2,
"lastSeen": 1547510400000,
"firstSeen": 1547424000000,
"workloadName": "Memory Utilization in Percent",
"completeDays": 0
}
],
"recommendedMemRequest": 156,
"currentCpuRequest": 10,
"namespace": "kube-system"
},
{
"container": "load-generator",
"cluster": "kube-master",
"hostName": "4bfc26dc-55e7-3d06-a00f-5f15d3fc4ef7",
"predictedUptime": 0.08,
"displayName": "load-generator-5c4d59d5dd__load-generator",
"recommLastSeen": 1597104000000,
"podService": "load-generator-5c4d59d5dd",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 4,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 10,
"entityId": "fafd7688-1141-46cc-a9ce-b8b5d6fbb47e",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "default"
}
]
- name: Get Analysis Recommendations (Terraform)
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/terraform-map
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/containers/kubernetes/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- containers
- kubernetes
- "{{analysisId}}"
- results
description: |-
Retrieves the latest Kubernetes recommendations as a Terraform Parameter map of variables. The Kubex Terraform reference implementation expects this format. This output can be saved as-is in a file named **densify.auto.tfvars** and placed in your Terraform directory. See [GitHub](https://github.com/densify-dev/terraform-null-optimization-as-code).
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to search for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
> Here we use header: _Accept_ - **application/terraform-map**
See example. Refer to Kubex Online Help [Kubernetes Analysis Recommendations](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Kubernetes_Results.htm).
response:
- name: Get Analysis Recommendations (Terraform)
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/terraform-map
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/analysis/containers/kubernetes/{{analysisId}}/results"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- analysis
- containers
- kubernetes
- "{{analysisId}}"
- results
status: OK
code: 200
_postman_previewlanguage: raw
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/terraform-map;charset=UTF-8
- key: date
value: Thu, 11 Jun 2020 15:56:23 GMT
- key: x-envoy-upstream-service-time
value: "39"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
- key: transfer-encoding
value: chunked
cookie: []
body: |
densify_recommendations = {
"kube-controller-manager-kube-master.int.cirba.com__kube-controller-manager" = {
container = "kube-controller-manager"
cluster = "kube-master"
hostName = "2e021430-5b65-307c-b049-3c0edca9be43"
predictedUptime = "0.08"
controllerType = "ReplicationController"
displayName = "kube-controller-manager-kube-master.int.cirba.com__kube-controller-manager"
currentMemRequest = "152.0"
currentCpuLimit = "30.0"
podService = "kube-controller-manager-kube-master.int.cirba.com"
recommendedCpuLimit = "30.0"
recommendedMemRequest = "152.0"
currentCpuRequest = "30.0"
currentCount = "2"
currentMemLimit = "152.0"
namespace = "kube-system"
recommendedMemLimit = "152.0"
recommendationType = "Just Right"
recommendedCpuRequest = "30.0"
}
"kubernetes-dashboard-845747bdd4__kubernetes-dashboard" = {
container = "kubernetes-dashboard"
cluster = "kube-master"
hostName = "33d0c4a7-a915-3cc8-80cf-19729e8b091c"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "kubernetes-dashboard-845747bdd4__kubernetes-dashboard"
currentMemRequest = "68.0"
currentCpuLimit = "10.0"
podService = "kubernetes-dashboard-845747bdd4"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "68.0"
currentCpuRequest = "10.0"
currentCount = "1"
currentMemLimit = "68.0"
namespace = "kube-system"
recommendedMemLimit = "68.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"metrics-server-bb9ffc6b8__metrics-server" = {
container = "metrics-server"
cluster = "kube-master"
hostName = "5e70451d-a736-3a9e-a338-4dfaebfd69da"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "metrics-server-bb9ffc6b8__metrics-server"
currentMemRequest = "46.0"
currentCpuLimit = "10.0"
podService = "metrics-server-bb9ffc6b8"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "46.0"
currentCpuRequest = "10.0"
currentCount = "4"
currentMemLimit = "52.0"
namespace = "kube-system"
recommendedMemLimit = "52.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"terraform-example__example" = {
container = "example"
cluster = "kube-master"
hostName = "583719fc-9fb4-32fa-8d38-19aa539840c6"
predictedUptime = "0.08"
controllerType = "ReplicationController"
displayName = "terraform-example__example"
currentMemRequest = "10.0"
currentCpuLimit = "10.0"
podService = "terraform-example"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "10.0"
currentCount = "2"
currentMemLimit = "10.0"
namespace = "default"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"nginx2__nginx2" = {
container = "nginx2"
cluster = "kube-master"
hostName = "ae61f1c3-e31a-3ec1-9fd8-d0899eb3f26e"
predictedUptime = "0.08"
controllerType = "Job"
displayName = "nginx2__nginx2"
currentMemRequest = "10.0"
currentCpuLimit = "10.0"
podService = "nginx2"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "10.0"
currentCount = "1"
currentMemLimit = "10.0"
namespace = "kube-system"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"nginx2__nginx2" = {
container = "nginx2"
cluster = "kube-master"
hostName = "6bf519be-dd5c-3f4b-bbb4-fb07cfe70508"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "nginx2__nginx2"
currentMemRequest = "10.0"
currentCpuLimit = "10.0"
podService = "nginx2"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "10.0"
currentCount = "2"
currentMemLimit = "10.0"
namespace = "default-cpu-example"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"web1__python" = {
container = "python"
cluster = "kube-master"
hostName = "74f3d0e1-cf28-303a-80bf-873f93e8b8fc"
predictedUptime = "0.02"
controllerType = "ReplicaSet"
displayName = "web1__python"
currentMemRequest = "34.0"
currentCpuLimit = "10.0"
podService = "web1"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "34.0"
currentCpuRequest = "10.0"
currentCount = "1"
currentMemLimit = "34.0"
namespace = "default"
recommendedMemLimit = "34.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"vpa-updater-5d596b7897__updater" = {
container = "updater"
cluster = "kube-master"
hostName = "6a648919-aee5-3230-a868-beddf90c5b56"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "vpa-updater-5d596b7897__updater"
currentMemRequest = "206.0"
currentCpuLimit = "10.0"
podService = "vpa-updater-5d596b7897"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "206.0"
currentCpuRequest = "10.0"
currentCount = "4"
currentMemLimit = "206.0"
namespace = "kube-system"
recommendedMemLimit = "206.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"hamster2-6586bc859f__hamster2" = {
container = "hamster2"
cluster = "kube-master"
hostName = "a1dc3660-d9d9-3216-ab1b-47a5905bdc46"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "hamster2-6586bc859f__hamster2"
currentMemRequest = "10.0"
currentCpuLimit = "60.0"
podService = "hamster2-6586bc859f"
recommendedCpuLimit = "60.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "55.0"
currentCount = "2"
currentMemLimit = "10.0"
namespace = "default"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "55.0"
}
"kube-proxy__kube-proxy" = {
container = "kube-proxy"
cluster = "kube-master"
hostName = "6e35fbf2-ebc8-3ec1-bf5f-1a47d067ea19"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "kube-proxy__kube-proxy"
currentMemRequest = "64.0"
currentCpuLimit = "10.0"
podService = "kube-proxy"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "64.0"
currentCpuRequest = "10.0"
currentCount = "4"
currentMemLimit = "68.0"
namespace = "kube-system"
recommendedMemLimit = "68.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"etcd-kube-master.int.cirba.com__etcd" = {
container = "etcd"
cluster = "kube-master"
hostName = "86ed1968-2c7d-3a04-961a-8542f1808bdc"
predictedUptime = "0.08"
controllerType = "DaemonSet"
displayName = "etcd-kube-master.int.cirba.com__etcd"
currentMemRequest = "458.0"
currentCpuLimit = "20.0"
podService = "etcd-kube-master.int.cirba.com"
recommendedCpuLimit = "20.0"
recommendedMemRequest = "458.0"
currentCpuRequest = "20.0"
currentCount = "1"
currentMemLimit = "462.0"
namespace = "kube-system"
recommendedMemLimit = "462.0"
recommendationType = "Just Right"
recommendedCpuRequest = "20.0"
}
"heapster-5c448886d__heapster" = {
container = "heapster"
cluster = "kube-master"
hostName = "cc516fb3-46f3-3ac6-8720-c526c3da8367"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "heapster-5c448886d__heapster"
currentMemRequest = "78.0"
currentCpuLimit = "10.0"
podService = "heapster-5c448886d"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "78.0"
currentCpuRequest = "10.0"
currentCount = "1"
currentMemLimit = "78.0"
namespace = "kube-system"
recommendedMemLimit = "78.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"php-apache-7ccc68c5cd__php-apache" = {
container = "php-apache"
cluster = "kube-master"
hostName = "05df73a5-3b97-3ced-978c-de50a70f1577"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "php-apache-7ccc68c5cd__php-apache"
currentMemRequest = "26.0"
currentCpuLimit = "10.0"
podService = "php-apache-7ccc68c5cd"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "26.0"
currentCpuRequest = "10.0"
currentCount = "2"
currentMemLimit = "30.0"
namespace = "default"
recommendedMemLimit = "30.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"prometheus-deployment-58f5ffc5f5__prometheus" = {
container = "prometheus"
cluster = "kube-master"
hostName = "06ac76d1-a565-3f4a-9246-7f3a580d5766"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "prometheus-deployment-58f5ffc5f5__prometheus"
currentMemRequest = "5186.0"
currentCpuLimit = "60.0"
podService = "prometheus-deployment-58f5ffc5f5"
recommendedCpuLimit = "60.0"
recommendedMemRequest = "5186.0"
currentCpuRequest = "60.0"
currentCount = "2"
currentMemLimit = "5236.0"
namespace = "monitoring"
recommendedMemLimit = "5236.0"
recommendationType = "Just Right"
recommendedCpuRequest = "60.0"
}
"bit-of-nothing-7ccff9f74d__bitty" = {
container = "bitty"
cluster = "kube-master"
hostName = "e1c88d82-dd64-38b2-83e8-8d7b33f88c7d"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "bit-of-nothing-7ccff9f74d__bitty"
currentMemRequest = "10.0"
currentCpuLimit = "10.0"
podService = "bit-of-nothing-7ccff9f74d"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "10.0"
currentCount = "2"
currentMemLimit = "10.0"
namespace = "default"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"vertical-scaling-test-79c97b664b__ubuntu" = {
container = "ubuntu"
cluster = "kube-master"
hostName = "86a8ac8a-a58b-3830-9abe-dfdeca2bbb30"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "vertical-scaling-test-79c97b664b__ubuntu"
currentMemRequest = "10.0"
currentCpuLimit = "270.0"
podService = "vertical-scaling-test-79c97b664b"
recommendedCpuLimit = "270.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "270.0"
currentCount = "2"
currentMemLimit = "10.0"
namespace = "default"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "270.0"
}
"kube-dns-6f4fd4bdf__sidecar" = {
container = "sidecar"
cluster = "kube-master"
hostName = "e82e3415-e2f2-3c50-a9f2-d53956207bc7"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "kube-dns-6f4fd4bdf__sidecar"
currentMemRequest = "38.0"
currentCpuLimit = "10.0"
podService = "kube-dns-6f4fd4bdf"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "38.0"
currentCpuRequest = "10.0"
currentCount = "4"
currentMemLimit = "38.0"
namespace = "kube-system"
recommendedMemLimit = "38.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"kube-dns-6f4fd4bdf__dnsmasq" = {
container = "dnsmasq"
cluster = "kube-master"
hostName = "98e929c2-df31-30cb-a3ed-25d2d6454ee7"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "kube-dns-6f4fd4bdf__dnsmasq"
currentMemRequest = "36.0"
currentCpuLimit = "10.0"
podService = "kube-dns-6f4fd4bdf"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "36.0"
currentCpuRequest = "10.0"
currentCount = "4"
currentMemLimit = "36.0"
namespace = "kube-system"
recommendedMemLimit = "36.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"monitoring-influxdb-66946c9f58__influxdb" = {
container = "influxdb"
cluster = "kube-master"
hostName = "0b0a0f41-03a6-3a1e-b0d3-435acda8ecf0"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "monitoring-influxdb-66946c9f58__influxdb"
currentMemRequest = "298.0"
currentCpuLimit = "10.0"
podService = "monitoring-influxdb-66946c9f58"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "298.0"
currentCpuRequest = "10.0"
currentCount = "1"
currentMemLimit = "300.0"
namespace = "kube-system"
recommendedMemLimit = "300.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"kube-apiserver-kube-master.int.cirba.com__kube-apiserver" = {
container = "kube-apiserver"
cluster = "kube-master"
hostName = "e74c16ee-1f7c-3e40-bdfa-75f33de36405"
predictedUptime = "0.08"
controllerType = "ReplicationController"
displayName = "kube-apiserver-kube-master.int.cirba.com__kube-apiserver"
currentMemRequest = "628.0"
currentCpuLimit = "80.0"
podService = "kube-apiserver-kube-master.int.cirba.com"
recommendedCpuLimit = "80.0"
recommendedMemRequest = "628.0"
currentCpuRequest = "80.0"
currentCount = "4"
currentMemLimit = "630.0"
namespace = "kube-system"
recommendedMemLimit = "630.0"
recommendationType = "Just Right"
recommendedCpuRequest = "80.0"
}
"vpa-recommender-5dfc7669f7__recommender" = {
container = "recommender"
cluster = "kube-master"
hostName = "9082bb51-6e4a-3ffd-814c-b0661056d4f1"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "vpa-recommender-5dfc7669f7__recommender"
currentMemRequest = "770.0"
currentCpuLimit = "10.0"
podService = "vpa-recommender-5dfc7669f7"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "770.0"
currentCpuRequest = "10.0"
currentCount = "2"
currentMemLimit = "770.0"
namespace = "kube-system"
recommendedMemLimit = "770.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"kube-dns-6f4fd4bdf__kubedns" = {
container = "kubedns"
cluster = "kube-master"
hostName = "399bfa49-1e67-3db7-8d2c-21e2575c30f1"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "kube-dns-6f4fd4bdf__kubedns"
currentMemRequest = "48.0"
currentCpuLimit = "10.0"
podService = "kube-dns-6f4fd4bdf"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "48.0"
currentCpuRequest = "10.0"
currentCount = "4"
currentMemLimit = "50.0"
namespace = "kube-system"
recommendedMemLimit = "50.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"kube-state-metrics-5d44cbfbf4__addon-resizer" = {
container = "addon-resizer"
cluster = "kube-master"
hostName = "eb455b9e-d208-3bde-9e0f-53e23ed91425"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "kube-state-metrics-5d44cbfbf4__addon-resizer"
currentMemRequest = "32.0"
currentCpuLimit = "10.0"
podService = "kube-state-metrics-5d44cbfbf4"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "32.0"
currentCpuRequest = "10.0"
currentCount = "6"
currentMemLimit = "40.0"
namespace = "kube-system"
recommendedMemLimit = "40.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"kube-scheduler-kube-master.int.cirba.com__kube-scheduler" = {
container = "kube-scheduler"
cluster = "kube-master"
hostName = "56d85c60-94f2-388f-9e2b-74c5afa75beb"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "kube-scheduler-kube-master.int.cirba.com__kube-scheduler"
currentMemRequest = "66.0"
currentCpuLimit = "10.0"
podService = "kube-scheduler-kube-master.int.cirba.com"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "66.0"
currentCpuRequest = "10.0"
currentCount = "1"
currentMemLimit = "70.0"
namespace = "kube-system"
recommendedMemLimit = "70.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"hamster-84f899bddb__hamster" = {
container = "hamster"
cluster = "kube-master"
hostName = "4383aed9-6679-3eed-884a-f453086e194b"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "hamster-84f899bddb__hamster"
currentMemRequest = "10.0"
currentCpuLimit = "10.0"
podService = "hamster-84f899bddb"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "10.0"
currentCount = "2"
currentMemLimit = "10.0"
namespace = "default"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"resource-consumer-744fd9db88__resource-consumer" = {
container = "resource-consumer"
cluster = "kube-master"
hostName = "4b1ce9da-9fab-3d61-93e9-16de6ca4bc44"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "resource-consumer-744fd9db88__resource-consumer"
currentMemRequest = "10.0"
currentCpuLimit = "10.0"
podService = "resource-consumer-744fd9db88"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "10.0"
currentCount = "4"
currentMemLimit = "10.0"
namespace = "default"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"densify1__data-forwarder" = {
container = "data-forwarder"
cluster = "kube-master"
controllerType = "ReplicaSet"
currentCpuRequest = "520.0"
displayName = "densify1__data-forwarder"
currentCount = "1"
currentMemLimit = "3584.0"
namespace = "default"
currentMemRequest = "2048.0"
recommendationType = "Not Analyzed"
podService = "densify1"
}
"prom-node-exporter__prom-node-exporter" = {
container = "prom-node-exporter"
cluster = "kube-master"
hostName = "f0ae2433-6f24-3172-a482-13b2c2222727"
predictedUptime = "0.08"
controllerType = "DaemonSet"
displayName = "prom-node-exporter__prom-node-exporter"
currentMemRequest = "32.0"
currentCpuLimit = "10.0"
podService = "prom-node-exporter"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "32.0"
currentCpuRequest = "10.0"
currentCount = "3"
currentMemLimit = "40.0"
namespace = "monitoring"
recommendedMemLimit = "40.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"monitoring-grafana-65757b9656__grafana" = {
container = "grafana"
cluster = "kube-master"
hostName = "5cbb3448-2cd2-36b0-b2a7-68edae103303"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "monitoring-grafana-65757b9656__grafana"
currentMemRequest = "26.0"
currentCpuLimit = "10.0"
podService = "monitoring-grafana-65757b9656"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "26.0"
currentCpuRequest = "10.0"
currentCount = "1"
currentMemLimit = "26.0"
namespace = "kube-system"
recommendedMemLimit = "26.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"nginx2__nginx2" = {
container = "nginx2"
cluster = "kube-master"
hostName = "78629878-c06d-31d2-be8b-e59dbde74057"
predictedUptime = "0.08"
controllerType = ""
displayName = "nginx2__nginx2"
currentMemRequest = "10.0"
currentCpuLimit = "10.0"
podService = "nginx2"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "10.0"
currentCount = "1"
currentMemLimit = "10.0"
namespace = "default-mem-example"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"kube-flannel-ds__kube-flannel" = {
container = "kube-flannel"
cluster = "kube-master"
hostName = "bda5b741-27f9-3a97-96ef-a89115508706"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "kube-flannel-ds__kube-flannel"
currentMemRequest = "62.0"
currentCpuLimit = "10.0"
podService = "kube-flannel-ds"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "62.0"
currentCpuRequest = "10.0"
currentCount = "4"
currentMemLimit = "70.0"
namespace = "kube-system"
recommendedMemLimit = "70.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"kube-state-metrics-5d44cbfbf4__kube-state-metrics" = {
container = "kube-state-metrics"
cluster = "kube-master"
hostName = "45ca6fba-efa1-37d1-86db-c74f32e28f13"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "kube-state-metrics-5d44cbfbf4__kube-state-metrics"
currentMemRequest = "44.0"
currentCpuLimit = "10.0"
podService = "kube-state-metrics-5d44cbfbf4"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "44.0"
currentCpuRequest = "10.0"
currentCount = "6"
currentMemLimit = "46.0"
namespace = "kube-system"
recommendedMemLimit = "46.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"nginx2__nginx2" = {
container = "nginx2"
cluster = "kube-master"
hostName = "62af70a5-1ff9-3313-b5e3-8b20b076abee"
predictedUptime = "0.08"
controllerType = "Job"
displayName = "nginx2__nginx2"
currentMemRequest = "10.0"
currentCpuLimit = "10.0"
podService = "nginx2"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "10.0"
currentCount = "1"
currentMemLimit = "10.0"
namespace = "monitoring"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"load-generator2-765d6954b8__load-generator2" = {
container = "load-generator2"
cluster = "kube-master"
hostName = "f1ce7df1-0e6c-31de-8f07-693ea42b4786"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "load-generator2-765d6954b8__load-generator2"
currentMemRequest = "10.0"
currentCpuLimit = "10.0"
podService = "load-generator2-765d6954b8"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "10.0"
currentCount = "4"
currentMemLimit = "10.0"
namespace = "default"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"vpa-admission-controller-6b758d8678__admission-controller" = {
container = "admission-controller"
cluster = "kube-master"
hostName = "aa99f4de-2363-397c-9006-92349684fdc8"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "vpa-admission-controller-6b758d8678__admission-controller"
currentMemRequest = "156.0"
currentCpuLimit = "10.0"
podService = "vpa-admission-controller-6b758d8678"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "156.0"
currentCpuRequest = "10.0"
currentCount = "1"
currentMemLimit = "156.0"
namespace = "kube-system"
recommendedMemLimit = "156.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
"load-generator-5c4d59d5dd__load-generator" = {
container = "load-generator"
cluster = "kube-master"
hostName = "4bfc26dc-55e7-3d06-a00f-5f15d3fc4ef7"
predictedUptime = "0.08"
controllerType = "ReplicaSet"
displayName = "load-generator-5c4d59d5dd__load-generator"
currentMemRequest = "10.0"
currentCpuLimit = "10.0"
podService = "load-generator-5c4d59d5dd"
recommendedCpuLimit = "10.0"
recommendedMemRequest = "10.0"
currentCpuRequest = "10.0"
currentCount = "4"
currentMemLimit = "10.0"
namespace = "default"
recommendedMemLimit = "10.0"
recommendationType = "Just Right"
recommendedCpuRequest = "10.0"
}
}
description: After the analysis completes, you can view Densify's recommendations. See [Optimizing Kubernetes Containers](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_Kubernetes_Containers.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 3.1.4 Kubernetes Informed Decisions
item:
- name: Get Recommendations for a Specific Namespace (JSON)
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/containers/kubernetes/{{analysisId}}/results?namespace=monitoring"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- containers
- kubernetes
- "{{analysisId}}"
- results
query:
- key: namespace
value: monitoring
description: |-
You can use supported filter elements to narrow the scope of results. For example, you can refine results by _cluster_ or _namespace_.
In this example, we are requesting for "monitoring" namespace recommendations.
Notes:
> The `analysisId` environment variable is used to identify the Kubernetes Analysis. This variable was set in a previous request. If you want the results for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
> In this example, the environment variable `entityId` is set to the first returned _entityId_ element for future use.
See example. Refer to Kubex Online Help [Kubernetes Analysis Recommendations](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Kubernetes_Results.htm).
response:
- name: Get Recommendations for a Specific Namespace (JSON) 12.1.6
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/analysis/containers/kubernetes/{{analysisId}}/results?namespace=monitoring"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- analysis
- containers
- kubernetes
- "{{analysisId}}"
- results
query:
- key: namespace
value: monitoring
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Sat, 29 Aug 2020 00:38:22 GMT
cookie: []
body: |-
[
{
"container": "prometheus",
"cluster": "kube-master",
"hostName": "06ac76d1-a565-3f4a-9246-7f3a580d5766",
"predictedUptime": 0.08,
"displayName": "prometheus-deployment-58f5ffc5f5__prometheus",
"recommLastSeen": 1597104000000,
"podService": "prometheus-deployment-58f5ffc5f5",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 60,
"currentCount": 2,
"recommSeenCount": 6,
"currentMemLimit": 5236,
"recommendedMemLimit": 5236,
"recommendationType": "Just Right",
"recommendedCpuRequest": 60,
"recommFirstSeen": 1593648000000,
"controllerType": "ReplicaSet",
"currentMemRequest": 5186,
"entityId": "5c5bd411-92c9-4342-ae78-0c58475ee3e3",
"currentCpuLimit": 60,
"recommendedMemRequest": 5186,
"currentCpuRequest": 60,
"namespace": "monitoring"
},
{
"container": "prom-node-exporter",
"cluster": "kube-master",
"hostName": "f0ae2433-6f24-3172-a482-13b2c2222727",
"predictedUptime": 0.08,
"displayName": "prom-node-exporter__prom-node-exporter",
"recommLastSeen": 1597104000000,
"podService": "prom-node-exporter",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 3,
"recommSeenCount": 6,
"currentMemLimit": 40,
"recommendedMemLimit": 40,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "DaemonSet",
"currentMemRequest": 32,
"entityId": "b5954d8e-363c-44ac-aa24-74c84eed738b",
"currentCpuLimit": 10,
"recommendedMemRequest": 32,
"currentCpuRequest": 10,
"namespace": "monitoring"
},
{
"container": "nginx2",
"cluster": "kube-master",
"hostName": "62af70a5-1ff9-3313-b5e3-8b20b076abee",
"predictedUptime": 0.08,
"displayName": "nginx2__nginx2",
"recommLastSeen": 1597104000000,
"podService": "nginx2",
"auditInfo": {
"dataCollection": {
"dateFirstAudited": 1547648798000,
"auditCount": 1,
"dateLastAudited": 1547648798000
}
},
"recommendedCpuLimit": 10,
"currentCount": 1,
"recommSeenCount": 6,
"currentMemLimit": 10,
"recommendedMemLimit": 10,
"recommendationType": "Just Right",
"recommendedCpuRequest": 10,
"recommFirstSeen": 1593648000000,
"controllerType": "Job",
"currentMemRequest": 10,
"entityId": "de2667f6-9971-419f-86f5-ce0fb19e5dfe",
"currentCpuLimit": 10,
"recommendedMemRequest": 10,
"currentCpuRequest": 10,
"namespace": "monitoring"
}
]
- name: Get Kubernetes Labels (Densify Attributes)
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"systemId\", firstdata.id);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems/?platform=containers&attribute_name_value=Pod+Info,owner_kind+:+DaemonSet"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
- ""
query:
- key: platform
value: containers
- key: attribute_name_value
value: Pod+Info,owner_kind+:+DaemonSet
description: "In Kubex System Attributes are synonymous with Kubernetes Labels. Kubex maintains an extensive list of attributes for each Container. \r\n\r\nDensify collects Container Labels and maps them to Kubex System Attributes **Container Info**, **Container Labels**, **Pod Info** and **Pod Labels**.\r\n\r\nThe format of these system Attributes is: **Label_Key : Label_Value**\r\n\r\nFor example, a Container with a Pod Label of **\"kubernetes_name\"** = **\"kube-state-metrics\"** is represented in Kubex as System Attribute: *Name* = **Pod Labels** *Value* = **kubernetes_name : kube-state-metrics**.\r\n\r\nHere we request recommendations for containers with Pod Info of Kind \"owner_kind\" with a value of \"DaemonSet\"\r\n> /systems/?platform=containers&attribute_name_value=Pod+Info,owner_kind+:+DaemonSet\r\n \r\nNotes:\r\n> The *systems* resource uses data created by the *Reporting Data Generation* maintenance task, which runs on a nightly basis. The *systems* resource returns no or partial data until the reporting task completes.\r\n\r\n> In this example, the environment variable `systemId` is set to the first returned *id* element, for future use.\r\n\r\nSee example. Refer to Kubex Online Help [Systems](https://www.densify.com/docs-api/Content/API_Guide/Systems.htm)"
response:
- name: Get Kubernetes Labels (Densify Attributes)
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/systems/?platform=containers&attribute_name_value=Pod+Info,owner_kind+:+DaemonSet"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- systems
- ""
query:
- key: platform
value: containers
- key: attribute_name_value
value: Pod+Info,owner_kind+:+DaemonSet
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Tue, 23 Jun 2020 17:00:20 GMT
cookie: []
body: |-
[
{
"id": "b5954d8e-363c-44ac-aa24-74c84eed738b",
"name": "prom-node-exporter__prom-node-exporter",
"href": "/systems/b5954d8e-363c-44ac-aa24-74c84eed738b",
"resource_id": "f0ae2433-6f24-3172-a482-13b2c2222727",
"type": "",
"platform_model": "monitoring",
"platform": "CONTAINERS",
"attributes": [
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "container : prom-node-exporter"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "container_id : docker://6f47e8a2e1075d4b13ff20c932218d5d70e8dd04f306134e76c17a33626fa05a;docker://b60d263c2d70dd6aeaed7778d838955179ae822b3a888f21ae3fe9d308215673;docker://dcaa1f4aecb6ff4ea0791e9e5a1faf7dd4d078f73e81070d21aa2fd7fe3ebd49"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "image : docker.io/prom/node-exporter:latest"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "image_id : docker-pullable://docker.io/prom/node-exporter@sha256:55302581333c43d540db0e144cf9e7735423117a733cdec27716d87254221086;docker-pullable://docker.io/prom/node-exporter@sha256:c390c8fea4cd362a28ad5070aedd6515aacdfdffd21de6db42ead05e332be5a9"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "namespace : monitoring"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "owner_name : prom-node-exporter"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "pod : prom-node-exporter-gfmgb;prom-node-exporter-9hxmh;prom-node-exporter-h2qwf"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "beta_kubernetes_io_arch : amd64"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "beta_kubernetes_io_os : linux"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "container_name : prom-node-exporter"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "id : /kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-podac6ee520_135a_11e8_9056_0050569e06ab.slice/docker-dcaa1f4aecb6ff4ea0791e9e5a1faf7dd4d078f73e81070d21aa2fd7fe3ebd49.scope;/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "image : docker.io/prom/node-exporter@sha256:c390c8fea4cd362a28ad5070aedd6515aacdfdffd21de6db42ead05e332be5a9;docker.io/prom/node-exporter@sha256:55302581333c43d540db0e144cf9e7735423117a733cdec27716d87254221086"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "instance : kube-minion1;kube-minion3.int.cirba.com;kube-minion2.int.cirba.com"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "job : kubernetes-cadvisor"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "kubernetes_io_hostname : kube-minion1;kube-minion3.int.cirba.com;kube-minion2.int.cirba.com"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "name : k8s_prom-node-exporter_prom-node-exporter-h2qwf_monitoring_ac6ee520-135a-11e8-9056-0050569e06ab_7;k8s_prom-node-exporter_prom-node-exporter-9hxmh_monitoring_ac702abc-135a-11e8-9056-0050569e06ab_9;k8s_prom-node-exporter_prom-node-exporter-gfmgb_monit"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "namespace : monitoring"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "owner_name : prom-node-exporter"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "pod_name : prom-node-exporter-h2qwf;prom-node-exporter-9hxmh;prom-node-exporter-gfmgb"
},
{
"id": "attr_ContainerName",
"name": "Container Name",
"value": "prom-node-exporter"
},
{
"id": "attr_ContainerRestarts",
"name": "Container Restarts",
"value": "9"
},
{
"id": "attr_CPULimitDetails",
"name": "CPU Limit Details",
"value": "Recommended allocation was capped due to minimum allowed value."
},
{
"id": "attr_CPURequestDetails",
"name": "CPU Request Details",
"value": "Recommended allocation was capped due to minimum allowed value."
},
{
"id": "attr_CreatedbyKind",
"name": "Created by Kind",
"value": "DaemonSet"
},
{
"id": "attr_CreatedbyName",
"name": "Created by Name",
"value": "prom-node-exporter"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion1"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion2.int.cirba.com"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion3.int.cirba.com"
},
{
"id": "attr_CurrentSize",
"name": "Current Size",
"value": "3"
},
{
"id": "attr_DataLastReceivedDate",
"name": "Data Last Received Date",
"value": "2019-01-16 14:26:39"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-01-14 00:00:00.0"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "10"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "40"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "32"
},
{
"id": "attr_MemoryLimitDetails",
"name": "Memory Limit Details",
"value": "Recommended allocation meets all constraints."
},
{
"id": "attr_MemoryRequestDetails",
"name": "Memory Request Details",
"value": "Recommended allocation meets all constraints."
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "__name__ : kube_namespace_labels"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "namespace : monitoring"
},
{
"id": "attr_NamespaceMemoryLimit",
"name": "Namespace Memory Limit",
"value": "512"
},
{
"id": "attr_NamespaceMemoryRequest",
"name": "Namespace Memory Request",
"value": "256"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.08"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "namespace : monitoring"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_is_controller : true"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_name : prom-node-exporter"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "pod : prom-node-exporter-9hxmh;prom-node-exporter-gfmgb;prom-node-exporter-h2qwf"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_controller_revision_hash : 1466127249"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_name : prom-node-exporter"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_pod_template_generation : 1"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "namespace : monitoring"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "owner_name : prom-node-exporter"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "pod : prom-node-exporter-9hxmh;prom-node-exporter-gfmgb;prom-node-exporter-h2qwf"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.08"
},
{
"id": "attr_RecommendedCPULimit",
"name": "Recommended CPU Limit",
"value": "10.0"
},
{
"id": "attr_RecommendedCPURequest",
"name": "Recommended CPU Request",
"value": "10.0"
},
{
"id": "attr_RecommendedMemoryLimit",
"name": "Recommended Memory Limit",
"value": "40.0"
},
{
"id": "attr_RecommendedMemoryRequest",
"name": "Recommended Memory Request",
"value": "32.0"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "2018-10-24 06:12:43.000"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "prom-node-exporter"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "monitoring"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "kube-master"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "Containers"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
},
{
"id": "c31aabb0-db80-44e4-ac1b-09d74673e3d6",
"name": "kube-flannel-ds__kube-flannel",
"href": "/systems/c31aabb0-db80-44e4-ac1b-09d74673e3d6",
"resource_id": "bda5b741-27f9-3a97-96ef-a89115508706",
"type": "",
"platform_model": "kube-system",
"platform": "CONTAINERS",
"attributes": [
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "container : kube-flannel"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "container_id : docker://4a2260bbbae4a41298035f52a27f23065defeed48fa6d008f3f56e9a56dd8a15;docker://4c63159543b48c77ecf759e5ec25110c18c0fceaad01eb3c8b7f914113f9ac14;docker://e3a60247918d734ff9422daf68172a37b8c9a5aea64b9a5d025faa4569ca554b;docker://ee0c64815c"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "image : quay.io/coreos/flannel:v0.9.1-amd64"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "image_id : docker-pullable://quay.io/coreos/flannel@sha256:056cf57fd3bbe7264c0be1a3b34ec2e289b33e51c70f332f4e88aa83970ad891"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "namespace : kube-system"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "owner_name : kube-flannel-ds"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "pod : kube-flannel-ds-98m75;kube-flannel-ds-2hwsh;kube-flannel-ds-s9thc;kube-flannel-ds-jmg7g"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "beta_kubernetes_io_arch : amd64"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "beta_kubernetes_io_os : linux"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "container_name : kube-flannel"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "id : /kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod2c8ccece_0a8e_11e8_9056_0050569e06ab.slice/docker-ee0c64815ce69f45ac644a9a3ab80057f57455fc5f7cf2542a951cb36c9c7c26.scope;/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "image : quay.io/coreos/flannel@sha256:056cf57fd3bbe7264c0be1a3b34ec2e289b33e51c70f332f4e88aa83970ad891"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "instance : kube-master.int.cirba.com;kube-minion1;kube-minion2.int.cirba.com;kube-minion3.int.cirba.com"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "job : kubernetes-cadvisor"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "kubernetes_io_hostname : kube-master.int.cirba.com;kube-minion1;kube-minion2.int.cirba.com;kube-minion3.int.cirba.com"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "name : k8s_kube-flannel_kube-flannel-ds-jmg7g_kube-system_2c8ccece-0a8e-11e8-9056-0050569e06ab_8;k8s_kube-flannel_kube-flannel-ds-98m75_kube-system_61e5580b-0a8e-11e8-9056-0050569e06ab_16;k8s_kube-flannel_kube-flannel-ds-s9thc_kube-system_6d549d7e-0a8e-11e"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "namespace : kube-system"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "owner_name : kube-flannel-ds"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "pod_name : kube-flannel-ds-jmg7g;kube-flannel-ds-98m75;kube-flannel-ds-s9thc;kube-flannel-ds-2hwsh"
},
{
"id": "attr_ContainerName",
"name": "Container Name",
"value": "kube-flannel"
},
{
"id": "attr_ContainerRestarts",
"name": "Container Restarts",
"value": "16"
},
{
"id": "attr_CPULimitDetails",
"name": "CPU Limit Details",
"value": "Recommended allocation was capped due to minimum allowed value."
},
{
"id": "attr_CPURequestDetails",
"name": "CPU Request Details",
"value": "Recommended allocation was capped due to minimum allowed value."
},
{
"id": "attr_CreatedbyKind",
"name": "Created by Kind",
"value": "ReplicaSet"
},
{
"id": "attr_CreatedbyName",
"name": "Created by Name",
"value": "kube-flannel-ds"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-master.int.cirba.com"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion1"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion2.int.cirba.com"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion3.int.cirba.com"
},
{
"id": "attr_CurrentSize",
"name": "Current Size",
"value": "4"
},
{
"id": "attr_DataLastReceivedDate",
"name": "Data Last Received Date",
"value": "2019-01-16 14:26:39"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-01-14 00:00:00.0"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "10"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "70"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "62"
},
{
"id": "attr_MemoryLimitDetails",
"name": "Memory Limit Details",
"value": "Recommended allocation meets all constraints."
},
{
"id": "attr_MemoryRequestDetails",
"name": "Memory Request Details",
"value": "Recommended allocation meets all constraints."
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "__name__ : kube_namespace_labels"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "namespace : kube-system"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.08"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "namespace : kube-system"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_is_controller : true"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_name : kube-flannel-ds"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "pod : kube-flannel-ds-2hwsh;kube-flannel-ds-98m75;kube-flannel-ds-jmg7g;kube-flannel-ds-s9thc"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_app : flannel"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_controller_revision_hash : 1701514254"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_pod_template_generation : 1"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_tier : node"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "namespace : kube-system"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "owner_name : kube-flannel-ds"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "pod : kube-flannel-ds-2hwsh;kube-flannel-ds-98m75;kube-flannel-ds-jmg7g;kube-flannel-ds-s9thc"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.08"
},
{
"id": "attr_RecommendedCPULimit",
"name": "Recommended CPU Limit",
"value": "10.0"
},
{
"id": "attr_RecommendedCPURequest",
"name": "Recommended CPU Request",
"value": "10.0"
},
{
"id": "attr_RecommendedMemoryLimit",
"name": "Recommended Memory Limit",
"value": "70.0"
},
{
"id": "attr_RecommendedMemoryRequest",
"name": "Recommended Memory Request",
"value": "62.0"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "2018-02-05 16:06:13.000"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "kube-flannel-ds"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "kube-system"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "kube-master"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "Containers"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
},
{
"id": "4b2e1117-31db-443f-a230-c14bf890f252",
"name": "kube-proxy__kube-proxy",
"href": "/systems/4b2e1117-31db-443f-a230-c14bf890f252",
"resource_id": "6e35fbf2-ebc8-3ec1-bf5f-1a47d067ea19",
"type": "",
"platform_model": "kube-system",
"platform": "CONTAINERS",
"attributes": [
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "container : kube-proxy"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "container_id : docker://36535ceb6e105d79a9e823b1c34880190b44fc0ce931a040f3237688db821521;docker://4485e5e686b62a642b70016d971571449d4a6e6dd185645a24fe33f9b4a72f64;docker://4ae59b71c2fbaa51671749e9c1d0fa3e5841929122d5682d1068f524855ba715;docker://d08bf97fcf"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "image : gcr.io/google_containers/kube-proxy-amd64:v1.9.11"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "image_id : docker-pullable://gcr.io/google_containers/kube-proxy-amd64@sha256:53ffe4b3d0b7e468b93fa442ad3b3c2df146e751f64a7405ed1735a9139f3e7e"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "namespace : kube-system"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "owner_name : kube-proxy"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "pod : kube-proxy-7pmb6;kube-proxy-rfv55;kube-proxy-c2d22;kube-proxy-jxzl8"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "beta_kubernetes_io_arch : amd64"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "beta_kubernetes_io_os : linux"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "container_name : kube-proxy"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "id : /kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod322afbd7_0e9f_11e9_be4d_0050569e06ab.slice/docker-4485e5e686b62a642b70016d971571449d4a6e6dd185645a24fe33f9b4a72f64.scope;/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "image : gcr.io/google_containers/kube-proxy-amd64@sha256:53ffe4b3d0b7e468b93fa442ad3b3c2df146e751f64a7405ed1735a9139f3e7e"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "instance : kube-master.int.cirba.com;kube-minion2.int.cirba.com;kube-minion1;kube-minion3.int.cirba.com"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "job : kubernetes-cadvisor"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "kubernetes_io_hostname : kube-master.int.cirba.com;kube-minion2.int.cirba.com;kube-minion1;kube-minion3.int.cirba.com"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "name : k8s_kube-proxy_kube-proxy-rfv55_kube-system_322afbd7-0e9f-11e9-be4d-0050569e06ab_0;k8s_kube-proxy_kube-proxy-c2d22_kube-system_39acc36a-0e9f-11e9-be4d-0050569e06ab_0;k8s_kube-proxy_kube-proxy-jxzl8_kube-system_3ddba62d-0e9f-11e9-be4d-0050569e06ab_1;"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "namespace : kube-system"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "owner_name : kube-proxy"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "pod_name : kube-proxy-rfv55;kube-proxy-c2d22;kube-proxy-jxzl8;kube-proxy-7pmb6"
},
{
"id": "attr_ContainerName",
"name": "Container Name",
"value": "kube-proxy"
},
{
"id": "attr_ContainerRestarts",
"name": "Container Restarts",
"value": "1"
},
{
"id": "attr_CPULimitDetails",
"name": "CPU Limit Details",
"value": "Recommended allocation was capped due to minimum allowed value."
},
{
"id": "attr_CPURequestDetails",
"name": "CPU Request Details",
"value": "Recommended allocation was capped due to minimum allowed value."
},
{
"id": "attr_CreatedbyKind",
"name": "Created by Kind",
"value": "ReplicaSet"
},
{
"id": "attr_CreatedbyName",
"name": "Created by Name",
"value": "kube-proxy"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-master.int.cirba.com"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion1"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion2.int.cirba.com"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion3.int.cirba.com"
},
{
"id": "attr_CurrentSize",
"name": "Current Size",
"value": "4"
},
{
"id": "attr_DataLastReceivedDate",
"name": "Data Last Received Date",
"value": "2019-01-16 14:26:39"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-01-14 00:00:00.0"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "10"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "68"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "64"
},
{
"id": "attr_MemoryLimitDetails",
"name": "Memory Limit Details",
"value": "Recommended allocation meets all constraints."
},
{
"id": "attr_MemoryRequestDetails",
"name": "Memory Request Details",
"value": "Recommended allocation meets all constraints."
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "__name__ : kube_namespace_labels"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "namespace : kube-system"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.08"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "namespace : kube-system"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_is_controller : true"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_name : kube-proxy"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "pod : kube-proxy-7pmb6;kube-proxy-c2d22;kube-proxy-jxzl8;kube-proxy-rfv55"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_controller_revision_hash : 862371580"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_k8s_app : kube-proxy"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_pod_template_generation : 2"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "namespace : kube-system"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "owner_name : kube-proxy"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "pod : kube-proxy-7pmb6;kube-proxy-c2d22;kube-proxy-jxzl8;kube-proxy-rfv55"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.08"
},
{
"id": "attr_RecommendedCPULimit",
"name": "Recommended CPU Limit",
"value": "10.0"
},
{
"id": "attr_RecommendedCPURequest",
"name": "Recommended CPU Request",
"value": "10.0"
},
{
"id": "attr_RecommendedMemoryLimit",
"name": "Recommended Memory Limit",
"value": "68.0"
},
{
"id": "attr_RecommendedMemoryRequest",
"name": "Recommended Memory Request",
"value": "64.0"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "2019-01-02 15:01:11.000"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "kube-proxy"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "kube-system"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "kube-master"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "Containers"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
}
]
- name: Get Full Details of a Container Instance
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/systems/{{systemId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- systems
- "{{systemId}}"
description: |-
You can get a full details listing of a specific container using the `/systems` resource.
Notes:
> The `systemId` environment variable is used to identify the container system. This variable was set in a previous request. If you want the details for another system, modify the `systemId` variable with your desired system _id_ in the Kubex environment.
> The _systems_ resource uses data created by the _Reporting Data Generation_ maintenance task, which runs on a nightly basis. The _systems_ resource returns no or partial data until the reporting task is complete.
See example. Refer to Kubex Online Help [Systems](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Systems.htm).
response:
- name: Get Full Details of a Container Instance
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/systems/{{systemId}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- systems
- "{{systemId}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Tue, 23 Jun 2020 18:13:34 GMT
cookie: []
body: |-
{
"id": "b5954d8e-363c-44ac-aa24-74c84eed738b",
"name": "prom-node-exporter__prom-node-exporter",
"href": "/systems/b5954d8e-363c-44ac-aa24-74c84eed738b",
"resource_id": "f0ae2433-6f24-3172-a482-13b2c2222727",
"type": "",
"platform_model": "monitoring",
"platform": "CONTAINERS",
"os": "Linux",
"manufacturer": "CONTAINERS",
"serial_number": "monitoring",
"hostId": "N/A",
"parent": "N/A",
"cpu_benchmarks": [
{
"name": "CINT2006 Rate",
"score_type": "cint2006rate",
"value": -1
}
],
"I/O_benchmarks": [
{
"name": "Maximum Disk Throughput (bytes/s)",
"score_type": "disk",
"value": -1
},
{
"name": "Maximum Network Throughput (bytes/s)",
"score_type": "net",
"value": -1
}
],
"attributes": [
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "container : prom-node-exporter"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "container_id : docker://6f47e8a2e1075d4b13ff20c932218d5d70e8dd04f306134e76c17a33626fa05a;docker://b60d263c2d70dd6aeaed7778d838955179ae822b3a888f21ae3fe9d308215673;docker://dcaa1f4aecb6ff4ea0791e9e5a1faf7dd4d078f73e81070d21aa2fd7fe3ebd49"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "image : docker.io/prom/node-exporter:latest"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "image_id : docker-pullable://docker.io/prom/node-exporter@sha256:55302581333c43d540db0e144cf9e7735423117a733cdec27716d87254221086;docker-pullable://docker.io/prom/node-exporter@sha256:c390c8fea4cd362a28ad5070aedd6515aacdfdffd21de6db42ead05e332be5a9"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "namespace : monitoring"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "owner_name : prom-node-exporter"
},
{
"id": "attr_ContainerInfo",
"name": "Container Info",
"value": "pod : prom-node-exporter-gfmgb;prom-node-exporter-9hxmh;prom-node-exporter-h2qwf"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "beta_kubernetes_io_arch : amd64"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "beta_kubernetes_io_os : linux"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "container_name : prom-node-exporter"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "id : /kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-podac6ee520_135a_11e8_9056_0050569e06ab.slice/docker-dcaa1f4aecb6ff4ea0791e9e5a1faf7dd4d078f73e81070d21aa2fd7fe3ebd49.scope;/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "image : docker.io/prom/node-exporter@sha256:c390c8fea4cd362a28ad5070aedd6515aacdfdffd21de6db42ead05e332be5a9;docker.io/prom/node-exporter@sha256:55302581333c43d540db0e144cf9e7735423117a733cdec27716d87254221086"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "instance : kube-minion1;kube-minion3.int.cirba.com;kube-minion2.int.cirba.com"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "job : kubernetes-cadvisor"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "kubernetes_io_hostname : kube-minion1;kube-minion3.int.cirba.com;kube-minion2.int.cirba.com"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "name : k8s_prom-node-exporter_prom-node-exporter-h2qwf_monitoring_ac6ee520-135a-11e8-9056-0050569e06ab_7;k8s_prom-node-exporter_prom-node-exporter-9hxmh_monitoring_ac702abc-135a-11e8-9056-0050569e06ab_9;k8s_prom-node-exporter_prom-node-exporter-gfmgb_monit"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "namespace : monitoring"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "owner_name : prom-node-exporter"
},
{
"id": "attr_ContainerLabels",
"name": "Container Labels",
"value": "pod_name : prom-node-exporter-h2qwf;prom-node-exporter-9hxmh;prom-node-exporter-gfmgb"
},
{
"id": "attr_ContainerName",
"name": "Container Name",
"value": "prom-node-exporter"
},
{
"id": "attr_ContainerRestarts",
"name": "Container Restarts",
"value": "9"
},
{
"id": "attr_CPULimitDetails",
"name": "CPU Limit Details",
"value": "Recommended allocation was capped due to minimum allowed value."
},
{
"id": "attr_CPURequestDetails",
"name": "CPU Request Details",
"value": "Recommended allocation was capped due to minimum allowed value."
},
{
"id": "attr_CreatedbyKind",
"name": "Created by Kind",
"value": "DaemonSet"
},
{
"id": "attr_CreatedbyName",
"name": "Created by Name",
"value": "prom-node-exporter"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion1"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion2.int.cirba.com"
},
{
"id": "attr_CurrentNodes",
"name": "Current Nodes",
"value": "kube-minion3.int.cirba.com"
},
{
"id": "attr_CurrentSize",
"name": "Current Size",
"value": "3"
},
{
"id": "attr_DataLastReceivedDate",
"name": "Data Last Received Date",
"value": "2019-01-16 14:26:39"
},
{
"id": "attr_DateFirstAudited",
"name": "Date First Audited",
"value": "2019-01-14 00:00:00.0"
},
{
"id": "attr_ExistingCPULimit",
"name": "Existing CPU Limit",
"value": "10"
},
{
"id": "attr_ExistingCPURequest",
"name": "Existing CPU Request",
"value": "10"
},
{
"id": "attr_ExistingMemoryLimit",
"name": "Existing Memory Limit",
"value": "40"
},
{
"id": "attr_ExistingMemoryRequest",
"name": "Existing Memory Request",
"value": "32"
},
{
"id": "attr_MemoryLimitDetails",
"name": "Memory Limit Details",
"value": "Recommended allocation meets all constraints."
},
{
"id": "attr_MemoryRequestDetails",
"name": "Memory Request Details",
"value": "Recommended allocation meets all constraints."
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "__name__ : kube_namespace_labels"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_NamespaceLabels",
"name": "Namespace Labels",
"value": "namespace : monitoring"
},
{
"id": "attr_NamespaceMemoryLimit",
"name": "Namespace Memory Limit",
"value": "512"
},
{
"id": "attr_NamespaceMemoryRequest",
"name": "Namespace Memory Request",
"value": "256"
},
{
"id": "attr_ObservedUptime",
"name": "Observed Uptime",
"value": "0.08"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "namespace : monitoring"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_is_controller : true"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "owner_name : prom-node-exporter"
},
{
"id": "attr_PodInfo",
"name": "Pod Info",
"value": "pod : prom-node-exporter-9hxmh;prom-node-exporter-gfmgb;prom-node-exporter-h2qwf"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "instance : 10.244.1.224:8080"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "job : kubernetes-service-endpoints"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "k8s_app : kube-state-metrics"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "kubernetes_name : kube-state-metrics"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "kubernetes_namespace : kube-system"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_controller_revision_hash : 1466127249"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_name : prom-node-exporter"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "label_pod_template_generation : 1"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "namespace : monitoring"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "owner_kind : DaemonSet"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "owner_name : prom-node-exporter"
},
{
"id": "attr_PodLabels",
"name": "Pod Labels",
"value": "pod : prom-node-exporter-9hxmh;prom-node-exporter-gfmgb;prom-node-exporter-h2qwf"
},
{
"id": "attr_PredictedUptime",
"name": "Predicted Uptime",
"value": "0.08"
},
{
"id": "attr_RecommendedCPULimit",
"name": "Recommended CPU Limit",
"value": "10.0"
},
{
"id": "attr_RecommendedCPURequest",
"name": "Recommended CPU Request",
"value": "10.0"
},
{
"id": "attr_RecommendedMemoryLimit",
"name": "Recommended Memory Limit",
"value": "40.0"
},
{
"id": "attr_RecommendedMemoryRequest",
"name": "Recommended Memory Request",
"value": "32.0"
},
{
"id": "aws:createtime",
"name": "Create Time",
"value": "2018-10-24 06:12:43.000"
},
{
"id": "state_power",
"name": "Power State",
"value": "Running"
},
{
"id": "VE_LOCATION_CLUSTER",
"name": "Virtual Cluster",
"value": "prom-node-exporter"
},
{
"id": "VE_LOCATION_DATACENTER",
"name": "Virtual Datacenter",
"value": "monitoring"
},
{
"id": "VE_LOCATION_DOMAIN",
"name": "Virtual Domain",
"value": "kube-master"
},
{
"id": "VE_LOCATION_TECH",
"name": "Virtual Technology",
"value": "Containers"
},
{
"id": "VE_VMWARE_MEMHOTADD",
"name": "VM Memory HotAdd",
"value": "FALSE"
},
{
"id": "VE_VMWARE_VCPUHOTADD",
"name": "VM CPU HotAdd",
"value": "FALSE"
},
{
"id": "vmotion_enabled",
"name": "VMotion Enabled",
"value": "N/A"
}
]
}
description: |-
After the detailed analysis of your cloud environment, Kubex generates recommendations to help you reduce risk and cost.
The next step is to decide which recommendations to action. Kubex provides useful additional details. The following requests demonstrate some of the available options.
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
description: |-
Before Kubex can make recommendations for optimizing your Kubernetes environment, data collection must be initiated. Once your instance data begins rolling in, the analysis are performed and recommendations generated.
See [Optimizing Kubernetes Containers](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Optimizing_Kubernetes_Containers.htm).
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
description: The analysis process is initiated automatically after data collection completes. Results can be immediately pulled from the Kubex API or pushed to a webhook URI once the analysis is complete.
- name: 4. Working with Webhooks
item:
- name: Adding a Webhook to an Analysis
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: |-
{
"uri": "Your_host",
"authType": "Your_host_authType",
"authValue": "Your_host_authPwd"
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/webhook/analysis/cloud/aws/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- webhook
- analysis
- cloud
- aws
- "{{analysisId}}"
description: |-
The /webhook/analysis resource is used to manage the webhook definition for a Kubex analysis. The webhook definition is the path and authentication to a third-party application, where recommendation results are POSTed when analysis completes.
The receiving application can process the resulting data for downstream consumption. For example, the receiving application can route recommendations to an orchestration engine or distribute reports to instance owners.
In this example, a webhook is added to an existing AWS analysis.
Notes:
> The `analysisId` environment variable is used to identify the Analysis to add the webhook. This variable was set in a previous request (see "Analyzing AWS" > "List all Generated Analyses"). If you want to add the webhook for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
> Modify the parameters in the Body of the POST request with your webhook host and authorization.
> You also have the option to define the webhook as part of the initial /analyze resource request (see "Analyzing AWS" > "Initiate Data Collection and Analysis").
See example. Refer to [Analysis Webhook](https://www.densify.com/docs-api/Content/API_Guide/Analysis_Webhook.htm).
response:
- name: Add a Webhook to an Analysis
originalRequest:
method: POST
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: |-
{
"uri": "Your_host",
"authType": "Your_host_authType",
"authValue": "Your_host_authPwd"
}
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/webhook/analysis/cloud/aws/9a5d2d55-6d85-4fde-8bab-fcd0cef8c5bf"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- webhook
- analysis
- cloud
- aws
- 9a5d2d55-6d85-4fde-8bab-fcd0cef8c5bf
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "29"
- key: Date
value: Wed, 20 Feb 2019 11:38:14 GMT
cookie: []
body: |-
{
"message": "ok",
"status": 200
}
- name: List all Analysis Webhooks
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"analysisId\", firstdata.analysisId);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/webhook/analysis/cloud/aws"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- webhook
- analysis
- cloud
- aws
description: |-
The GET /webhook/analysis/{{platform}}/{{subplatform}} resource is used to list the webhook definitions in Densify.
In this example, all of the webhook definitions are listed for AWS cloud analyses.
Notes:
> In this example, the environment variable `analysisId` is set to the first returned _analysisId_ element for future use.
See example. Refer to [Analysis Webhook](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Webhook.htm).
response:
- name: List all Analysis Webhooks
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/webhook/analysis/cloud/aws"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- webhook
- analysis
- cloud
- aws
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "196"
- key: Date
value: Wed, 20 Feb 2019 11:41:52 GMT
cookie: []
body: |-
[
{
"webHookStatus": "",
"analysisId": "9a5d2d55-6d85-4fde-8bab-fcd0cef8c5bf",
"href": "/webhook/analysis/cloud/aws/9a5d2d55-6d85-4fde-8bab-fcd0cef8c5bf",
"uri": "Your_host",
"analysisName": "524756828598"
}
]
- name: Get an Analysis Webhook
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/webhook/analysis/cloud/aws/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- webhook
- analysis
- cloud
- aws
- "{{analysisId}}"
description: |-
The GET /webhook/analysis/{{platform}}/{{subplatform}}/{{analysisId}} resource is used to return the details of a webhook definitions in Densify.
In this example, the details of a webhook definition is returned for an AWS cloud analysis.
Notes
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want the results for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
See example. Refer to [Analysis Webhook](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Webhook.htm).
response:
- name: Get an Analysis Webhook
originalRequest:
method: GET
header:
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/webhook/analysis/cloud/aws/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- webhook
- analysis
- cloud
- aws
- "{{analysisId}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "208"
- key: Date
value: Tue, 23 Jun 2020 20:18:42 GMT
cookie: []
body: |-
{
"webHookStatus": "",
"analysisId": "f311675a-f05d-4d07-b5e8-0f190438a9f6",
"href": "/webhook/analysis/cloud/aws/f311675a-f05d-4d07-b5e8-0f190438a9f6",
"uri": "https://yourDensifytest.com/app/webhooks",
"analysisName": "922390019409 (Mobile_Prod)"
}
- name: Update an Analysis Webhook
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: |-
{
"uri": "Your_updated_host",
"authType": "Your_host_authType",
"authValue": "Your_host_authPwd"
}
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/webhook/analysis/cloud/aws/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- webhook
- analysis
- cloud
- aws
- "{{analysisId}}"
description: |-
The PUT /webhook/analysis/{{platform}}/{{subplatform}}/{{analysisId}} resource is used to update a webhook definition in an existing Analysis.
In this example, the webhook definition is updated for a specific AWS cloud Analysis.
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want the results for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
> Modify the parameters in the Body of the request with your updated webhook host and authorization.
See example. Refer to [Analysis Webhook](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Webhook.htm).
response:
- name: Update an Analysis Webhook
originalRequest:
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: |-
{
"uri": "Your_updated_host",
"authType": "Your_host_authType",
"authValue": "Your_host_authPwd"
}
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/webhook/analysis/cloud/aws/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- webhook
- analysis
- cloud
- aws
- "{{analysisId}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "29"
- key: Date
value: Tue, 23 Jun 2020 20:25:01 GMT
cookie: []
body: |-
{
"message": "ok",
"status": 200
}
- name: Delete an Analysis Webhook
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header:
- key: Accept
type: text
value: application/json
body:
mode: raw
raw: ""
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/webhook/analysis/cloud/aws/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- webhook
- analysis
- cloud
- aws
- "{{analysisId}}"
description: |-
The DEL /webhook/analysis/{{platform}}/{{subplatform}}/{{analysisId}} resource is used to delete a webhook definition from an existing Analysis.
In this example, the webhook definition is removed from a specific AWS cloud Analysis.
Notes:
> The `analysisId` environment variable is used to identify the Analysis. This variable was set in a previous request. If you want to delete a webhook for a specific Analysis, modify the `analysisId` variable with your desired Analysis GUID in the Kubex environment.
See example. Refer to [Analysis Webhook](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Webhook.htm).
response:
- name: Delete an Analysis Webhook
originalRequest:
method: DELETE
header:
- key: Accept
type: text
value: application/json
body:
mode: raw
raw: ""
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/webhook/analysis/cloud/aws/{{analysisId}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- webhook
- analysis
- cloud
- aws
- "{{analysisId}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "29"
- key: Date
value: Tue, 23 Jun 2020 20:35:37 GMT
cookie: []
body: |-
{
"message": "ok",
"status": 200
}
description: "A\_webhook\_provides a path and authentication to a third-party application, where recommendation results can be sent when the analysis completes. The receiving application can process the resulting data for downstream consumption. See [Analysis: Webhook](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Analysis_Webhook.htm) for configuration details."
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 5. Subscribing to Recommendations
item:
- name: 5.1 Reviewing Existing Subscriptions Artifacts
item:
- name: Reviewing the Subscriptions Cloud Tags Catalog
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i You have access to only global attribute tags or tags owned by you.
> In this example, the following environment variables are set for future use:
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: Reviewing the Subscriptions Cloud Tags Catalog
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Mon, 24 Aug 2020 22:29:06 GMT
cookie: []
body: |-
[
{
"tagRef": "11800983-6fda-46d0-9690-b5d55f539dc8",
"tagName": "Business Applications",
"aliasName": "businessApplications",
"attributeName": "Business Applications",
"owner": ""
},
{
"tagRef": "1b30be08-2bba-467d-9e51-223e2155f5bb",
"tagName": "AWS Name",
"aliasName": "awsName",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "Name : ",
"owner": ""
},
{
"tagRef": "1bcb2322-3081-43d9-bca7-22b40b33b19d",
"tagName": "AWS OS",
"aliasName": "awsOS",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "OS : ",
"owner": ""
},
{
"tagRef": "399a7661-9259-45a5-8b32-4ac7b098cba9",
"tagName": "Observed Uptime",
"aliasName": "observedUptime",
"attributeName": "Observed Uptime",
"owner": ""
},
{
"tagRef": "568e8a59-1bfb-44be-b60d-41dde6d614d6",
"tagName": "Virtual Cluster",
"aliasName": "virtualCluster",
"attributeName": "Virtual Cluster",
"owner": ""
},
{
"tagRef": "613a12b2-a82b-4a48-a7fc-779e62309d55",
"tagName": "Predicted Uptime",
"aliasName": "predictedUptime",
"attributeName": "Predicted Uptime",
"owner": ""
},
{
"tagRef": "664df978-23b7-44f7-a3ad-465fb0eb55ae",
"tagName": "Resource Tags",
"aliasName": "resourceTags",
"attributeName": "Resource Tags",
"owner": ""
},
{
"tagRef": "679f15ff-c196-4c56-8fd3-90ba3dbc8948",
"tagName": "Availability Zone",
"aliasName": "availabilityZone",
"attributeName": "Availability Zone",
"owner": ""
},
{
"tagRef": "785ef02b-5208-4c37-b67b-4b1703ea9f1f",
"tagName": "Product Code",
"aliasName": "productCode",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "Product Code : ",
"owner": ""
},
{
"tagRef": "7c8480a7-41f8-4c7e-be39-7d0805f621cc",
"tagName": "License Group",
"aliasName": "licenseGroup",
"attributeName": "License Group",
"owner": ""
},
{
"tagRef": "8a556754-f7d2-4098-a3f5-c6777e2be697",
"tagName": "AWS Owner",
"aliasName": "awsOwner",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "Owner : ",
"owner": ""
},
{
"tagRef": "8e760948-4d46-466d-8b14-eadacf33cf81",
"tagName": "Virtual Datacenter",
"aliasName": "Virtual Datacenter",
"attributeName": "Virtual Datacenter",
"owner": ""
},
{
"tagRef": "9879308e-3162-499b-8fe5-7fd67e627079",
"tagName": "Department",
"aliasName": "department",
"attributeName": "Department",
"owner": ""
},
{
"tagRef": "b8456346-9c9f-4ad6-a6af-0c726ffbf41d",
"tagName": "OS Architecture",
"aliasName": "architecture",
"attributeName": "OS Architecture",
"owner": ""
},
{
"tagRef": "be3cdc69-962e-4461-b8c3-07cec8e712be",
"tagName": "Virtual Domain",
"aliasName": "awsAccount",
"attributeName": "Virtual Domain",
"owner": ""
},
{
"tagRef": "d54424ad-bf7d-4bad-999a-ef875da1b890",
"tagName": "Application",
"aliasName": "application",
"attributeName": "Application",
"owner": ""
},
{
"tagRef": "df05012b-94c0-4e8a-84dd-07cd47402098",
"tagName": "VPC ID",
"aliasName": "vpcID",
"attributeName": "VPC ID",
"owner": ""
},
{
"tagRef": "e4558ad1-0a39-428a-a24e-8e958debfd60",
"tagName": "AWS Environment",
"aliasName": "awsEnvironment",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "Env : ",
"owner": ""
},
{
"tagRef": "eaba1b11-800f-40b7-855b-2f06a30e3ca4",
"tagName": "RDS Multi-AZ Deployment",
"aliasName": "RDSmultiAZ",
"attributeName": "__ RDS Multi-AZ Deployment",
"owner": ""
},
{
"tagRef": "f1ca64cb-63d7-4e06-961d-b2a4545b82d3",
"tagName": "AWS Inventory Code",
"aliasName": "inventoryCode",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "Inventory Code : ",
"owner": ""
}
]
- name: Reviewing the Subscriptions Container Tags Catalog
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i You have access to only global attribute tags or tags owned by you.
> In this example, the following environment variables are set for future use:
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: Reviewing the Subscriptions Containers Tags Catalog
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- tags
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "820"
- key: Date
value: Mon, 24 Aug 2020 22:34:27 GMT
cookie: []
body: |-
[
{
"tagRef": "17d17ac1-52c0-4e4a-a34d-0dd787c6b5d2",
"tagName": "Virtual Datacenter",
"aliasName": "virtualDatacenter",
"attributeName": "Virtual Datacenter",
"owner": ""
},
{
"tagRef": "5cfb1b8d-b462-40f3-9783-624b3c2127d5",
"tagName": "Resource Tags",
"aliasName": "resourceTags",
"attributeName": "Resource Tags",
"owner": ""
},
{
"tagRef": "acc99dbc-d21c-4c7d-a160-c62e8295dae1",
"tagName": "My Container Labels",
"aliasName": "containerLabels",
"attributeName": "Container Labels",
"owner": ""
},
{
"tagRef": "cf424bf2-79ac-4031-aa68-e941327609c2",
"tagName": "Virtual Domain",
"aliasName": "virtualDomain",
"attributeName": "Virtual Domain",
"owner": ""
},
{
"tagRef": "e61b3263-b715-4bc8-8310-a2bb7145f9e1",
"tagName": "ContainerPodName",
"aliasName": "containerPodName",
"attributeName": "Container Labels",
"technology": "CONTAINER",
"key": "pod_name : ",
"owner": ""
}
]
- name: Reviewing the Subscriptions Cloud Recommendation Properties Catalog
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i You have access to global properties or properties owned by you.
> In this example, the following environment variables are set for future use:
See example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm).
response:
- name: Reviewing the Subscriptions Cloud Recommendation Properties Catalog
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Tue, 25 Aug 2020 21:54:08 GMT
cookie: []
body: |-
[
{
"propertyRef": "020700b3-0dd5-4eb4-8863-b87945e38b66",
"propertyName": "avgInstanceCountCurrent",
"aliasName": "avgInstanceCountCurrent",
"owner": ""
},
{
"propertyRef": "03f37e58-98e6-49e7-b23c-688ebc7cb0a6",
"propertyName": "densifyPolicy",
"aliasName": "densifyPolicy",
"owner": ""
},
{
"propertyRef": "08d84679-1816-4cd7-b766-e4ad441b9a6c",
"propertyName": "recommendationType",
"aliasName": "Optimization Type Property",
"owner": ""
},
{
"propertyRef": "095686f0-2fff-4697-9da0-65aa925ae560",
"propertyName": "auditInfo.workloadDataLast30.firstDate",
"aliasName": "last30_firstDate",
"owner": ""
},
{
"propertyRef": "13b41a07-6e83-478c-91bb-95094b1de8b9",
"propertyName": "auditInfo.dataCollection.dateLastAudited",
"aliasName": "dc_lastAudited",
"owner": ""
},
{
"propertyRef": "183b1f50-a20b-4d29-a488-8ba53bbf7c40",
"propertyName": "currentType",
"aliasName": "currentType",
"owner": ""
},
{
"propertyRef": "1bf216fd-e473-4099-a05d-a2077e26b02b",
"propertyName": "powerState",
"aliasName": "powerState",
"owner": ""
},
{
"propertyRef": "1cce0da5-1fc8-4a96-8149-b855b0e81a50",
"propertyName": "rptHref",
"aliasName": "rptHref",
"owner": ""
},
{
"propertyRef": "1dd76248-a503-40b1-9303-e990bbad7818",
"propertyName": "recommSeenCount",
"aliasName": "recommSeenCount",
"owner": ""
},
{
"propertyRef": "21f619c0-2d68-4c28-a118-bf9a3714d3cf",
"propertyName": "recommendedHourlyRate",
"aliasName": "recommendedHourlyRate",
"owner": ""
},
{
"propertyRef": "28055f7f-3ab0-437f-888c-26bafc84afa4",
"propertyName": "totalHoursRunning",
"aliasName": "totalHoursRunning",
"owner": ""
},
{
"propertyRef": "335c03f5-408e-43f7-a0e8-57a64f151af2",
"propertyName": "implementationMethod",
"aliasName": "implementationMethod",
"owner": ""
},
{
"propertyRef": "352f0d05-e403-4fa5-805b-601573300576",
"propertyName": "dataQuality.lastSeen",
"aliasName": "dq_lastSeen",
"owner": ""
},
{
"propertyRef": "3e0cd7e7-c80e-412f-bc96-c05df6c64749",
"propertyName": "auditInfo.dataCollection.dateFirstAudited",
"aliasName": "dc_firstAudited",
"owner": ""
},
{
"propertyRef": "3ecd65ab-1b8c-440d-8fc0-317e06e7cb8b",
"propertyName": "currentHourlyRate",
"aliasName": "currentHourlyRate",
"owner": ""
},
{
"propertyRef": "407597e2-0531-4696-a27d-f7449d2a568c",
"propertyName": "auditInfo.workloadDataLast30.totalDays",
"aliasName": "last30_totalDays",
"owner": ""
},
{
"propertyRef": "50b22373-aeb3-405a-b635-1c672b492b1b",
"propertyName": "entityId",
"aliasName": "Entity ID",
"owner": "saas"
},
{
"propertyRef": "5c7d3910-a0e4-463f-a35b-4ce1425bc646",
"propertyName": "dataQuality.partialDays",
"aliasName": "dq_partialDays",
"owner": ""
},
{
"propertyRef": "5d83a2b9-0fd4-4379-a3da-497c0a4ba182",
"propertyName": "recommendedHostEntityId",
"aliasName": "recommendedHostEntityId",
"owner": ""
},
{
"propertyRef": "5ee70a01-21b3-4630-8642-0abe29c572f3",
"propertyName": "approvalType",
"aliasName": "approvalType",
"owner": ""
},
{
"propertyRef": "6a69227c-5438-4d59-b189-6edcbcf42cf9",
"propertyName": "minGroupCurrent",
"aliasName": "minGroupCurrent",
"owner": ""
},
{
"propertyRef": "6ce57627-817c-4eb6-a5c2-c9c680eedb40",
"propertyName": "recommendedCost",
"aliasName": "recommendedCost",
"owner": ""
},
{
"propertyRef": "6d3bc631-34d0-4aba-8fba-dce5a24be187",
"propertyName": "auditInfo.workloadDataLast30.lastDate",
"aliasName": "last30_lastDate",
"owner": ""
},
{
"propertyRef": "6da13834-8f14-4fc5-90c9-f080672503cc",
"propertyName": "recommLastSeen",
"aliasName": "recommLastSeen",
"owner": ""
},
{
"propertyRef": "731f1902-bcad-4932-b5b4-ee479affb8d8",
"propertyName": "maxGroupRecommended",
"aliasName": "maxGroupRecommended",
"owner": ""
},
{
"propertyRef": "7806186c-9231-49c2-99e7-c7fb5855321e",
"propertyName": "region",
"aliasName": "region",
"owner": ""
},
{
"propertyRef": "7cc4d979-46ac-4701-96eb-6966facca7e5",
"propertyName": "currentCost",
"aliasName": "currentCost",
"owner": ""
},
{
"propertyRef": "81bf68a8-c33c-45cd-8da7-162930986394",
"propertyName": "accountIdRef",
"aliasName": "accountIdRef",
"owner": ""
},
{
"propertyRef": "88695e33-19c4-4813-819a-31e59322da6e",
"propertyName": "entityId",
"aliasName": "entityId",
"owner": ""
},
{
"propertyRef": "8e7d0bd0-c32f-45c2-9bc4-4de67f7b4642",
"propertyName": "minGroupRecommended",
"aliasName": "minGroupRecommended",
"owner": ""
},
{
"propertyRef": "90fc4303-596d-43a9-a6dd-eab9203e0601",
"propertyName": "auditInfo.workloadDataLast30.seenDays",
"aliasName": "last30_seenDays",
"owner": ""
},
{
"propertyRef": "96c25aac-3a44-43fa-81f0-38cc1c4a148d",
"propertyName": "avgInstanceCountRecommended",
"aliasName": "avgInstanceCountRecommended",
"owner": ""
},
{
"propertyRef": "a18dd996-f9c2-44ec-a3b8-539429a0e2d7",
"propertyName": "auditInfo.dataCollection.auditCount",
"aliasName": "dc_auditCount",
"owner": ""
},
{
"propertyRef": "a6609377-ea67-4e7c-8880-36e2bde35ed8",
"propertyName": "maxGroupCurrent",
"aliasName": "maxGroupCurrent",
"owner": ""
},
{
"propertyRef": "a834e79b-1a89-47cf-b68b-4cf3bb444def",
"propertyName": "resourceId",
"aliasName": "resourceId",
"owner": ""
},
{
"propertyRef": "b20b2499-e901-4d79-873c-5e953ae8be33",
"propertyName": "effortEstimate",
"aliasName": "effortEstimate",
"owner": ""
},
{
"propertyRef": "b4e7260f-1aae-4150-b75d-1b1234075500",
"propertyName": "serviceType",
"aliasName": "serviceType",
"owner": ""
},
{
"propertyRef": "b5ba575b-43eb-496a-8364-5276d7a4b0d1",
"propertyName": "dataQuality.firstSeen",
"aliasName": "dq_firstSeen",
"owner": ""
},
{
"propertyRef": "bfa1ab52-1bb6-4fa8-b841-fc015c7b48e3",
"propertyName": "dataQuality.completeDays",
"aliasName": "dq_completeDays",
"owner": ""
},
{
"propertyRef": "cebcd841-89d8-4007-a4c6-1f0b06723db4",
"propertyName": "savingsEstimate",
"aliasName": "savingsEstimate",
"owner": ""
},
{
"propertyRef": "da3256c8-98a4-42f8-b59b-e4537b4bb72b",
"propertyName": "currentRiCoverage",
"aliasName": "currentRiCoverage",
"owner": ""
},
{
"propertyRef": "dfc370e2-4078-4473-8647-5a5cc59836e4",
"propertyName": "dataQuality.workloadName",
"aliasName": "dq_workloadName",
"owner": ""
},
{
"propertyRef": "e1a10386-5fe8-480d-b6cc-7e049ffcd03d",
"propertyName": "currentDesiredCapacity",
"aliasName": "currentDesiredCapacity",
"owner": ""
},
{
"propertyRef": "e2ae92c5-91c7-4ff5-a29f-99aa92d65178",
"propertyName": "name",
"aliasName": "name",
"owner": ""
},
{
"propertyRef": "e5d14521-44e7-41e1-98eb-d86737c36c74",
"propertyName": "deferRecommendation",
"aliasName": "deferRecommendation",
"owner": ""
},
{
"propertyRef": "ed52f33e-2ed7-4035-be0d-6fdcb46e7cc2",
"propertyName": "recommFirstSeen",
"aliasName": "recommFirstSeen",
"owner": ""
},
{
"propertyRef": "effced63-d6c6-4d47-b2d4-c6b003884cdf",
"propertyName": "recommendedType",
"aliasName": "Recommended Instance Type Property",
"owner": ""
},
{
"propertyRef": "f2a38773-db60-478a-9982-1a2d1ba7d380",
"propertyName": "predictedUptime",
"aliasName": "propertyPredictedUptime",
"owner": ""
},
{
"propertyRef": "f3a0add1-7ce1-4b44-a038-e5cab03dbc9a",
"propertyName": "effortEstimate",
"aliasName": "effortEstimate",
"owner": ""
}
]
- name: Reviewing the Subscriptions Container Recommendation Properties Catalog
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i You have access to global properties or properties owned by you.
> In this example, the following environment variables are set for future use:
See example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm).
response:
- name: Reviewing the Subscriptions Container Recommendation Properties Catalog
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Tue, 25 Aug 2020 21:57:09 GMT
cookie: []
body: |-
[
{
"propertyRef": "11156859-47b2-4a38-a1d8-b553843ccaee",
"propertyName": "recommFirstSeen",
"aliasName": "recommFirstSeen",
"owner": ""
},
{
"propertyRef": "14412361-5289-4725-86ab-a69d5892463a",
"propertyName": "auditInfo.workloadDataLast30.lastDate",
"aliasName": "last30_lastDate",
"owner": ""
},
{
"propertyRef": "14e36a7e-50c8-49a6-8116-e5d4e224c5b8",
"propertyName": "dataQuality.completeDays",
"aliasName": "dq_completeDays",
"owner": ""
},
{
"propertyRef": "27d43c21-9cd6-49bb-b900-36d4470918ca",
"propertyName": "recommendedCpuRequest",
"aliasName": "recommendedCpuRequest",
"owner": ""
},
{
"propertyRef": "3dc336d8-0460-4627-ac90-7a3371801a05",
"propertyName": "auditInfo.workloadDataLast30.firstDate",
"aliasName": "last30_firstDate",
"owner": ""
},
{
"propertyRef": "3f386409-314f-4866-a857-1fc4c9848be9",
"propertyName": "auditInfo.dataCollection.auditCount",
"aliasName": "dc_auditCount",
"owner": ""
},
{
"propertyRef": "3f6485a0-5106-4d25-a7c5-13f4270462ef",
"propertyName": "controllerType",
"aliasName": "controllerType",
"owner": ""
},
{
"propertyRef": "49eb036a-4624-4ddf-9669-246d79e729b2",
"propertyName": "recommLastSeen",
"aliasName": "recommLastSeen",
"owner": ""
},
{
"propertyRef": "4c9b14a2-f38d-463a-aa40-576e27898faf",
"propertyName": "dataQuality.workloadName",
"aliasName": "dq_workloadName",
"owner": ""
},
{
"propertyRef": "4da38d9b-4bd2-4bf3-a8ad-aabc33061033",
"propertyName": "auditInfo.workloadDataLast30.totalDays",
"aliasName": "last30_totalDays",
"owner": ""
},
{
"propertyRef": "52a8fe7f-5189-4c3a-beb9-44044a4c38f6",
"propertyName": "hostName",
"aliasName": "hostName",
"owner": ""
},
{
"propertyRef": "57518fbe-c33e-4197-806e-f210b9bc60dd",
"propertyName": "entityId",
"aliasName": "entityId",
"owner": ""
},
{
"propertyRef": "5d589b40-31fa-4220-ae7c-f6f4b6245c92",
"propertyName": "recommSeenCount",
"aliasName": "recommSeenCount",
"owner": ""
},
{
"propertyRef": "60653ecf-1eba-4869-bc44-7bf034b5a440",
"propertyName": "dataQuality.lastSeen",
"aliasName": "dq_lastSeen",
"owner": ""
},
{
"propertyRef": "6184d602-983b-4287-9ddc-3996c89042c6",
"propertyName": "predictedUptime",
"aliasName": "predictedUptime",
"owner": ""
},
{
"propertyRef": "70be8edc-20ad-401a-a54f-57363d54e94b",
"propertyName": "recommendedMemRequest",
"aliasName": "recommendedMemRequest",
"owner": ""
},
{
"propertyRef": "72a4d777-cfb1-4179-9710-d2363b477f96",
"propertyName": "recommendedCpuLimit",
"aliasName": "recommendedCpuLimit",
"owner": ""
},
{
"propertyRef": "768c97b9-8956-463a-8de1-c52899c07c97",
"propertyName": "dataQuality.partialDays",
"aliasName": "dq_partialDays",
"owner": ""
},
{
"propertyRef": "78f306e0-aba9-44ca-897e-3c94aa93ad98",
"propertyName": "currentCpuLimit",
"aliasName": "currentCpuLimit",
"owner": ""
},
{
"propertyRef": "8243d912-a49e-42e8-9171-8373711ae5eb",
"propertyName": "currentCpuRequest",
"aliasName": "currentCpuRequest",
"owner": ""
},
{
"propertyRef": "8844fe4a-61eb-4231-aab3-138d278b94da",
"propertyName": "displayName",
"aliasName": "displayName",
"owner": ""
},
{
"propertyRef": "91865a1e-bb21-4f5d-ab58-8bbdb4386d18",
"propertyName": "hostName",
"aliasName": "hostName",
"owner": ""
},
{
"propertyRef": "938f59b0-535f-4af6-985a-5d4b38ab0009",
"propertyName": "namespace",
"aliasName": "namespace",
"owner": ""
},
{
"propertyRef": "9a2b99c1-5003-4fb4-8ccb-7e2afa484a6c",
"propertyName": "auditInfo.dataCollection.dateFirstAudited",
"aliasName": "dc_firstAudited",
"owner": ""
},
{
"propertyRef": "a490ea95-fd06-4265-9a58-540539d2f4c5",
"propertyName": "auditInfo.dataCollection.dateLastAudited",
"aliasName": "dc_lastAudited",
"owner": ""
},
{
"propertyRef": "a836c947-5999-48d1-b911-e19007355e94",
"propertyName": "currentMemLimit",
"aliasName": "currentMemLimit",
"owner": ""
},
{
"propertyRef": "a865a463-a257-4efb-b345-8b3694264dcf",
"propertyName": "currentMemRequest",
"aliasName": "currentMemRequest",
"owner": ""
},
{
"propertyRef": "afe8e28a-ed28-426f-8045-b8ce31887da8",
"propertyName": "auditInfo.workloadDataLast30.seenDays",
"aliasName": "last30_seenDays",
"owner": ""
},
{
"propertyRef": "bf244706-ae4c-4a23-ada5-7757ec4b269b",
"propertyName": "podService",
"aliasName": "podService",
"owner": ""
},
{
"propertyRef": "cdd55c17-3797-4154-a13a-b451c5afbc0c",
"propertyName": "currentCount",
"aliasName": "currentCount",
"owner": ""
},
{
"propertyRef": "da544810-d422-41fc-9054-668cf87a3109",
"propertyName": "dataQuality.firstSeen",
"aliasName": "dq_firstSeen",
"owner": ""
},
{
"propertyRef": "e5cd6e74-050c-4747-9b39-1e8c5c6fc47d",
"propertyName": "container",
"aliasName": "container",
"owner": ""
},
{
"propertyRef": "e61ad088-ba24-4ce1-94f9-d6e9a1fb97b0",
"propertyName": "cluster",
"aliasName": "cluster",
"owner": ""
},
{
"propertyRef": "e634e944-be90-47f2-9743-954bc883d544",
"propertyName": "recommendedMemLimit",
"aliasName": "recommendedMemLimit",
"owner": ""
},
{
"propertyRef": "ec58bb3d-6dad-490a-b862-30012063a51b",
"propertyName": "recommendationType",
"aliasName": "recommendationType",
"owner": ""
}
]
- name: Review Subscription Cloud Suppressions Catalog
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i You have access to global suppressions or suppressions owned by you.
> In this example, the following suppression reference variables are saved for future use:
See example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm).
response:
- name: Review Subscription Cloud Suppressions Catalog
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/api/v2/subscriptions/cloud/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- api
- v2
- subscriptions
- cloud
- suppressions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "1500"
- key: Date
value: Tue, 25 Aug 2020 22:15:25 GMT
cookie: []
body: |-
[
{
"suppressionRef": "03922061-96eb-450b-a30f-a397a19c9a6f",
"suppressionName": "Effort Estimate",
"propertyName": "effortEstimate",
"aliasName": "supprEffortEstimate",
"owner": ""
},
{
"suppressionRef": "29150379-9252-498d-a59d-de47d183eee8",
"suppressionName": "Approval Type",
"propertyName": "approvalType",
"aliasName": "supprApprovalType",
"owner": ""
},
{
"suppressionRef": "61acf182-1773-4988-b4d9-a76c866b5c68",
"suppressionName": "Business Applications",
"attributeName": "Business Applications",
"aliasName": "supprBusinessApplications",
"owner": ""
},
{
"suppressionRef": "93dba027-8391-4303-b413-7c4cb41ec5e9",
"suppressionName": "Suppress Region",
"propertyName": "region",
"aliasName": "supprRegion",
"owner": ""
},
{
"suppressionRef": "a6827ae4-fa2b-405e-a564-d70f2dad45c2",
"suppressionName": "recommendationType",
"propertyName": "recommendationType",
"aliasName": "supprRecommendationType",
"owner": ""
},
{
"suppressionRef": "ae0bf909-c8dd-4732-9068-c9c5fcc16b9e",
"suppressionName": "Suppress Account",
"propertyName": "accountIdRef",
"aliasName": "supprAccount",
"owner": ""
},
{
"suppressionRef": "c27b5c5e-89d2-4194-8fd9-f4dc70a39678",
"suppressionName": "Suppress Department",
"attributeName": "Department",
"aliasName": "supprDept",
"owner": ""
},
{
"suppressionRef": "c6da9e05-92be-4ec6-9892-7a2ed68d57f0",
"suppressionName": "Instance Name",
"propertyName": "name",
"aliasName": "supprName",
"owner": ""
},
{
"suppressionRef": "feec2349-3c69-4aea-b5f0-2cf7be4deb87",
"suppressionName": "Entity ID",
"propertyName": "entityId",
"aliasName": "supprEntityID",
"owner": ""
}
]
- name: Review Subscription Container Suppressions Catalog
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- suppressions
description: |-
Get the list of default container suppressions provided by Kubex for review. You can modify or add to this list using the _/subscriptions/containers/suppressions_ resource.
Use the suppression reference IDs in this list for your container subscription definition to suppress certain containers in the returned response.
Note:
> You have access to global suppressions or suppressions owned by you.
See example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm).
response:
- name: Review Subscription Container Suppressions Catalog
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/api/v2/subscriptions/containers/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- api
- v2
- subscriptions
- containers
- suppressions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "184"
- key: Date
value: Tue, 25 Aug 2020 22:17:36 GMT
cookie: []
body: |-
[
{
"suppressionRef": "fdc363b2-523c-4bb5-bdbf-a4f4ef994487",
"suppressionName": "RecommendedMemRequest",
"propertyName": "recommendedMemRequest",
"aliasName": "supprRecMemRequest",
"owner": ""
}
]
- name: Reviewing Existing Cloud Subscriptions
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"subscriptionRef\", firstdata.subscriptionRef);\r"
- " }"
type: text/javascript
protocolProfileBehavior:
disableBodyPruning: true
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Content-Type
type: text
value: application/json
- key: Accept
type: text
value: application/json
body:
mode: raw
raw: ""
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
description: |-
Get definition details of all global and private cloud subscriptions available to you for review.
Note:
> If you are an administrative user, you have access to all global and all private subscriptions.
> If you are a non-administrative user, you have access to global and your own private subscriptions.
> In this example, the `subscriptionRef` environment variable is set to the first subscription reference ID, for furture use.
See example. Refer to [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm).
response:
- name: Reviewing Existing Cloud Subscriptions
originalRequest:
method: GET
header:
- key: Content-Type
type: text
value: application/json
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Tue, 25 Aug 2020 22:11:00 GMT
cookie: []
body: |-
[
{
"subscriptionRef": "158a244c-7f74-49a8-a0ea-78823898fa56",
"subscriptionName": "abc",
"description": "def",
"owner": "",
"outputType": "application/json",
"active": false,
"propertyReferences": [
{
"values": [
"Running"
],
"propertyID": "1bf216fd-e473-4099-a05d-a2077e26b02b",
"operator": "="
}
],
"returnStructure": {
"properties": [
{
"useAlias": true,
"propertyID": "6ce57627-817c-4eb6-a5c2-c9c680eedb40"
},
{
"propertyID": "1bf216fd-e473-4099-a05d-a2077e26b02b"
},
{
"propertyID": "e2ae92c5-91c7-4ff5-a29f-99aa92d65178"
}
]
},
"webhookStatus": "",
"lastTriggered": "On-Demand Success. Tue Aug 11 17:42:03 UTC 2020"
},
{
"subscriptionRef": "85f6a1e6-6c5d-4f97-b9cb-2adf301dfd6c",
"subscriptionName": "testx",
"description": "testx",
"owner": "",
"outputType": "application/json",
"active": false,
"propertyReferences": [
{
"values": [
"0"
],
"propertyID": "cebcd841-89d8-4007-a4c6-1f0b06723db4",
"operator": ">"
},
{
"values": [
"asg",
"rds"
],
"propertyID": "b4e7260f-1aae-4150-b75d-1b1234075500",
"operator": "="
},
{
"values": [
"Running"
],
"propertyID": "1bf216fd-e473-4099-a05d-a2077e26b02b",
"operator": "="
}
],
"returnStructure": {},
"webhookStatus": "",
"lastTriggered": "On-Demand Success. Tue Aug 11 17:32:10 UTC 2020"
},
{
"subscriptionRef": "90f079d3-ae61-46d5-97ab-050eae933384",
"subscriptionName": "notanalyzed",
"description": "Not Analyzed",
"owner": "",
"outputType": "application/json",
"active": false,
"propertyReferences": [
{
"values": [
"Not Analyzed"
],
"propertyID": "08d84679-1816-4cd7-b766-e4ad441b9a6c",
"operator": "="
}
],
"returnStructure": {},
"webhookStatus": "",
"lastTriggered": "On-Demand Success. Tue Aug 11 18:03:01 UTC 2020"
},
{
"subscriptionRef": "91be1366-93af-4474-8c2f-abfdb8823ac4",
"subscriptionName": "x",
"description": "x",
"owner": "",
"outputType": "application/json",
"active": false,
"propertyReferences": [
{
"values": [
"asg",
"rds",
"ec2"
],
"propertyID": "b4e7260f-1aae-4150-b75d-1b1234075500",
"operator": "="
}
],
"returnStructure": {},
"webhookStatus": "",
"lastTriggered": ""
},
{
"subscriptionRef": "98556bc2-8847-468b-8f99-d72000a3119b",
"subscriptionName": "Test Subscription 3",
"description": "A subscription with 50-100% uptime",
"owner": "",
"outputType": "application/JSON",
"active": true,
"webhook": {
"uri": "https://192.168.100.100:443/test/webhook",
"authType": "basic",
"authValue": "test:test"
},
"propertyReferences": [
{
"values": [
50,
100
],
"propertyID": "f2a38773-db60-478a-9982-1a2d1ba7d380",
"operator": "[]"
}
],
"suppressionReferences": [
{
"values": [
"Terminate"
],
"suppressionID": "a6827ae4-fa2b-405e-a564-d70f2dad45c2",
"operator": "="
}
],
"returnStructure": {
"properties": [
{
"useAlias": true,
"propertyID": "e2ae92c5-91c7-4ff5-a29f-99aa92d65178"
},
{
"propertyID": "cebcd841-89d8-4007-a4c6-1f0b06723db4"
},
{
"propertyID": "183b1f50-a20b-4d29-a488-8ba53bbf7c40"
},
{
"useAlias": true,
"propertyID": "b4e7260f-1aae-4150-b75d-1b1234075500"
}
],
"tags": [
{
"tagID": "11800983-6fda-46d0-9690-b5d55f539dc8"
}
]
},
"webhookStatus": "Failure. javax.net.ssl.SSLException: Connection reset Tue Aug 11 15:48:59 UTC 2020",
"lastTriggered": "Scheduled Failure. javax.net.ssl.SSLException: Connection resetTue Aug 11 15:48:59 UTC 2020"
},
{
"subscriptionRef": "df046713-8760-4d6b-bc82-699597a21254",
"subscriptionName": "asg",
"description": "asg",
"owner": "",
"outputType": "application/json",
"active": false,
"propertyReferences": [
{
"values": [
"asg"
],
"propertyID": "b4e7260f-1aae-4150-b75d-1b1234075500",
"operator": "="
}
],
"returnStructure": {},
"webhookStatus": "",
"lastTriggered": ""
},
{
"subscriptionRef": "e5d91853-0dec-4a35-8922-d8215430928e",
"subscriptionName": "Test Subscription 2 - global",
"description": "A global subscription test",
"owner": "",
"outputType": "application/JSON",
"active": true,
"webhook": {
"uri": "https://192.168.22.210:443/densify/test/webhook",
"authType": "bearer",
"authValue": "eyJhbGciOiJIUzUxMiJ9.eyJqdGkiOiI1MDU5NDg5MS00OWI4LTRhOGEtYWM4Mi1mMWQxNjRkZTNiYmUiLCJpYXQiOjE1OTY4MzM4MjEsInN1YiI6ImFkbWluIiwiaXNzIjoiRGVuc2lmeS5jb20iLCJleHAiOjE1OTY4Mzc0MjF9.v0ET0RLNIfeG4BmZ67-iP29pNolIZXswFOubwej8d5LsznOqhZhny-om6G4RVZdp2CmzNhxXNPO3jBxcVDjpBw"
},
"propertyReferences": [
{
"values": [
10
],
"propertyID": "7cc4d979-46ac-4701-96eb-6966facca7e5",
"operator": ">="
}
],
"suppressionReferences": [
{
"values": [
"Terminate"
],
"suppressionID": "a6827ae4-fa2b-405e-a564-d70f2dad45c2",
"operator": "="
}
],
"returnStructure": {
"properties": [
{
"useAlias": true,
"propertyID": "cebcd841-89d8-4007-a4c6-1f0b06723db4"
},
{
"propertyID": "08d84679-1816-4cd7-b766-e4ad441b9a6c"
},
{
"propertyID": "183b1f50-a20b-4d29-a488-8ba53bbf7c40"
},
{
"propertyID": "effced63-d6c6-4d47-b2d4-c6b003884cdf"
},
{
"propertyID": "e2ae92c5-91c7-4ff5-a29f-99aa92d65178"
}
],
"tags": [
{
"tagID": "1b30be08-2bba-467d-9e51-223e2155f5bb"
},
{
"tagID": "11800983-6fda-46d0-9690-b5d55f539dc8"
}
]
},
"webhookStatus": "Failure. java.net.ConnectException: Connection refused (Connection refused) Tue Aug 11 15:48:59 UTC 2020",
"lastTriggered": "Scheduled Failure. java.net.ConnectException: Connection refused (Connection refused)Tue Aug 11 15:48:59 UTC 2020"
}
]
- name: Reviewing Existing Container Subscriptions
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 0)\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"subscriptionRef\", firstdata.subscriptionRef);\r"
- " }"
type: text/javascript
protocolProfileBehavior:
disableBodyPruning: true
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Content-Type
type: text
value: application/json
- key: Accept
type: text
value: application/json
body:
mode: raw
raw: ""
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
description: |-
Get definition details of all global and private container subscriptions available to you for review.
Note:
> If you are an administrative user, you have access to all global and all private subscriptions.
> If you are a non-administrative user, you have access to global and your own private subscriptions.
> In this example, the `subscriptionRef` environment variable is set to the first subscription reference ID, for furture use.
See example. Refer to [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm).
response:
- name: Reviewing Existing Container Subscriptions
originalRequest:
method: GET
header:
- key: Content-Type
type: text
value: application/json
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Sat, 29 Aug 2020 00:29:54 GMT
cookie: []
body: |-
[
{
"subscriptionRef": "068b2c96-a505-45db-9c9c-9a72bc1c553e",
"subscriptionName": "recomm",
"description": "recomm",
"owner": "",
"outputType": "application/json",
"active": false,
"propertyReferences": [
{
"values": [
"0"
],
"propertyID": "72a4d777-cfb1-4179-9710-d2363b477f96",
"operator": ">"
},
{
"values": [
"1593475956756"
],
"propertyID": "49eb036a-4624-4ddf-9669-246d79e729b2",
"operator": ">"
}
],
"returnStructure": {},
"webhookStatus": "",
"lastTriggered": "On-Demand Success. Wed Jul 01 22:30:24 UTC 2020"
},
{
"subscriptionRef": "306a10fb-43dc-4686-b3e9-7ee7e5f2be40",
"subscriptionName": "qatest",
"description": "qa test - sample subscription",
"owner": "",
"outputType": "application/json",
"active": false,
"webhook": {
"uri": "http://webhooktesthost:8080/test.test",
"authType": "Basic",
"authValue": "test:test"
},
"propertyReferences": [
{
"values": [
"a"
],
"propertyID": "8844fe4a-61eb-4231-aab3-138d278b94da",
"operator": "like"
},
{
"values": [
"500"
],
"propertyID": "a836c947-5999-48d1-b911-e19007355e94",
"operator": ">"
}
],
"schedule": {
"dayOfMonth": [
1,
2,
3,
4,
5
],
"dayOfWeek": [
1,
3,
5
],
"months": [
7,
8,
9
]
},
"returnStructure": {
"properties": [
{
"useAlias": true,
"propertyID": "938f59b0-535f-4af6-985a-5d4b38ab0009"
},
{
"useAlias": true,
"propertyID": "8844fe4a-61eb-4231-aab3-138d278b94da"
},
{
"propertyID": "a836c947-5999-48d1-b911-e19007355e94"
}
],
"tags": [
{
"useAlias": true,
"tagID": "e61b3263-b715-4bc8-8310-a2bb7145f9e1"
}
]
},
"webhookStatus": "",
"lastTriggered": ""
},
{
"subscriptionRef": "35c9c3ba-9e3b-44a6-bf7c-e0502bc5400e",
"subscriptionName": "a",
"description": "b",
"owner": "",
"outputType": "application/json",
"active": false,
"propertyReferences": [
{
"values": [
"abc"
],
"propertyID": "78f306e0-aba9-44ca-897e-3c94aa93ad98",
"operator": "like"
}
],
"returnStructure": {},
"webhookStatus": "",
"lastTriggered": ""
},
{
"subscriptionRef": "37c76622-4bce-43b7-b168-010eec7da62c",
"subscriptionName": "eks_test",
"description": "eks",
"owner": "",
"outputType": "application/json",
"active": false,
"propertyReferences": [
{
"values": [
"eks-prod-cluster-us-east2"
],
"propertyID": "e61ad088-ba24-4ce1-94f9-d6e9a1fb97b0",
"operator": "="
}
],
"returnStructure": {},
"webhookStatus": "",
"lastTriggered": "On-Demand Success. Mon Jul 06 15:03:34 UTC 2020"
},
{
"subscriptionRef": "6d94f787-64a2-428e-832f-6bf3edbd46e1",
"subscriptionName": "valid1",
"description": "valid1",
"owner": "",
"outputType": "application/json",
"active": false,
"propertyReferences": [
{
"values": [
"abc"
],
"propertyID": "78f306e0-aba9-44ca-897e-3c94aa93ad98",
"operator": "like"
}
],
"returnStructure": {},
"webhookStatus": "",
"lastTriggered": ""
},
{
"subscriptionRef": "d7d2f3af-2ad1-4c72-a09e-3aff6ac340fd",
"subscriptionName": "abc",
"description": "abc",
"owner": "",
"outputType": "application/json",
"active": false,
"propertyReferences": [
{
"values": [
"5"
],
"propertyID": "72a4d777-cfb1-4179-9710-d2363b477f96",
"operator": ">"
}
],
"returnStructure": {},
"webhookStatus": "",
"lastTriggered": ""
},
{
"subscriptionRef": "e6a0ff4c-3855-41ab-9152-8247399d3104",
"subscriptionName": "container1",
"description": "container 1 test",
"owner": "",
"outputType": "application/json",
"active": false,
"propertyReferences": [
{
"values": [
"500"
],
"propertyID": "a836c947-5999-48d1-b911-e19007355e94",
"operator": ">"
},
{
"values": [
"250"
],
"propertyID": "78f306e0-aba9-44ca-897e-3c94aa93ad98",
"operator": ">"
}
],
"tagReferences": [
{
"values": [
"loader"
],
"tagID": "e61b3263-b715-4bc8-8310-a2bb7145f9e1",
"operator": "like"
}
],
"suppressionReferences": [
{
"values": [
"68"
],
"suppressionID": "fdc363b2-523c-4bb5-bdbf-a4f4ef994487",
"operator": ">"
}
],
"returnStructure": {
"properties": [
{
"propertyID": "e61ad088-ba24-4ce1-94f9-d6e9a1fb97b0"
},
{
"propertyID": "ec58bb3d-6dad-490a-b862-30012063a51b"
},
{
"propertyID": "70be8edc-20ad-401a-a54f-57363d54e94b"
},
{
"useAlias": true,
"propertyID": "57518fbe-c33e-4197-806e-f210b9bc60dd"
},
{
"propertyID": "11156859-47b2-4a38-a1d8-b553843ccaee"
},
{
"useAlias": true,
"propertyID": "938f59b0-535f-4af6-985a-5d4b38ab0009"
},
{
"useAlias": true,
"propertyID": "bf244706-ae4c-4a23-ada5-7757ec4b269b"
},
{
"propertyID": "afe8e28a-ed28-426f-8045-b8ce31887da8"
}
],
"tags": [
{
"useAlias": true,
"tagID": "e61b3263-b715-4bc8-8310-a2bb7145f9e1"
}
]
},
"webhookStatus": "",
"lastTriggered": "On-Demand Success. Fri Jun 26 20:42:45 UTC 2020"
}
]
description: |-
In order for you to create a subscription, you need to review existing artifacts in the Kubex Subscriptions Framework (DSS) to understand the building blocks available to create your subscription. Review the following DSS catalogs:
- [Cloud Subscriptions Attribute Tag Catalog](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm)
- [Containers Subscriptions Attribute Tag Catalog](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm)
- [Cloud Subscriptions Recommendation Properties Catalog](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)
- [Containers Subscriptions Recommendation Properties Catalog](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)
- [Cloud Subscriptions Suppressions Catalog](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)
- [Containers Subscriptions Suppressions Catalog](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 5.2 Updating Subscriptions Tags Catalogs
item:
- name: 5.2.1 Updating Cloud Subscriptions Tag Catalog
item:
- name: Add Private Tags (Storage Type, Placement Tenancy) to Cloud Tags Catalog
event:
- listen: test
script:
exec:
- "var firstdata = pm.response.json()[0];\r"
- "pm.environment.set(\"storageTypeTagRef\", firstdata.tagRef);\r"
- "var firstdata = pm.response.json()[1];\r"
- pm.environment.set("placementTenancyTagRef", firstdata.tagRef);
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Accept
type: text
value: application/json
- key: Authorization
type: text
value: audio/basic
- key: cont
type: text
value: application/json
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n { \r\n \"tagName\": \"StorageType\",\r\n \"attributeName\": \"Storage Type\",\r\n \"aliasName\": \"Tag-Storage Type\"\r\n },\r\n { \r\n \"tagName\": \"PlacementTenancy\",\r\n \"attributeName\": \"Placement Tenancy\",\r\n \"aliasName\": \"Tag-Placement Tenancy\"\r\n }\r\n]\r\n\r\n \r\n"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
description: |-
Add your private tags to the Subscriptions Cloud Tags catalog.
In this example, two tags are added to the Subscriptions Cloud Tags catalog:
1) Storage Type
2) Placement Tenancy
To make these tags private, ensure that the `{{DensifyUser}}` environment variable contains a username without administrative priviledges.
Note:
> In this example, the `{{storageTypeTagRef}}` and `{{placementTenancyTagRef}}` environment variables are set to the first and second tag reference returned for future use.
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: Add Private Tags (Storage Type, Placement Tenancy) to Cloud Tags Catalog
originalRequest:
method: POST
header:
- key: Accept
type: text
value: application/json
- key: Authorization
type: text
value: audio/basic
- key: cont
type: text
value: application/json
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n { \r\n \"tagName\": \"StorageType\",\r\n \"attributeName\": \"Storage Type\",\r\n \"aliasName\": \"Tag-Storage Type\"\r\n },\r\n { \r\n \"tagName\": \"PlacementTenancy\",\r\n \"attributeName\": \"Placement Tenancy\",\r\n \"aliasName\": \"Tag-Placement Tenancy\"\r\n }\r\n]\r\n\r\n \r\n"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "155"
- key: Date
value: Mon, 14 Sep 2020 21:17:52 GMT
cookie: []
body: |-
[
{
"tagRef": "91b8f761-528f-4c94-b7ca-a94ad67cf165",
"tagName": "StorageType"
},
{
"tagRef": "1f7f472e-9c1a-4a03-967b-68bef139b951",
"tagName": "PlacementTenancy"
}
]
- name: Reviewing All Available Cloud Attribute Tags and Find Desired Tags
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i You have access to only global attribute tags or tags owned by you.
> In this example, the following environment variables are set for future use:
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: Reviewing All Available Cloud Attribute Tags and Find Desired Tags
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Mon, 14 Sep 2020 21:29:49 GMT
cookie: []
body: |-
[
{
"tagRef": "11800983-6fda-46d0-9690-b5d55f539dc8",
"tagName": "Business Applications",
"aliasName": "businessApplications",
"attributeName": "Business Applications",
"owner": ""
},
{
"tagRef": "1b30be08-2bba-467d-9e51-223e2155f5bb",
"tagName": "AWS Name",
"aliasName": "awsName",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "Name : ",
"owner": ""
},
{
"tagRef": "1bcb2322-3081-43d9-bca7-22b40b33b19d",
"tagName": "AWS OS",
"aliasName": "awsOS",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "OS : ",
"owner": ""
},
{
"tagRef": "1f7f472e-9c1a-4a03-967b-68bef139b951",
"tagName": "PlacementTenancy",
"aliasName": "Tag-Placement Tenancy",
"attributeName": "Placement Tenancy",
"owner": "saas"
},
{
"tagRef": "399a7661-9259-45a5-8b32-4ac7b098cba9",
"tagName": "Observed Uptime",
"aliasName": "observedUptime",
"attributeName": "Observed Uptime",
"owner": ""
},
{
"tagRef": "568e8a59-1bfb-44be-b60d-41dde6d614d6",
"tagName": "Virtual Cluster",
"aliasName": "virtualCluster",
"attributeName": "Virtual Cluster",
"owner": ""
},
{
"tagRef": "613a12b2-a82b-4a48-a7fc-779e62309d55",
"tagName": "Predicted Uptime",
"aliasName": "predictedUptime",
"attributeName": "Predicted Uptime",
"owner": ""
},
{
"tagRef": "63f2dd34-a2e9-4672-811d-2b7298baa490",
"tagName": "GCPCostCenter",
"aliasName": "GCP Cost Center",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "cost_center",
"owner": "saas"
},
{
"tagRef": "664df978-23b7-44f7-a3ad-465fb0eb55ae",
"tagName": "Resource Tags",
"aliasName": "resourceTags",
"attributeName": "Resource Tags",
"owner": ""
},
{
"tagRef": "679f15ff-c196-4c56-8fd3-90ba3dbc8948",
"tagName": "Availability Zone",
"aliasName": "availabilityZone",
"attributeName": "Availability Zone",
"owner": ""
},
{
"tagRef": "785ef02b-5208-4c37-b67b-4b1703ea9f1f",
"tagName": "Product Code",
"aliasName": "productCode",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "Product Code : ",
"owner": ""
},
{
"tagRef": "7c8480a7-41f8-4c7e-be39-7d0805f621cc",
"tagName": "License Group",
"aliasName": "licenseGroup",
"attributeName": "License Group",
"owner": ""
},
{
"tagRef": "804d9d78-d84b-4e76-9b94-b78d8c0310c7",
"tagName": "Notes",
"aliasName": "notes",
"attributeName": "Notes",
"owner": ""
},
{
"tagRef": "8a556754-f7d2-4098-a3f5-c6777e2be697",
"tagName": "AWS Owner",
"aliasName": "awsOwner",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "Owner : ",
"owner": ""
},
{
"tagRef": "8e760948-4d46-466d-8b14-eadacf33cf81",
"tagName": "Virtual Datacenter",
"aliasName": "Virtual Datacenter",
"attributeName": "Virtual Datacenter",
"owner": ""
},
{
"tagRef": "91b8f761-528f-4c94-b7ca-a94ad67cf165",
"tagName": "StorageType",
"aliasName": "Tag-Storage Type",
"attributeName": "Storage Type",
"owner": "saas"
},
{
"tagRef": "9879308e-3162-499b-8fe5-7fd67e627079",
"tagName": "Department",
"aliasName": "department",
"attributeName": "Department",
"owner": ""
},
{
"tagRef": "b8456346-9c9f-4ad6-a6af-0c726ffbf41d",
"tagName": "OS Architecture",
"aliasName": "architecture",
"attributeName": "OS Architecture",
"owner": ""
},
{
"tagRef": "be3cdc69-962e-4461-b8c3-07cec8e712be",
"tagName": "Virtual Domain",
"aliasName": "awsAccount",
"attributeName": "Virtual Domain",
"owner": ""
},
{
"tagRef": "d54424ad-bf7d-4bad-999a-ef875da1b890",
"tagName": "Application",
"aliasName": "application",
"attributeName": "Application",
"owner": ""
},
{
"tagRef": "df05012b-94c0-4e8a-84dd-07cd47402098",
"tagName": "VPC ID",
"aliasName": "vpcID",
"attributeName": "VPC ID",
"owner": ""
},
{
"tagRef": "e4558ad1-0a39-428a-a24e-8e958debfd60",
"tagName": "AWS Environment",
"aliasName": "awsEnvironment",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "Env : ",
"owner": ""
},
{
"tagRef": "eaba1b11-800f-40b7-855b-2f06a30e3ca4",
"tagName": "RDS Multi-AZ Deployment",
"aliasName": "RDSmultiAZ",
"attributeName": "__ RDS Multi-AZ Deployment",
"owner": ""
},
{
"tagRef": "f1ca64cb-63d7-4e06-961d-b2a4545b82d3",
"tagName": "AWS Inventory Code",
"aliasName": "inventoryCode",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "Inventory Code : ",
"owner": ""
}
]
- name: Review Tags Owned By You
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags?type=owner"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
query:
- key: type
value: owner
description: |-
Get details of your private tags from the Cloud Subscriptions Tags catalog.
Note that your username must be set in the `{{DensifyUser}}` variable with corresponding credentials in `{{DensifyPwd}}`.
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: GET Tags Owned By You ("saas" user)
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags?type=owner"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
query:
- key: type
value: owner
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "512"
- key: Date
value: Mon, 14 Sep 2020 21:33:42 GMT
cookie: []
body: |-
[
{
"tagRef": "1f7f472e-9c1a-4a03-967b-68bef139b951",
"tagName": "PlacementTenancy",
"aliasName": "Tag-Placement Tenancy",
"attributeName": "Placement Tenancy",
"owner": "saas"
},
{
"tagRef": "63f2dd34-a2e9-4672-811d-2b7298baa490",
"tagName": "GCPCostCenter",
"aliasName": "GCP Cost Center",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "cost_center",
"owner": "saas"
},
{
"tagRef": "91b8f761-528f-4c94-b7ca-a94ad67cf165",
"tagName": "StorageType",
"aliasName": "Tag-Storage Type",
"attributeName": "Storage Type",
"owner": "saas"
}
]
- name: Modify Cloud Tags
request:
auth:
type: basic
basic:
- key: password
value: admin
type: string
- key: username
value: admin
type: string
method: PUT
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"tagRef\": \"{{placementTenancyTagRef}}\",\r\n \"tagName\": \"PlacementTenancyTag\",\r\n \"aliasName\": \"Cloud Tag:Placement Tenancy\",\r\n \"attributeName\": \"Placement Tenancy\",\r\n \"owner\": \"{{DensifyUser}}\"\r\n },\r\n {\r\n \"tagRef\": \"{{storageTypeTagRef}}\",\r\n \"tagName\": \"StorageTypeTag\",\r\n \"aliasName\": \"Cloud Tag:Storage Type\",\r\n \"attributeName\": \"Storage Type\",\r\n \"owner\": \"{{DensifyUser}}\"\r\n }\r\n]\r\n"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
description: "Modify tags in the Cloud Tags catalog. You can only modify private tags you own. Administrative users can modify all global and private tags.\r\n\r\nIn this example, two private tags in the Cloud Attribute Tags catalog are modified:\r\n\r\n1) Storage Type\r\n\r\n2) Placement Tenancy\r\n\r\nYou have to specify all parameters for the tag in a PUT Body request because the *modify* action is a delete and replacement of all parameters.\r\n\r\nNotes:\r\n\r\n> The `{{placementTenancytagRef}}` and `{{storageTypetagRef}}` parameters set previously are used to identify the tags to be modified (see \"Reviewing All Available Cloud Attribute Tags and Find Desired Tags\" request example).\r\n\r\n> Replace the parameters in the Body of the request if you want to modify other tags.\r\n\r\nSee example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/Content/API_Guide/Subscriptions_Tags.htm)."
response:
- name: Modify Cloud Tags (alias for Placement Tenancy and Storage Type tags)
originalRequest:
method: PUT
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"tagRef\": \"{{placementTenancyTagRef}}\",\r\n \"tagName\": \"PlacementTenancyTag\",\r\n \"aliasName\": \"Cloud Tag:Placement Tenancy\",\r\n \"attributeName\": \"Placement Tenancy\",\r\n \"owner\": \"{{DensifyUser}}\"\r\n },\r\n {\r\n \"tagRef\": \"{{storageTypeTagRef}}\",\r\n \"tagName\": \"StorageTypeTag\",\r\n \"aliasName\": \"Cloud Tag:Storage Type\",\r\n \"attributeName\": \"Storage Type\",\r\n \"owner\": \"{{DensifyUser}}\"\r\n }\r\n]\r\n"
url:
raw: "{{scheme}}://{{host}}{{port}}/api/v2/subscriptions/cloud/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- api
- v2
- subscriptions
- cloud
- tags
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "161"
- key: Date
value: Mon, 14 Sep 2020 21:37:09 GMT
cookie: []
body: |-
[
{
"tagRef": "1f7f472e-9c1a-4a03-967b-68bef139b951",
"tagName": "PlacementTenancyTag"
},
{
"tagRef": "91b8f761-528f-4c94-b7ca-a94ad67cf165",
"tagName": "StorageTypeTag"
}
]
- name: Review Tags Owned By You Again To Review Updates
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags?type=owner"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
query:
- key: type
value: owner
description: |-
Get details of your updated private tags from the Cloud Subscriptions Tags catalog.
Note that your username must be set in the `{{DensifyUser}}` variable with corresponding credentials in `{{DensifyPwd}}`.
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: Review Tags Owned By You Again To Review Updates ("saas" user)
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags?type=owner"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
query:
- key: type
value: owner
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "530"
- key: Date
value: Mon, 14 Sep 2020 21:40:38 GMT
cookie: []
body: |-
[
{
"tagRef": "1f7f472e-9c1a-4a03-967b-68bef139b951",
"tagName": "PlacementTenancyTag",
"aliasName": "Cloud Tag:Placement Tenancy",
"attributeName": "Placement Tenancy",
"owner": "saas"
},
{
"tagRef": "63f2dd34-a2e9-4672-811d-2b7298baa490",
"tagName": "GCPCostCenter",
"aliasName": "GCP Cost Center",
"attributeName": "Resource Tags",
"technology": "AWS",
"key": "cost_center",
"owner": "saas"
},
{
"tagRef": "91b8f761-528f-4c94-b7ca-a94ad67cf165",
"tagName": "StorageTypeTag",
"aliasName": "Cloud Tag:Storage Type",
"attributeName": "Storage Type",
"owner": "saas"
}
]
- name: Remove Tags (Storage Type, Placement Tenancy)
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header:
- key: Accept
type: text
value: application/json
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"tagRef\": \"{{storageTypeTagRef}}\"\r\n },\r\n {\r\n \"tagRef\": \"{{placementTenancyTagRef}}\"\r\n }\r\n]"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
description: |-
Delete tags from the Subscriptions Cloud Tags catalog.
In this example, two private tags are deleted from the Subscriptions Cloud Tags catalog. The tags to be deleted are identified by `{{storageTypeTagRef}}` and `{{placementTenancyTagRef}}` in the Body of the request. If you want to delete other tags, update the `tagRef` elements in the Body.
Notes:
> If you do not have administrative privileges, you can only delete your own tags.
> If you have administrative privileges, you can delete all tags.
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: Remove Tags - you are unauthorized to delete these tags if you are not an owner
originalRequest:
method: DELETE
header:
- key: Accept
type: text
value: application/json
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"tagRef\": \"6cfacc85-30a6-4037-8422-6a43035181d5\"\r\n },\r\n {\r\n \"tagRef\": \"6e4594c3-0742-4140-8723-2a31d71ffab1\"\r\n }\r\n]"
url:
raw: "{{scheme}}://{{host}}:{{port}}/api/v2/subscriptions/tags"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- api
- v2
- subscriptions
- tags
status: Unauthorized
code: 401
_postman_previewlanguage: json
header:
- key: content-type
value: application/json;charset=ISO-8859-1
- key: content-length
value: "39"
- key: date
value: Fri, 24 Jan 2020 21:58:44 GMT
- key: x-envoy-upstream-service-time
value: "3"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
cookie: []
body: |-
{
"message": "Unauthorized",
"status": 401
}
- name: Remove Tags (Storage Type, Placement Tenancy)
originalRequest:
method: DELETE
header:
- key: Accept
type: text
value: application/json
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"tagRef\": \"{{storageTypeTagRef}}\"\r\n },\r\n {\r\n \"tagRef\": \"{{placementTenancyTagRef}}\"\r\n }\r\n]"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
status: No Content
code: 204
_postman_previewlanguage: plain
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Date
value: Mon, 14 Sep 2020 22:01:21 GMT
cookie: []
body: ""
- name: GET Tags Owned By Another User
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/tags?type=owner&owner={{nonAdminUser}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- tags
query:
- key: type
value: owner
- key: owner
value: "{{nonAdminUser}}"
description: |-
If you are an administrative user, you can get details of another user's private tags.
This example assumes that `{{nonAdminUser}}` owns a few private tags.
Execute this request as `{{DensifyUser}}` to view tags for `{{nonAdminUser}}` in the Cloud Subscriptions Tag catalog.
To use this example:
- Ensure that you obtain an authorization token for `{{DensifyUser}}`, who has adminitrative privileges, to make this request.
- Ensure that you set the `{{nonAdminUser}}` variable to an API user in your Kubex system without administrative privileges.
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: GET Tags Owned By Another User ("nonAdminUser")
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/api/v2/subscriptions/tags?type=owner&owner={{nonAdminUser}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- api
- v2
- subscriptions
- tags
query:
- key: type
value: owner
- key: owner
value: "{{nonAdminUser}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "325"
- key: Date
value: Tue, 07 Jul 2020 02:47:21 GMT
cookie: []
body: |-
[
{
"tagRef": "0602b51a-d940-4aab-988a-13ab57a5cef4",
"tagName": "PlacementTenancyTag",
"aliasName": "Tag:Placement Tenancy",
"attributeName": "Placement Tenancy",
"owner": "saas"
},
{
"tagRef": "120c3d7d-18cf-4573-a5ad-57a447415ae7",
"tagName": "StorageTypeTag",
"aliasName": "Tag:Storage Type",
"attributeName": "Storage Type",
"owner": "saas"
}
]
description: "You can add, modify and delete attributes to your subscriptions cloud tags catalog. See [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm)."
- name: 5.2.2 Updating Container Subscriptions Tags Catalog
item:
- name: Add Container Label (service, pod) Tags to the Container Tags Catalog
event:
- listen: test
script:
exec:
- "var firstdata = pm.response.json()[0];\r"
- "pm.environment.set(\"ContainerServiceTagRef\", firstdata.tagRef);\r"
- "var firstdata = pm.response.json()[1];\r"
- pm.environment.set("ContainerPodTagRef", firstdata.tagRef);
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Accept
type: text
value: application/json
- key: Authorization
type: text
value: audio/basic
- key: cont
type: text
value: application/json
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n { \r\n \"tagName\": \"ContainerService\",\r\n \"attributeName\": \"Container Labels\",\r\n \"technology\": \"CONTAINER\",\r\n \"key\": \"service :\",\r\n \"aliasName\": \"Service Name\"\r\n },\r\n { \r\n \"tagName\": \"ContainerPod\",\r\n \"attributeName\": \"Container Labels\",\r\n \"technology\": \"CONTAINER\",\r\n \"key\": \"pod :\",\r\n \"aliasName\": \"Pod\"\r\n }\r\n]\r\n\r\n \r\n"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- tags
description: |-
This example shows you how to add 2 container lables: "service :" and "pod :" to the Container Subscriptions Tags catalog.
To make these tags private, ensure that the `{{DensifyUser}}` environment variable contains a username without administrative priviledges.
Note:
> In this example, the `{{ContainerServiceTagRef}}` and `{{ContainerPodTagRef}}` environment variable is set to the first tag reference returned for future use.
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: Add Container Label (service, pod) Tags to the Container Tags Catalog
originalRequest:
method: POST
header:
- key: Accept
type: text
value: application/json
- key: Authorization
type: text
value: audio/basic
- key: cont
type: text
value: application/json
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n { \r\n \"tagName\": \"ContainerService\",\r\n \"attributeName\": \"Container Labels\",\r\n \"technology\": \"CONTAINER\",\r\n \"key\": \"service :\",\r\n \"aliasName\": \"Service Name\"\r\n },\r\n { \r\n \"tagName\": \"ContainerPod\",\r\n \"attributeName\": \"Container Labels\",\r\n \"technology\": \"CONTAINER\",\r\n \"key\": \"pod :\",\r\n \"aliasName\": \"Pod\"\r\n }\r\n]\r\n\r\n \r\n"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- tags
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "156"
- key: Date
value: Tue, 15 Sep 2020 15:22:54 GMT
cookie: []
body: |-
[
{
"tagRef": "69cac8e0-176c-4ca4-adc9-19d4b980de05",
"tagName": "ContainerService"
},
{
"tagRef": "abcf661f-af48-4b3f-9a77-9986c7464143",
"tagName": "ContainerPod"
}
]
- name: Reviewing All Container Attribute Tags After Addition
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i You have access to only global attribute tags or tags owned by you.
> In this example, the following environment variables are set for future use:
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: Reviewing All Container Attribute Tags After Addition
originalRequest:
method: GET
header:
- key: Accept
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/tags"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- tags
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "1327"
- key: Date
value: Tue, 15 Sep 2020 15:28:43 GMT
cookie: []
body: |-
[
{
"tagRef": "17d17ac1-52c0-4e4a-a34d-0dd787c6b5d2",
"tagName": "Virtual Datacenter",
"aliasName": "virtualDatacenter",
"attributeName": "Virtual Datacenter",
"owner": ""
},
{
"tagRef": "5cfb1b8d-b462-40f3-9783-624b3c2127d5",
"tagName": "Resource Tags",
"aliasName": "resourceTags",
"attributeName": "Resource Tags",
"owner": ""
},
{
"tagRef": "69cac8e0-176c-4ca4-adc9-19d4b980de05",
"tagName": "ContainerService",
"aliasName": "Service Name",
"attributeName": "Container Labels",
"technology": "CONTAINER",
"key": "service :",
"owner": "saas"
},
{
"tagRef": "abcf661f-af48-4b3f-9a77-9986c7464143",
"tagName": "ContainerPod",
"aliasName": "Pod",
"attributeName": "Container Labels",
"technology": "CONTAINER",
"key": "pod :",
"owner": "saas"
},
{
"tagRef": "acc99dbc-d21c-4c7d-a160-c62e8295dae1",
"tagName": "My Container Labels",
"aliasName": "containerLabels",
"attributeName": "Container Labels",
"owner": ""
},
{
"tagRef": "bf980387-a609-4061-8f2f-f0f095de01c5",
"tagName": "Notes",
"aliasName": "notes",
"attributeName": "Notes",
"owner": ""
},
{
"tagRef": "cf424bf2-79ac-4031-aa68-e941327609c2",
"tagName": "Virtual Domain",
"aliasName": "virtualDomain",
"attributeName": "Virtual Domain",
"owner": ""
},
{
"tagRef": "e61b3263-b715-4bc8-8310-a2bb7145f9e1",
"tagName": "ContainerPodName",
"aliasName": "containerPodName",
"attributeName": "Container Labels",
"technology": "CONTAINER",
"key": "pod_name : ",
"owner": ""
}
]
- name: Modify Container Tag with Reference ID
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: PUT
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "{\r\n \"tagName\": \"ContainerPod\",\r\n \"aliasName\": \"Container Label:Pod\",\r\n \"attributeName\": \"Container Labels\",\r\n \"technology\": \"CONTAINER\",\r\n \"key\": \"pod :\",\r\n \"owner\": \"{{DensifyUser}}\"\r\n}"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/tags/{{ContainerPodTagRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- tags
- "{{ContainerPodTagRef}}"
description: |-
Modify a single tag with the reference ID in the URL request.
You have to specify all parameters in a PUT request because the _modify_ action is a delete and replacement of all parameters.
In this example, the `{{ContainerPodTagRef}}` variable is used to identify the tag to modify. This environment variable was set in a previous request. If you want to update another tag, edit the URL and Body with your tag reference and parameters.
Notes:
> The `{{ContainerPodTagRef}}` parameter was set previously, see "Reviewing All Container Attribute Tags After Addition" request example.
> Ensure that you have privileges to modify this tag (i.e. `{{DensifyUser}}` is either the owner of the tag, or has administrative privileges).
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: "Modify Container Tag with Reference ID (Container Label : Pod)"
originalRequest:
method: PUT
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "{\r\n \"tagName\": \"ContainerPod\",\r\n \"aliasName\": \"Container Label:Pod\",\r\n \"attributeName\": \"Container Labels\",\r\n \"technology\": \"CONTAINER\",\r\n \"key\": \"pod :\",\r\n \"owner\": \"{{DensifyUser}}\"\r\n}"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/tags/{{ContainerPodTagRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- tags
- "{{ContainerPodTagRef}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "74"
- key: Date
value: Tue, 15 Sep 2020 15:54:32 GMT
cookie: []
body: |-
{
"tagRef": "abcf661f-af48-4b3f-9a77-9986c7464143",
"tagName": "ContainerPod"
}
- name: Review Container Tag Details By Reference ID
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/tags/{{ContainerPodTagRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- tags
- "{{ContainerPodTagRef}}"
description: |-
Get details of a particular container tag by providing the tag reference ID in the URL request.
Note:
> The `{{ContainerPodTagRef}}` environment variable is used to identify the tag. This variable was set in a previous request. If you want to search for a specific attribute tag, modify the URL with your desired tag reference ID.
> If you are an administrative user, you have access to all global and all private attribute tags.
> If you are a non-administrative user, you have access to all global and your own attribute tags. If you do not have access to the tag reference you provided, a "404 Not Found" response is returned.
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: Review Container Tag Details By Reference ID (Container Label)
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/tags/{{ContainerPodTagRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- tags
- "{{ContainerPodTagRef}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "197"
- key: Date
value: Tue, 15 Sep 2020 16:03:44 GMT
cookie: []
body: |-
{
"tagRef": "abcf661f-af48-4b3f-9a77-9986c7464143",
"tagName": "ContainerPod",
"aliasName": "Container Label:Pod",
"attributeName": "Container Labels",
"technology": "CONTAINER",
"key": "pod :",
"owner": "saas"
}
- name: Remove a Container Tag with Reference ID
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/tags/{{ContainerPodTagRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- tags
- "{{ContainerPodTagRef}}"
description: |-
Delete a single tag from the Container Subscriptions Attribute Tags catalog.
In this example, a private tag is deleted from the Container Subscriptions Attribute Tags catalog. The tag to be deleted is identified by `{{ContainerPodTagRef}}` in the URL. If you want to delete another tag, update the URL with your tag reference.
Notes:
> If you do not have administrative privileges, you can only delete your own tags.
> If you have administrative privileges, you can delete all tags.
> Ensure `{{DensifyUser}}` is set up propertly
See example. Refer to [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm).
response:
- name: "Remove a Tag with Reference ID (Container Label: Pod)"
originalRequest:
method: DELETE
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/tags/{{ContainerPodTagRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- tags
- "{{ContainerPodTagRef}}"
status: No Content
code: 204
_postman_previewlanguage: plain
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Date
value: Tue, 15 Sep 2020 16:04:53 GMT
cookie: []
body: ""
description: "You can add, modify and delete attributes to your subscriptions container tags catalog. See [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm)."
description: "You can add, modify and delete attributes to your subscriptions tags catalog. See [Subscriptions: Tags](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Tags.htm)."
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 5.3 Updating Subscriptions Properties Catalogs
item:
- name: 5.3.1 Updating Cloud Subscriptions Properties Catalog
item:
- name: Review All Available Cloud Properties
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i If you are an administrative user, you have access to all global and all private properties.
> If you are a non-administrative user, you have access to global and your own private properties.
See example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm).
response:
- name: Review All Available Cloud Properties
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Tue, 15 Sep 2020 16:39:41 GMT
cookie: []
body: |-
[
{
"propertyRef": "020700b3-0dd5-4eb4-8863-b87945e38b66",
"propertyName": "avgInstanceCountCurrent",
"aliasName": "avgInstanceCountCurrent",
"owner": ""
},
{
"propertyRef": "03f37e58-98e6-49e7-b23c-688ebc7cb0a6",
"propertyName": "densifyPolicy",
"aliasName": "densifyPolicy",
"owner": ""
},
{
"propertyRef": "08d84679-1816-4cd7-b766-e4ad441b9a6c",
"propertyName": "recommendationType",
"aliasName": "Optimization Type Property",
"owner": ""
},
{
"propertyRef": "095686f0-2fff-4697-9da0-65aa925ae560",
"propertyName": "auditInfo.workloadDataLast30.firstDate",
"aliasName": "last30_firstDate",
"owner": ""
},
{
"propertyRef": "13b41a07-6e83-478c-91bb-95094b1de8b9",
"propertyName": "auditInfo.dataCollection.dateLastAudited",
"aliasName": "dc_lastAudited",
"owner": ""
},
{
"propertyRef": "183b1f50-a20b-4d29-a488-8ba53bbf7c40",
"propertyName": "currentType",
"aliasName": "currentType",
"owner": ""
},
{
"propertyRef": "1bf216fd-e473-4099-a05d-a2077e26b02b",
"propertyName": "powerState",
"aliasName": "powerState",
"owner": ""
},
{
"propertyRef": "1cce0da5-1fc8-4a96-8149-b855b0e81a50",
"propertyName": "rptHref",
"aliasName": "rptHref",
"owner": ""
},
{
"propertyRef": "1dd76248-a503-40b1-9303-e990bbad7818",
"propertyName": "recommSeenCount",
"aliasName": "recommSeenCount",
"owner": ""
},
{
"propertyRef": "21f619c0-2d68-4c28-a118-bf9a3714d3cf",
"propertyName": "recommendedHourlyRate",
"aliasName": "recommendedHourlyRate",
"owner": ""
},
{
"propertyRef": "28055f7f-3ab0-437f-888c-26bafc84afa4",
"propertyName": "totalHoursRunning",
"aliasName": "totalHoursRunning",
"owner": ""
},
{
"propertyRef": "335c03f5-408e-43f7-a0e8-57a64f151af2",
"propertyName": "implementationMethod",
"aliasName": "implementationMethod",
"owner": ""
},
{
"propertyRef": "352f0d05-e403-4fa5-805b-601573300576",
"propertyName": "dataQuality.lastSeen",
"aliasName": "dq_lastSeen",
"owner": ""
},
{
"propertyRef": "3e0cd7e7-c80e-412f-bc96-c05df6c64749",
"propertyName": "auditInfo.dataCollection.dateFirstAudited",
"aliasName": "dc_firstAudited",
"owner": ""
},
{
"propertyRef": "3ecd65ab-1b8c-440d-8fc0-317e06e7cb8b",
"propertyName": "currentHourlyRate",
"aliasName": "currentHourlyRate",
"owner": ""
},
{
"propertyRef": "407597e2-0531-4696-a27d-f7449d2a568c",
"propertyName": "auditInfo.workloadDataLast30.totalDays",
"aliasName": "last30_totalDays",
"owner": ""
},
{
"propertyRef": "50b22373-aeb3-405a-b635-1c672b492b1b",
"propertyName": "entityId",
"aliasName": "Entity ID",
"owner": "saas"
},
{
"propertyRef": "5c7d3910-a0e4-463f-a35b-4ce1425bc646",
"propertyName": "dataQuality.partialDays",
"aliasName": "dq_partialDays",
"owner": ""
},
{
"propertyRef": "5d83a2b9-0fd4-4379-a3da-497c0a4ba182",
"propertyName": "recommendedHostEntityId",
"aliasName": "recommendedHostEntityId",
"owner": ""
},
{
"propertyRef": "5ee70a01-21b3-4630-8642-0abe29c572f3",
"propertyName": "approvalType",
"aliasName": "approvalType",
"owner": ""
},
{
"propertyRef": "6a69227c-5438-4d59-b189-6edcbcf42cf9",
"propertyName": "minGroupCurrent",
"aliasName": "minGroupCurrent",
"owner": ""
},
{
"propertyRef": "6ce57627-817c-4eb6-a5c2-c9c680eedb40",
"propertyName": "recommendedCost",
"aliasName": "recommendedCost",
"owner": ""
},
{
"propertyRef": "6d3bc631-34d0-4aba-8fba-dce5a24be187",
"propertyName": "auditInfo.workloadDataLast30.lastDate",
"aliasName": "last30_lastDate",
"owner": ""
},
{
"propertyRef": "6da13834-8f14-4fc5-90c9-f080672503cc",
"propertyName": "recommLastSeen",
"aliasName": "recommLastSeen",
"owner": ""
},
{
"propertyRef": "731f1902-bcad-4932-b5b4-ee479affb8d8",
"propertyName": "maxGroupRecommended",
"aliasName": "maxGroupRecommended",
"owner": ""
},
{
"propertyRef": "7806186c-9231-49c2-99e7-c7fb5855321e",
"propertyName": "region",
"aliasName": "region",
"owner": ""
},
{
"propertyRef": "7cc4d979-46ac-4701-96eb-6966facca7e5",
"propertyName": "currentCost",
"aliasName": "currentCost",
"owner": ""
},
{
"propertyRef": "81bf68a8-c33c-45cd-8da7-162930986394",
"propertyName": "accountIdRef",
"aliasName": "accountIdRef",
"owner": ""
},
{
"propertyRef": "88695e33-19c4-4813-819a-31e59322da6e",
"propertyName": "entityId",
"aliasName": "entityId",
"owner": ""
},
{
"propertyRef": "8e7d0bd0-c32f-45c2-9bc4-4de67f7b4642",
"propertyName": "minGroupRecommended",
"aliasName": "minGroupRecommended",
"owner": ""
},
{
"propertyRef": "90fc4303-596d-43a9-a6dd-eab9203e0601",
"propertyName": "auditInfo.workloadDataLast30.seenDays",
"aliasName": "last30_seenDays",
"owner": ""
},
{
"propertyRef": "96c25aac-3a44-43fa-81f0-38cc1c4a148d",
"propertyName": "avgInstanceCountRecommended",
"aliasName": "avgInstanceCountRecommended",
"owner": ""
},
{
"propertyRef": "a18dd996-f9c2-44ec-a3b8-539429a0e2d7",
"propertyName": "auditInfo.dataCollection.auditCount",
"aliasName": "dc_auditCount",
"owner": ""
},
{
"propertyRef": "a6609377-ea67-4e7c-8880-36e2bde35ed8",
"propertyName": "maxGroupCurrent",
"aliasName": "maxGroupCurrent",
"owner": ""
},
{
"propertyRef": "a834e79b-1a89-47cf-b68b-4cf3bb444def",
"propertyName": "resourceId",
"aliasName": "resourceId",
"owner": ""
},
{
"propertyRef": "b20b2499-e901-4d79-873c-5e953ae8be33",
"propertyName": "effortEstimate",
"aliasName": "effortEstimate",
"owner": ""
},
{
"propertyRef": "b4e7260f-1aae-4150-b75d-1b1234075500",
"propertyName": "serviceType",
"aliasName": "serviceType",
"owner": ""
},
{
"propertyRef": "b5ba575b-43eb-496a-8364-5276d7a4b0d1",
"propertyName": "dataQuality.firstSeen",
"aliasName": "dq_firstSeen",
"owner": ""
},
{
"propertyRef": "bfa1ab52-1bb6-4fa8-b841-fc015c7b48e3",
"propertyName": "dataQuality.completeDays",
"aliasName": "dq_completeDays",
"owner": ""
},
{
"propertyRef": "cebcd841-89d8-4007-a4c6-1f0b06723db4",
"propertyName": "savingsEstimate",
"aliasName": "savingsEstimate",
"owner": ""
},
{
"propertyRef": "da3256c8-98a4-42f8-b59b-e4537b4bb72b",
"propertyName": "currentRiCoverage",
"aliasName": "currentRiCoverage",
"owner": ""
},
{
"propertyRef": "dfc370e2-4078-4473-8647-5a5cc59836e4",
"propertyName": "dataQuality.workloadName",
"aliasName": "dq_workloadName",
"owner": ""
},
{
"propertyRef": "e1a10386-5fe8-480d-b6cc-7e049ffcd03d",
"propertyName": "currentDesiredCapacity",
"aliasName": "currentDesiredCapacity",
"owner": ""
},
{
"propertyRef": "e2ae92c5-91c7-4ff5-a29f-99aa92d65178",
"propertyName": "name",
"aliasName": "name",
"owner": ""
},
{
"propertyRef": "e5d14521-44e7-41e1-98eb-d86737c36c74",
"propertyName": "deferRecommendation",
"aliasName": "deferRecommendation",
"owner": ""
},
{
"propertyRef": "ed52f33e-2ed7-4035-be0d-6fdcb46e7cc2",
"propertyName": "recommFirstSeen",
"aliasName": "recommFirstSeen",
"owner": ""
},
{
"propertyRef": "effced63-d6c6-4d47-b2d4-c6b003884cdf",
"propertyName": "recommendedType",
"aliasName": "Recommended Instance Type Property",
"owner": ""
},
{
"propertyRef": "f2a38773-db60-478a-9982-1a2d1ba7d380",
"propertyName": "predictedUptime",
"aliasName": "propertyPredictedUptime",
"owner": ""
},
{
"propertyRef": "f3a0add1-7ce1-4b44-a038-e5cab03dbc9a",
"propertyName": "effortEstimate",
"aliasName": "effortEstimate",
"owner": ""
}
]
- name: Remove Cloud Subscriptions Properties
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[ \t\r\n {\r\n \"propertyRef\": \"{{resourceIdPropertyRef}}\"\r\n },\r\n {\r\n \"propertyRef\": \"{{entityIdPropertyRef}}\"\r\n }\r\n] "
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
description: |-
You can remove a list of properties from the Cloud Subscriptions Properties catalog using the _DELETE /subscriptions/cloud/properties_ request.
You must have ownership of the property or be an administrative user to remove the property from the catalog.
Notes:
> In this example, two global properties are removed: _resourceId_ and _entityId_.
> You must be an administrative user to remove these properties since they are global in scope. Ensure that the Kubex username you use for this request has administrative privileges.
> In the Body of this sample request, the `{{resourceIdPropertyRef}}` and `{{entityIdPropertyRef}}` variables are used to identify the properties to be removed; they were set in the previous "Review All Available Cloud Properties" request.
See example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm).
response:
- name: Remove Cloud Subscriptions Properties (success == 204 No Content)
originalRequest:
method: DELETE
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[ \t\r\n {\r\n \"propertyRef\": \"{{resourceIdPropertyRef}}\"\r\n },\r\n {\r\n \"propertyRef\": \"{{entityIdPropertyRef}}\"\r\n }\r\n] "
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
status: No Content
code: 204
_postman_previewlanguage: plain
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Date
value: Tue, 15 Sep 2020 20:01:41 GMT
cookie: []
body: ""
- name: Remove a Cloud Subscriptions Property with Reference ID
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header: []
body:
mode: raw
raw: ""
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties/{{accountIdPropertyRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
- "{{accountIdPropertyRef}}"
description: "You can remove a single property from the Cloud Subscriptions Properties catalog using the *DELETE /subscriptions/cloud/properties/{{propertyRef}}* request.\r\n\r\nYou must have ownership of the property or be an administrative user to remove the property from the catalog.\r\n\r\nNotes:\r\n> In this example, the *accountIdRef* global property is removed. \r\n\r\n> You must be an administrative user to remove this property since it has global scope. Ensure that the Kubex username you use for this request has administrative privileges. \r\n\r\n> In the URL of this sample request, the `{{accountIdPropertyRef}}` variable is used to identify the *accountIdRef* property to be removed. This variable was set in the previous \"Review All Available Cloud Properties\" request.\r\n\r\nSee example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)."
response:
- name: Remove a Cloud Subscriptions Property with Reference ID (success == 204 No Content returned)
originalRequest:
method: DELETE
header: []
body:
mode: raw
raw: ""
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties/{{accountIdPropertyRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
- "{{accountIdPropertyRef}}"
status: No Content
code: 204
_postman_previewlanguage: plain
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Date
value: Tue, 15 Sep 2020 20:03:56 GMT
cookie: []
body: ""
- name: Add Properties to the Cloud Subscriptions Properties Catalog
event:
- listen: test
script:
exec:
- "var body = JSON.parse(responseBody);\r"
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i Use a non-administrative user to make this request. The \"owner\" parameter is automatically set to your username and the property is considered private.\r\n\r\n> In this example, the property reference for the 3 properties added are saved in the following environment variables for future use:\r\n> * `{{resourceIdPropertyRef}}` \r\n> * `{{entityIdPropertyRef}}` \r\n> * `{{accountIdPropertyRef}}`\r\n\r\nSee example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)."
response:
- name: Add Properties to the Cloud Subscriptions Properties Catalog (success)
originalRequest:
method: POST
header:
- key: Accept
type: text
value: application/json
- key: Content-Type
type: text
value: application/json
- key: Authorization
type: text
value: audio/basic
warning: This is a duplicate header and will be overridden by the Authorization header generated by Postman.
disabled: true
body:
mode: raw
raw: "[\r\n {\r\n \t\"propertyName\": \"resourceId\",\r\n \t\"aliasName\": \"Resource ID\"\r\n },\r\n {\r\n \"propertyName\": \"entityId\",\r\n \"aliasName\": \"Entity ID\"\r\n },\r\n {\r\n \"propertyName\": \"accountIdRef\",\r\n \"aliasName\": \"Account ID\",\r\n \"owner\": \"\"\r\n }\r\n]"
url:
raw: "{{scheme}}://{{host}}{{port}}/api/v2/subscriptions/cloud/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- api
- v2
- subscriptions
- cloud
- properties
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "252"
- key: Date
value: Tue, 15 Sep 2020 20:44:04 GMT
cookie: []
body: |-
[
{
"propertyRef": "6bb09102-84e3-4b57-ab66-b11df4abfb96",
"propertyName": "resourceId"
},
{
"propertyRef": "6b4a4ff2-f5e8-4bec-8d7e-aa918605b02e",
"propertyName": "entityId"
},
{
"propertyRef": "e306d972-d6d0-45dd-89e5-3274cb03447a",
"propertyName": "accountIdRef"
}
]
- name: Retrieve Cloud Subscriptions Property by ID
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties/{{accountIdPropertyRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
- "{{accountIdPropertyRef}}"
description: "Get details of a particular cloud property by providing the property reference ID in the URL request.\r\n\r\nNote:\r\n> The environment variable `{{accountIdPropertyRef}}` was set in the previous request, \"Add Property to the Subscriptions Properties Catalog\".\r\n\r\n> If you are an administrative user, you have access to all global and all private properties.\r\n\r\n> If you are a non-administrative user, you have access to all global and your own private properties. If you do not have access to the property reference you provided, a \"404 Not Found\" response is returned. \r\n\r\nSee example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)."
response:
- name: Retrieve Subscriptions Property by ID
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties/{{accountIdPropertyRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
- "{{accountIdPropertyRef}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "124"
- key: Date
value: Tue, 15 Sep 2020 20:58:06 GMT
cookie: []
body: |-
{
"propertyRef": "e306d972-d6d0-45dd-89e5-3274cb03447a",
"propertyName": "accountIdRef",
"aliasName": "Account ID",
"owner": "saas"
}
- name: Retrieve Private Cloud Properties Owned By User
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: basic
basic:
- key: password
value: saas
type: string
- key: username
value: saas
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties?type=owner&owner={{DensifyUser}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
query:
- key: type
value: owner
- key: owner
value: "{{DensifyUser}}"
description: "Get details of Cloud Subscriptions properties owned by a user.\r\n\r\nIf you are not an administrative user, you can only retrieve your own properites. \r\n\r\nThis example assumes that you are the `{{DensifyUser}}` for you to retrieve your properties.\r\n\r\nNote:\r\n\r\n> Administrative users can use the \"type\" and \"owner\" options to retrieve properties owned by any user.\r\n\r\nSee example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)."
response:
- name: Retrieve Private Cloud Properties Owned By User
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties?type=owner&owner={{DensifyUser}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
query:
- key: type
value: owner
- key: owner
value: "{{DensifyUser}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "372"
- key: Date
value: Tue, 15 Sep 2020 21:18:29 GMT
cookie: []
body: |-
[
{
"propertyRef": "6b4a4ff2-f5e8-4bec-8d7e-aa918605b02e",
"propertyName": "entityId",
"aliasName": "Entity ID",
"owner": "saas"
},
{
"propertyRef": "6bb09102-84e3-4b57-ab66-b11df4abfb96",
"propertyName": "resourceId",
"aliasName": "Resource ID",
"owner": "saas"
},
{
"propertyRef": "e306d972-d6d0-45dd-89e5-3274cb03447a",
"propertyName": "accountIdRef",
"aliasName": "Account ID",
"owner": "saas"
}
]
- name: Modify a Cloud Subscription Property by Reference ID
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: " {\r\n \"propertyName\": \"entityId\",\r\n \"aliasName\": \"Densify Object ID\",\r\n \"owner\": \"{{DensifyUser}}\"\r\n }"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties/{{entityIdPropertyRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
- "{{entityIdPropertyRef}}"
description: "Modify a single cloud property with the reference ID in the URL request.\r\n\r\nYou must specify all mandatory parameters in a PUT request because the action is technically a delete and replacment of all parameters.\r\n\r\nIn this sample request, the *entityId* property's alias name is modified. See the request Body. This request assumes that the *entityId* property is owned by `{{DensifyUser}}`. Ensure that the `{{DensifyUser}}` environment variable is set accordingly.\r\n\r\n\r\nNote:\r\n> The `{{entityIdProperyRef}}` variable used was previously set by the \"Add Properties to the Subscriptions Properties Catalog\" POST request.\r\n\r\nSee example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)."
response:
- name: Modify a Cloud Subscription Property by Reference ID (entityId)
originalRequest:
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: " {\r\n \"propertyName\": \"entityId\",\r\n \"aliasName\": \"Densify Object ID\",\r\n \"owner\": \"{{DensifyUser}}\"\r\n }"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties/{{entityIdPropertyRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
- "{{entityIdPropertyRef}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "80"
- key: Date
value: Tue, 15 Sep 2020 21:21:54 GMT
cookie: []
body: |-
{
"propertyRef": "6b4a4ff2-f5e8-4bec-8d7e-aa918605b02e",
"propertyName": "entityId"
}
- name: Promote Private Cloud Subscriptions Properties to Global
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"propertyRef\": \"{{resourceIdPropertyRef}}\",\r\n \"propertyName\": \"resourceId\",\r\n \"aliasName\": \"Resource ID\",\r\n \"owner\": \"\"\r\n },\r\n {\r\n \"propertyRef\": \"{{entityIdPropertyRef}}\",\r\n \"propertyName\": \"entityId\",\r\n \"aliasName\": \"Entity ID\",\r\n \"owner\": \"\"\r\n },\r\n {\r\n \"propertyRef\": \"{{accountIdPropertyRef}}\",\r\n \"propertyName\": \"accountIdRef\",\r\n \"aliasName\": \"Account ID\",\r\n \"owner\": \"\"\r\n }\r\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
description: "In this example, we will modify the property owner parameter (i.e. `owner`=\"\") of 3 private properties to make them global. Only an administrative user can perform this request, therefore you must ensure that the `{{DensifyUser}}` environment variable is set to a user with administrative privileges.\r\n\r\nYou must specify all mandatory parameters in a PUT request because the action is technically a delete and replacment of all parameters. Review the Body section of this request. The `{{entityIdProperyRef}}`, `{{resourceIdProperyRef}}`, and `{{accountIdProperyRef}}` variables in the Body section was previously set by the \"Add Properties to the Cloud Subscriptions Properties Catalog\" POST request. All 3 properties were originally created as private properties.\r\n\r\nSee example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)."
response:
- name: Promote Private Cloud Subscriptions Properties to Global
originalRequest:
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"propertyRef\": \"{{resourceIdPropertyRef}}\",\r\n \"propertyName\": \"resourceId\",\r\n \"aliasName\": \"Resource ID\",\r\n \"owner\": \"\"\r\n },\r\n {\r\n \"propertyRef\": \"{{entityIdPropertyRef}}\",\r\n \"propertyName\": \"entityId\",\r\n \"aliasName\": \"Entity ID\",\r\n \"owner\": \"\"\r\n },\r\n {\r\n \"propertyRef\": \"{{accountIdPropertyRef}}\",\r\n \"propertyName\": \"accountIdRef\",\r\n \"aliasName\": \"Account ID\",\r\n \"owner\": \"\"\r\n }\r\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- properties
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "252"
- key: Date
value: Tue, 15 Sep 2020 21:34:22 GMT
cookie: []
body: |-
[
{
"propertyRef": "6bb09102-84e3-4b57-ab66-b11df4abfb96",
"propertyName": "resourceId"
},
{
"propertyRef": "6b4a4ff2-f5e8-4bec-8d7e-aa918605b02e",
"propertyName": "entityId"
},
{
"propertyRef": "e306d972-d6d0-45dd-89e5-3274cb03447a",
"propertyName": "accountIdRef"
}
]
- name: Review the List of Available Cloud Properties Again
event:
- listen: test
script:
exec:
- "var body = JSON.parse(responseBody);\r"
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i If you are an administrative user, you have access to all global and all private properties.\r\n\r\n> If you are a non-administrative user, you have access to global and your own private properties.\r\n\r\nSee example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)."
response:
- name: Review All Available Container Properties
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Tue, 15 Sep 2020 17:29:34 GMT
cookie: []
body: |-
[
{
"propertyRef": "11156859-47b2-4a38-a1d8-b553843ccaee",
"propertyName": "recommFirstSeen",
"aliasName": "recommFirstSeen",
"owner": ""
},
{
"propertyRef": "14412361-5289-4725-86ab-a69d5892463a",
"propertyName": "auditInfo.workloadDataLast30.lastDate",
"aliasName": "last30_lastDate",
"owner": ""
},
{
"propertyRef": "14e36a7e-50c8-49a6-8116-e5d4e224c5b8",
"propertyName": "dataQuality.completeDays",
"aliasName": "dq_completeDays",
"owner": ""
},
{
"propertyRef": "27d43c21-9cd6-49bb-b900-36d4470918ca",
"propertyName": "recommendedCpuRequest",
"aliasName": "recommendedCpuRequest",
"owner": ""
},
{
"propertyRef": "3dc336d8-0460-4627-ac90-7a3371801a05",
"propertyName": "auditInfo.workloadDataLast30.firstDate",
"aliasName": "last30_firstDate",
"owner": ""
},
{
"propertyRef": "3f386409-314f-4866-a857-1fc4c9848be9",
"propertyName": "auditInfo.dataCollection.auditCount",
"aliasName": "dc_auditCount",
"owner": ""
},
{
"propertyRef": "3f6485a0-5106-4d25-a7c5-13f4270462ef",
"propertyName": "controllerType",
"aliasName": "controllerType",
"owner": ""
},
{
"propertyRef": "49eb036a-4624-4ddf-9669-246d79e729b2",
"propertyName": "recommLastSeen",
"aliasName": "recommLastSeen",
"owner": ""
},
{
"propertyRef": "4c9b14a2-f38d-463a-aa40-576e27898faf",
"propertyName": "dataQuality.workloadName",
"aliasName": "dq_workloadName",
"owner": ""
},
{
"propertyRef": "4da38d9b-4bd2-4bf3-a8ad-aabc33061033",
"propertyName": "auditInfo.workloadDataLast30.totalDays",
"aliasName": "last30_totalDays",
"owner": ""
},
{
"propertyRef": "52a8fe7f-5189-4c3a-beb9-44044a4c38f6",
"propertyName": "hostName",
"aliasName": "hostName",
"owner": ""
},
{
"propertyRef": "57518fbe-c33e-4197-806e-f210b9bc60dd",
"propertyName": "entityId",
"aliasName": "entityId",
"owner": ""
},
{
"propertyRef": "5d589b40-31fa-4220-ae7c-f6f4b6245c92",
"propertyName": "recommSeenCount",
"aliasName": "recommSeenCount",
"owner": ""
},
{
"propertyRef": "60653ecf-1eba-4869-bc44-7bf034b5a440",
"propertyName": "dataQuality.lastSeen",
"aliasName": "dq_lastSeen",
"owner": ""
},
{
"propertyRef": "6184d602-983b-4287-9ddc-3996c89042c6",
"propertyName": "predictedUptime",
"aliasName": "predictedUptime",
"owner": ""
},
{
"propertyRef": "70be8edc-20ad-401a-a54f-57363d54e94b",
"propertyName": "recommendedMemRequest",
"aliasName": "recommendedMemRequest",
"owner": ""
},
{
"propertyRef": "72a4d777-cfb1-4179-9710-d2363b477f96",
"propertyName": "recommendedCpuLimit",
"aliasName": "recommendedCpuLimit",
"owner": ""
},
{
"propertyRef": "768c97b9-8956-463a-8de1-c52899c07c97",
"propertyName": "dataQuality.partialDays",
"aliasName": "dq_partialDays",
"owner": ""
},
{
"propertyRef": "78f306e0-aba9-44ca-897e-3c94aa93ad98",
"propertyName": "currentCpuLimit",
"aliasName": "currentCpuLimit",
"owner": ""
},
{
"propertyRef": "8243d912-a49e-42e8-9171-8373711ae5eb",
"propertyName": "currentCpuRequest",
"aliasName": "currentCpuRequest",
"owner": ""
},
{
"propertyRef": "8844fe4a-61eb-4231-aab3-138d278b94da",
"propertyName": "displayName",
"aliasName": "displayName",
"owner": ""
},
{
"propertyRef": "91865a1e-bb21-4f5d-ab58-8bbdb4386d18",
"propertyName": "hostName",
"aliasName": "hostName",
"owner": ""
},
{
"propertyRef": "938f59b0-535f-4af6-985a-5d4b38ab0009",
"propertyName": "namespace",
"aliasName": "namespace",
"owner": ""
},
{
"propertyRef": "9a2b99c1-5003-4fb4-8ccb-7e2afa484a6c",
"propertyName": "auditInfo.dataCollection.dateFirstAudited",
"aliasName": "dc_firstAudited",
"owner": ""
},
{
"propertyRef": "a490ea95-fd06-4265-9a58-540539d2f4c5",
"propertyName": "auditInfo.dataCollection.dateLastAudited",
"aliasName": "dc_lastAudited",
"owner": ""
},
{
"propertyRef": "a836c947-5999-48d1-b911-e19007355e94",
"propertyName": "currentMemLimit",
"aliasName": "currentMemLimit",
"owner": ""
},
{
"propertyRef": "a865a463-a257-4efb-b345-8b3694264dcf",
"propertyName": "currentMemRequest",
"aliasName": "currentMemRequest",
"owner": ""
},
{
"propertyRef": "afe8e28a-ed28-426f-8045-b8ce31887da8",
"propertyName": "auditInfo.workloadDataLast30.seenDays",
"aliasName": "last30_seenDays",
"owner": ""
},
{
"propertyRef": "bf244706-ae4c-4a23-ada5-7757ec4b269b",
"propertyName": "podService",
"aliasName": "podService",
"owner": ""
},
{
"propertyRef": "cdd55c17-3797-4154-a13a-b451c5afbc0c",
"propertyName": "currentCount",
"aliasName": "currentCount",
"owner": ""
},
{
"propertyRef": "da544810-d422-41fc-9054-668cf87a3109",
"propertyName": "dataQuality.firstSeen",
"aliasName": "dq_firstSeen",
"owner": ""
},
{
"propertyRef": "e5cd6e74-050c-4747-9b39-1e8c5c6fc47d",
"propertyName": "container",
"aliasName": "container",
"owner": ""
},
{
"propertyRef": "e61ad088-ba24-4ce1-94f9-d6e9a1fb97b0",
"propertyName": "cluster",
"aliasName": "cluster",
"owner": ""
},
{
"propertyRef": "e634e944-be90-47f2-9743-954bc883d544",
"propertyName": "recommendedMemLimit",
"aliasName": "recommendedMemLimit",
"owner": ""
},
{
"propertyRef": "ec58bb3d-6dad-490a-b862-30012063a51b",
"propertyName": "recommendationType",
"aliasName": "recommendationType",
"owner": ""
}
]
- name: Remove Container Subscriptions Property
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[ \t\r\n {\r\n \"propertyRef\": \"{{hostNamePropertyRef}}\"\r\n },\r\n {\r\n \"propertyRef\": \"{{controllerTypePropertyRef}}\"\r\n }\r\n] "
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
description: |-
You can remove a list of properties from the Containers Subscriptions Properties catalog using the _DELETE /subscriptions/containers/properties_ request.
You must have ownership of the property or be an administrative user to remove the property from the catalog.
Notes:
> In this example, two global properties are removed: _hostName_ and _conrollerType_.
> You must be an administrative user to remove these properties since they are global in scope. Ensure that the Kubex username you use for this request has administrative privileges.
> In the Body of this sample request, the `{{hostNamePropertyRef}}` and `{{controllerTypePropertyRef}}` variables are used to identify the properties to be removed; they were set in the previous "Review All Available Container Properties" request.
See example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm).
response:
- name: Remove Container Subscriptions Property (controllerType and hostName)
originalRequest:
method: DELETE
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[ \t\r\n {\r\n \"propertyRef\": \"{{hostNamePropertyRef}}\"\r\n },\r\n {\r\n \"propertyRef\": \"{{controllerTypePropertyRef}}\"\r\n }\r\n] "
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
status: Bad Request
code: 400
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "183"
- key: Date
value: Wed, 16 Sep 2020 13:25:43 GMT
- key: Connection
value: close
cookie: []
body: |-
[
{
"propertyRef": "52a8fe7f-5189-4c3a-beb9-44044a4c38f6",
"status": "404",
"message": "Not found."
},
{
"propertyRef": "3f6485a0-5106-4d25-a7c5-13f4270462ef",
"message": "Delete successfully."
}
]
- name: Remove Container Subscriptions Property (namespace and hostName)
originalRequest:
method: DELETE
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[ \t\r\n {\r\n \"propertyRef\": \"{{hostNamePropertyRef}}\"\r\n },\r\n {\r\n \"propertyRef\": \"{{namespacePropertyRef}}\"\r\n }\r\n] "
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
status: Bad Request
code: 400
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "403"
- key: Date
value: Tue, 15 Sep 2020 21:47:48 GMT
- key: Connection
value: close
cookie: []
body: |-
[
{
"propertyRef": "938f59b0-535f-4af6-985a-5d4b38ab0009",
"propertyName": "namespace",
"message": "In use by subscription IDs:[e6a0ff4c-3855-41ab-9152-8247399d3104, 72d62951-107a-4d8e-906d-3a6cd82daba0, 306a10fb-43dc-4686-b3e9-7ee7e5f2be40, c4f925d9-c9fc-4019-b515-8ae8085916a2, 3507ffbc-8e83-433e-a090-61de7bd154ce]."
},
{
"propertyRef": "91865a1e-bb21-4f5d-ab58-8bbdb4386d18",
"message": "Delete successfully."
}
]
- name: Add Properties to the Container Subscriptions Properties Catalog
event:
- listen: test
script:
exec:
- "var body = JSON.parse(responseBody);\r"
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i Use a non-administrative user to make this request. The \"owner\" parameter is automatically set to your username and the property is considered private.\r\n\r\n> In this example, the property reference for the 2 properties added are saved in the following environment variables for future use:\r\n> * `{{hostNamePropertyRef}}` \r\n> * `{{controllerTypePropertyRef}}` \r\n\r\nSee example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)."
response:
- name: Add Properties to the Container Subscriptions Properties Catalog (hostName, controllerType)
originalRequest:
method: POST
header:
- key: Accept
type: text
value: application/json
- key: Content-Type
type: text
value: application/json
- key: Authorization
type: text
value: audio/basic
warning: This is a duplicate header and will be overridden by the Authorization header generated by Postman.
disabled: true
body:
mode: raw
raw: "[\r\n {\r\n \t\"propertyName\": \"hostName\",\r\n \t\"aliasName\": \"Host Name\"\r\n },\r\n {\r\n \"propertyName\": \"controllerType\",\r\n \"aliasName\": \"Controller Type\"\r\n }\r\n]"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "170"
- key: Date
value: Wed, 16 Sep 2020 13:31:17 GMT
cookie: []
body: |-
[
{
"propertyRef": "c1ad08a0-3742-4914-bed9-f1f43f36c8b1",
"propertyName": "hostName"
},
{
"propertyRef": "f4d1a734-3628-484e-9f98-49500b6a5c67",
"propertyName": "controllerType"
}
]
- name: Review Private Container Properties Owned By User
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: basic
basic:
- key: password
value: saas
type: string
- key: username
value: saas
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties?type=owner&owner={{DensifyUser}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
query:
- key: type
value: owner
- key: owner
value: "{{DensifyUser}}"
description: "Get details of Subscriptions container properties owned by a user.\r\n\r\nIf you are not an administrative user, you can only retrieve your own properites. \r\n\r\nThis example assumes that you are the `{{DensifyUser}}` for you to retrieve your properties.\r\n\r\nNote:\r\n\r\n> Administrative users can use the \"type\" and \"owner\" options to retrieve properties owned by any user.\r\n\r\nSee example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)."
response:
- name: Review Private Container Properties Owned By User
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties?type=owner&owner={{DensifyUser}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
query:
- key: type
value: owner
- key: owner
value: "{{DensifyUser}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "254"
- key: Date
value: Wed, 16 Sep 2020 13:39:32 GMT
cookie: []
body: |-
[
{
"propertyRef": "c1ad08a0-3742-4914-bed9-f1f43f36c8b1",
"propertyName": "hostName",
"aliasName": "Host Name",
"owner": "saas"
},
{
"propertyRef": "f4d1a734-3628-484e-9f98-49500b6a5c67",
"propertyName": "controllerType",
"aliasName": "Controller Type",
"owner": "saas"
}
]
- name: Promote Private Subscriptions Container Properties to Global
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"propertyRef\": \"{{hostNamePropertyRef}}\",\r\n \"propertyName\": \"hostName\",\r\n \"aliasName\": \"Container Host Name\",\r\n \"owner\": \"\"\r\n },\r\n {\r\n \"propertyRef\": \"{{controllerTypePropertyRef}}\",\r\n \"propertyName\": \"controllerType\",\r\n \"aliasName\": \"Controller Type\",\r\n \"owner\": \"\"\r\n }\r\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
description: |-
In this example, we will modify the property owner parameter (i.e. `owner`\="") of 2 private properties to make them global. Only an administrative user can perform this request, therefore you must ensure that the `your_densify_user` environment variable is set to a user with administrative privileges.
You must specify all mandatory parameters in a PUT request because the action is technically a delete and replacment of all parameters. Review the Body section of this request. The `{{hostNamePropertyRef}}` and `{{controllerTypeProperyRef}}` variables in the Body section was previously set by the "Add Properties to the Container Subscriptions Properties Catalog" POST request. All 2 properties were originally created as private properties.
See example. Refer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm).
response:
- name: Promote Private Subscriptions Container Properties to Global (hostName and controllerType)
originalRequest:
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"propertyRef\": \"{{hostNamePropertyRef}}\",\r\n \"propertyName\": \"hostName\",\r\n \"aliasName\": \"Container Host Name\",\r\n \"owner\": \"\"\r\n },\r\n {\r\n \"propertyRef\": \"{{controllerTypePropertyRef}}\",\r\n \"propertyName\": \"controllerType\",\r\n \"aliasName\": \"Controller Type\",\r\n \"owner\": \"\"\r\n }\r\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "170"
- key: Date
value: Wed, 16 Sep 2020 14:27:56 GMT
cookie: []
body: |-
[
{
"propertyRef": "c1ad08a0-3742-4914-bed9-f1f43f36c8b1",
"propertyName": "hostName"
},
{
"propertyRef": "f4d1a734-3628-484e-9f98-49500b6a5c67",
"propertyName": "controllerType"
}
]
- name: Review the List of Available Container Properties After Updates
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
description: "Review the list of recommendation container properties availble to you again after all the modifications.\r\n\r\nIn particular, see the *hostName* and *controllerType* properties.\r\n\r\n\r\nRefer to [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm) for detailed documentation."
response:
- name: Review the List of Available Container Properties After Updates
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/properties"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- properties
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Wed, 16 Sep 2020 16:02:17 GMT
cookie: []
body: |-
[
{
"propertyRef": "11156859-47b2-4a38-a1d8-b553843ccaee",
"propertyName": "recommFirstSeen",
"aliasName": "recommFirstSeen",
"owner": ""
},
{
"propertyRef": "14412361-5289-4725-86ab-a69d5892463a",
"propertyName": "auditInfo.workloadDataLast30.lastDate",
"aliasName": "last30_lastDate",
"owner": ""
},
{
"propertyRef": "14e36a7e-50c8-49a6-8116-e5d4e224c5b8",
"propertyName": "dataQuality.completeDays",
"aliasName": "dq_completeDays",
"owner": ""
},
{
"propertyRef": "27d43c21-9cd6-49bb-b900-36d4470918ca",
"propertyName": "recommendedCpuRequest",
"aliasName": "recommendedCpuRequest",
"owner": ""
},
{
"propertyRef": "3dc336d8-0460-4627-ac90-7a3371801a05",
"propertyName": "auditInfo.workloadDataLast30.firstDate",
"aliasName": "last30_firstDate",
"owner": ""
},
{
"propertyRef": "3f386409-314f-4866-a857-1fc4c9848be9",
"propertyName": "auditInfo.dataCollection.auditCount",
"aliasName": "dc_auditCount",
"owner": ""
},
{
"propertyRef": "49eb036a-4624-4ddf-9669-246d79e729b2",
"propertyName": "recommLastSeen",
"aliasName": "recommLastSeen",
"owner": ""
},
{
"propertyRef": "4c9b14a2-f38d-463a-aa40-576e27898faf",
"propertyName": "dataQuality.workloadName",
"aliasName": "dq_workloadName",
"owner": ""
},
{
"propertyRef": "4da38d9b-4bd2-4bf3-a8ad-aabc33061033",
"propertyName": "auditInfo.workloadDataLast30.totalDays",
"aliasName": "last30_totalDays",
"owner": ""
},
{
"propertyRef": "57518fbe-c33e-4197-806e-f210b9bc60dd",
"propertyName": "entityId",
"aliasName": "entityId",
"owner": ""
},
{
"propertyRef": "5d589b40-31fa-4220-ae7c-f6f4b6245c92",
"propertyName": "recommSeenCount",
"aliasName": "recommSeenCount",
"owner": ""
},
{
"propertyRef": "60653ecf-1eba-4869-bc44-7bf034b5a440",
"propertyName": "dataQuality.lastSeen",
"aliasName": "dq_lastSeen",
"owner": ""
},
{
"propertyRef": "6184d602-983b-4287-9ddc-3996c89042c6",
"propertyName": "predictedUptime",
"aliasName": "predictedUptime",
"owner": ""
},
{
"propertyRef": "70be8edc-20ad-401a-a54f-57363d54e94b",
"propertyName": "recommendedMemRequest",
"aliasName": "recommendedMemRequest",
"owner": ""
},
{
"propertyRef": "72a4d777-cfb1-4179-9710-d2363b477f96",
"propertyName": "recommendedCpuLimit",
"aliasName": "recommendedCpuLimit",
"owner": ""
},
{
"propertyRef": "768c97b9-8956-463a-8de1-c52899c07c97",
"propertyName": "dataQuality.partialDays",
"aliasName": "dq_partialDays",
"owner": ""
},
{
"propertyRef": "78f306e0-aba9-44ca-897e-3c94aa93ad98",
"propertyName": "currentCpuLimit",
"aliasName": "currentCpuLimit",
"owner": ""
},
{
"propertyRef": "8243d912-a49e-42e8-9171-8373711ae5eb",
"propertyName": "currentCpuRequest",
"aliasName": "currentCpuRequest",
"owner": ""
},
{
"propertyRef": "8844fe4a-61eb-4231-aab3-138d278b94da",
"propertyName": "displayName",
"aliasName": "displayName",
"owner": ""
},
{
"propertyRef": "938f59b0-535f-4af6-985a-5d4b38ab0009",
"propertyName": "namespace",
"aliasName": "namespace",
"owner": ""
},
{
"propertyRef": "9a2b99c1-5003-4fb4-8ccb-7e2afa484a6c",
"propertyName": "auditInfo.dataCollection.dateFirstAudited",
"aliasName": "dc_firstAudited",
"owner": ""
},
{
"propertyRef": "a490ea95-fd06-4265-9a58-540539d2f4c5",
"propertyName": "auditInfo.dataCollection.dateLastAudited",
"aliasName": "dc_lastAudited",
"owner": ""
},
{
"propertyRef": "a836c947-5999-48d1-b911-e19007355e94",
"propertyName": "currentMemLimit",
"aliasName": "currentMemLimit",
"owner": ""
},
{
"propertyRef": "a865a463-a257-4efb-b345-8b3694264dcf",
"propertyName": "currentMemRequest",
"aliasName": "currentMemRequest",
"owner": ""
},
{
"propertyRef": "afe8e28a-ed28-426f-8045-b8ce31887da8",
"propertyName": "auditInfo.workloadDataLast30.seenDays",
"aliasName": "last30_seenDays",
"owner": ""
},
{
"propertyRef": "bf244706-ae4c-4a23-ada5-7757ec4b269b",
"propertyName": "podService",
"aliasName": "podService",
"owner": ""
},
{
"propertyRef": "c1ad08a0-3742-4914-bed9-f1f43f36c8b1",
"propertyName": "hostName",
"aliasName": "Container Host Name",
"owner": ""
},
{
"propertyRef": "cdd55c17-3797-4154-a13a-b451c5afbc0c",
"propertyName": "currentCount",
"aliasName": "currentCount",
"owner": ""
},
{
"propertyRef": "da544810-d422-41fc-9054-668cf87a3109",
"propertyName": "dataQuality.firstSeen",
"aliasName": "dq_firstSeen",
"owner": ""
},
{
"propertyRef": "e5cd6e74-050c-4747-9b39-1e8c5c6fc47d",
"propertyName": "container",
"aliasName": "container",
"owner": ""
},
{
"propertyRef": "e61ad088-ba24-4ce1-94f9-d6e9a1fb97b0",
"propertyName": "cluster",
"aliasName": "cluster",
"owner": ""
},
{
"propertyRef": "e634e944-be90-47f2-9743-954bc883d544",
"propertyName": "recommendedMemLimit",
"aliasName": "recommendedMemLimit",
"owner": ""
},
{
"propertyRef": "ec58bb3d-6dad-490a-b862-30012063a51b",
"propertyName": "recommendationType",
"aliasName": "recommendationType",
"owner": ""
},
{
"propertyRef": "f4d1a734-3628-484e-9f98-49500b6a5c67",
"propertyName": "controllerType",
"aliasName": "Controller Type",
"owner": ""
}
]
description: "You can add, modify and delete properties to your subscriptions container properties catalog. See [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)."
description: "You can add, modify and delete properties in your subscriptions properties catalog. See [Subscriptions: Properties](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Properties.htm)."
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 5.4 Updating Subscription Suppressions Catalogs
item:
- name: 5.4.1 Updating Cloud Subscriptions Suppresssions Catalog
item:
- name: Retrieve All Cloud Subscriptions Suppressions
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i If you are an administrative user, you have access to all global and all private suppressions.
> If you are a non-administrative user, you have access to all global and to your own private suppressions.
> In this example, the suppression reference for the 3 suppressions added are saved in the following environment variables for future use:
See example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm).
response:
- name: Retrieve All Cloud Subscriptions Suppressions
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- suppressions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "1500"
- key: Date
value: Wed, 16 Sep 2020 16:22:12 GMT
cookie: []
body: |-
[
{
"suppressionRef": "03922061-96eb-450b-a30f-a397a19c9a6f",
"suppressionName": "Effort Estimate",
"propertyName": "effortEstimate",
"aliasName": "supprEffortEstimate",
"owner": ""
},
{
"suppressionRef": "29150379-9252-498d-a59d-de47d183eee8",
"suppressionName": "Approval Type",
"propertyName": "approvalType",
"aliasName": "supprApprovalType",
"owner": ""
},
{
"suppressionRef": "61acf182-1773-4988-b4d9-a76c866b5c68",
"suppressionName": "Business Applications",
"attributeName": "Business Applications",
"aliasName": "supprBusinessApplications",
"owner": ""
},
{
"suppressionRef": "93dba027-8391-4303-b413-7c4cb41ec5e9",
"suppressionName": "Suppress Region",
"propertyName": "region",
"aliasName": "supprRegion",
"owner": ""
},
{
"suppressionRef": "a6827ae4-fa2b-405e-a564-d70f2dad45c2",
"suppressionName": "recommendationType",
"propertyName": "recommendationType",
"aliasName": "supprRecommendationType",
"owner": ""
},
{
"suppressionRef": "ae0bf909-c8dd-4732-9068-c9c5fcc16b9e",
"suppressionName": "Suppress Account",
"propertyName": "accountIdRef",
"aliasName": "supprAccount",
"owner": ""
},
{
"suppressionRef": "c27b5c5e-89d2-4194-8fd9-f4dc70a39678",
"suppressionName": "Suppress Department",
"attributeName": "Department",
"aliasName": "supprDept",
"owner": ""
},
{
"suppressionRef": "c6da9e05-92be-4ec6-9892-7a2ed68d57f0",
"suppressionName": "Instance Name",
"propertyName": "name",
"aliasName": "supprName",
"owner": ""
},
{
"suppressionRef": "feec2349-3c69-4aea-b5f0-2cf7be4deb87",
"suppressionName": "Entity ID",
"propertyName": "entityId",
"aliasName": "supprEntityID",
"owner": ""
}
]
- name: Adding Cloud Subscriptions Suppressions
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i In this example, the suppression reference for the 3 suppressions added are saved in the following environment variables for future use:\r\n> * `{{regionSupprRef}}` \r\n> * `{{accountIdSupprRef}}` \r\n> * `{{DeptSupprRef}}`\r\n\r\nSee example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Adding Subscriptions Suppressions
originalRequest:
method: POST
header:
- key: Accept
type: text
value: application/json
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n\t{\r\n \"suppressionName\": \"Suppress Region\",\r\n \"propertyName\": \"region\",\r\n \"aliasName\": \"supprRegion\"\r\n },\r\n \t{\r\n \"suppressionName\": \"Suppress Account\",\r\n \"propertyName\": \"accountIdRef\",\r\n \"aliasName\": \"supprAccount\"\r\n },\r\n \t{\r\n \"suppressionName\": \"Suppress Department\",\r\n \"attributeName\": \"Department\",\r\n \"aliasName\": \"supprDept\"\r\n }\r\n ] \r\n"
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- suppressions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "260"
- key: Date
value: Mon, 29 Jun 2020 20:59:21 GMT
cookie: []
body: |-
[
{
"suppressionRef": "c249269c-bc4d-49c7-8aa4-b0ba32713f12",
"propertyName": "region"
},
{
"suppressionRef": "70a25056-846a-4221-ad50-307c56af13aa",
"propertyName": "accountIdRef"
},
{
"suppressionRef": "f21261f8-7288-42c1-8de3-b666ac4dc06a",
"attributeName": "Department"
}
]
- name: Get Subscription Suppression by ID
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/suppressions/{{DeptSupprRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- suppressions
- "{{DeptSupprRef}}"
description: "Get details of a particular suppression by providing the suppression reference ID in the URL request.\r\n\r\nIn this example, the request is searching for suppression reference `{{DeptSupprRef}}`, which is an environment variable set in the previous request: \"Adding Cloud Subscriptions Suppressions\".\r\n\r\n\r\nSee example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Get Subscription Suppression by ID
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/suppressions/{{DeptSupprRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- suppressions
- "{{DeptSupprRef}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "165"
- key: Date
value: Mon, 29 Jun 2020 21:01:28 GMT
cookie: []
body: |-
{
"suppressionRef": "f21261f8-7288-42c1-8de3-b666ac4dc06a",
"suppressionName": "Suppress Department",
"attributeName": "Department",
"aliasName": "supprDept",
"owner": "saas"
}
- name: Modify Cloud Subscription Suppressions
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\n\t{\n \"suppressionRef\": \"{{accountIdSupprRef}}\",\n \"suppressionName\": \"Suppress Account Mod\",\n \"propertyName\": \"accountIdRef\",\n \"aliasName\": \"supprAccountMod\",\n \"owner\": \"{{DensifyUser}}\"\n },\n {\n \"suppressionRef\": \"{{DeptSupprRef}}\",\n \"suppressionName\": \"Suppress Department Mod\",\n \"attributeName\": \"Department\",\n \"aliasName\": \"supprDeptMod\",\n \"owner\": \"{{DensifyUser}}\"\n }\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- suppressions
description: "You can modify a group of suppressions from the Cloud Subscriptions Suppressions catalog by the *PUT /subscriptions/cloud/suppressions* request and specifying the parameter changes in the request Body. See the Body section of this request.\r\n\r\nThe \"suppressionRef\" parameter is used to identify the suppression. You must specify all other mandatory parameters in the PUT suppressions request because the request action is technically a delete and replacement of all parameters.\r\n\r\nIn this example, the names and alias names of two private suppressions are modified:\r\n\r\n1) accountIdRef (property) -- `{{accountIdSupprRef}}`\r\n\r\n2) Department (attribute) -- `{{DeptSupprRef}}`\r\n\r\nSince these two suppressions are private (created by `{{DensifyUser}}` in the previous \"Adding Subscriptions Suppressions\" request), you must be the owner (i.e. `{{DensifyUser}}`) or an administrative user to modify them. \r\n\r\nSee example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Modify Subscription Suppressions
originalRequest:
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\n\t{\n \"suppressionRef\": \"{{accountIdSupprRef}}\",\n \"suppressionName\": \"Suppress Account Mod\",\n \"propertyName\": \"accountIdRef\",\n \"aliasName\": \"supprAccountMod\",\n \"owner\": \"{{DensifyUser}}\"\n },\n {\n \"suppressionRef\": \"{{DeptSupprRef}}\",\n \"suppressionName\": \"Suppress Department Mod\",\n \"attributeName\": \"Department\",\n \"aliasName\": \"supprDeptMod\",\n \"owner\": \"{{DensifyUser}}\"\n }\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- suppressions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "177"
- key: Date
value: Mon, 29 Jun 2020 21:36:24 GMT
cookie: []
body: |-
[
{
"suppressionRef": "70a25056-846a-4221-ad50-307c56af13aa",
"propertyName": "accountIdRef"
},
{
"suppressionRef": "f21261f8-7288-42c1-8de3-b666ac4dc06a",
"attributeName": "Department"
}
]
- name: Modify a Cloud Subscriptions Suppression with ID
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "{\r\n \"suppressionName\": \"Suppress Region Mod\",\r\n \"propertyName\": \"region\",\r\n \"aliasName\": \"supprRegionMod\",\r\n \"owner\": \"{{DensifyUser}}\"\r\n}"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/suppressions/{{regionSupprRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- suppressions
- "{{regionSupprRef}}"
description: "Modify a single cloud suppression with the reference ID in the URL request.\r\n\r\nIn this example, the suppression to modify is identified by `{{regionSupprRef}}` (which was set by the previous example, \"Adding Cloud Subscriptions Suppression\").\r\n\r\nYou must specify all mandatory parameters in a PUT request because the action is technically a delete and replacment of all parameters. See the Body section.\r\n\r\nSince the `{{regionSupprRef}}` suppression is private (created by `{{DensifyUser}}` in the previous \"Adding Subscriptions Suppressions\" request), you must be the owner (i.e. `{{DensifyUser}}`) or an administrative user to modify the suppression. \r\n\r\n\r\n\r\nSee example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Modify a Subscriptions Suppression with ID
originalRequest:
method: PUT
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "{\r\n \"suppressionName\": \"Suppress Region Mod\",\r\n \"propertyName\": \"region\",\r\n \"aliasName\": \"supprRegionMod\",\r\n \"owner\": \"{{DensifyUser}}\"\r\n}"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/suppressions/{{regionSupprRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- suppressions
- "{{regionSupprRef}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "81"
- key: Date
value: Mon, 29 Jun 2020 22:07:55 GMT
cookie: []
body: |-
{
"suppressionRef": "c249269c-bc4d-49c7-8aa4-b0ba32713f12",
"propertyName": "region"
}
- name: Review All Cloud Subscription Suppressions Again
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- suppressions
description: "Review your modifications by getting the list of Subscriptions cloud suppressions availble to you.\r\n\r\nSpecifically, review the following modified suppressions:\r\n\r\n* region (property)\r\n* accountIdRef (property)\r\n* Department (tag)\r\n\r\nSee example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Review All Subscription Suppressions Again
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- suppressions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "1535"
- key: Date
value: Mon, 29 Jun 2020 22:10:36 GMT
cookie: []
body: |-
[
{
"suppressionRef": "03922061-96eb-450b-a30f-a397a19c9a6f",
"suppressionName": "Effort Estimate",
"attributeName": "Effort Estimate",
"aliasName": "supprEffortEstimate",
"owner": ""
},
{
"suppressionRef": "29150379-9252-498d-a59d-de47d183eee8",
"suppressionName": "Approval Type",
"propertyName": "approvalType",
"aliasName": "supprApprovalType",
"owner": ""
},
{
"suppressionRef": "61acf182-1773-4988-b4d9-a76c866b5c68",
"suppressionName": "Business Applications",
"attributeName": "Business Applications",
"aliasName": "supprBusinessApplications",
"owner": ""
},
{
"suppressionRef": "70a25056-846a-4221-ad50-307c56af13aa",
"suppressionName": "Suppress Account Mod",
"propertyName": "accountIdRef",
"aliasName": "supprAccountMod",
"owner": "saas"
},
{
"suppressionRef": "a6827ae4-fa2b-405e-a564-d70f2dad45c2",
"suppressionName": "recommendationType",
"propertyName": "recommendationType",
"aliasName": "supprRecommendationType",
"owner": ""
},
{
"suppressionRef": "c249269c-bc4d-49c7-8aa4-b0ba32713f12",
"suppressionName": "Suppress Region Mod",
"propertyName": "region",
"aliasName": "supprRegionMod",
"owner": "saas"
},
{
"suppressionRef": "c6da9e05-92be-4ec6-9892-7a2ed68d57f0",
"suppressionName": "Instance Name",
"propertyName": "name",
"aliasName": "supprName",
"owner": ""
},
{
"suppressionRef": "f21261f8-7288-42c1-8de3-b666ac4dc06a",
"suppressionName": "Suppress Department Mod",
"attributeName": "Department",
"aliasName": "supprDeptMod",
"owner": "saas"
},
{
"suppressionRef": "feec2349-3c69-4aea-b5f0-2cf7be4deb87",
"suppressionName": "Entity ID",
"propertyName": "entityId",
"aliasName": "supprEntityID",
"owner": ""
}
]
- name: Remove a Cloud Subscription Suppression with Reference ID
request:
auth:
type: basic
basic:
- key: password
value: admin
type: string
- key: username
value: admin
type: string
method: DELETE
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/suppressions/{{DeptSupprRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- suppressions
- "{{DeptSupprRef}}"
description: "Delete a specific suppression from the Cloud Subscriptions Suppressions catalog with the suppression reference in the URL.\r\n\r\nYou must have ownership of the suppression or be an administrative user to remove the suppression from the catalog.\r\n\r\nIn this example, the following suppression is removed:\r\n* Department (attribute tag)\r\n\r\nEnsure that `{{DensifyUser}}` is the owner of this private suppression. The `{{DeptSupprRef}}` variable was set from the previous request, \"Adding Cloud Subscriptions Suppressions\".\r\n\r\nSee examples. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Remove a Subscription Suppression with Reference ID
originalRequest:
method: DELETE
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/suppressions/{{DeptSupprRef}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- suppressions
- "{{DeptSupprRef}}"
status: No Content
code: 204
_postman_previewlanguage: plain
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Date
value: Mon, 29 Jun 2020 22:48:12 GMT
cookie: []
body: ""
- name: Remove Cloud Suppressions
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: |-
[
{
"suppressionRef": "{{regionSupprRef}}"
},
{
"suppressionRef": "{{accountIdSupprRef}}"
}
]
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- suppressions
description: "Delete suppressions from the Cloud Subscriptions Suppressions catalog using the *DELETE /subscriptions/cloud/suppressions* request.\r\n\r\nYou must have ownership of the suppression or be an administrative user to remove the suppression from the catalog.\r\n\r\nIn this example, the following suppressions are removed:\r\n* region (property)\r\n* accountIdRef (property)\r\n\r\nEnsure that `{{DensifyUser}}` is the owner of these private suppressions.\r\n\r\nNotes:\r\n> In this example, the Body section contains suppression references that were set in previous examples:\r\n> * `{{regionSupprRef}}` \r\n> * `{{accountIdSupprRef}}` \r\n\r\n\r\nSee examples. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Remove Suppressions
originalRequest:
method: DELETE
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: |-
[
{
"suppressionRef": "{{regionSupprRef}}"
},
{
"suppressionRef": "{{accountIdSupprRef}}"
}
]
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- suppressions
status: No Content
code: 204
_postman_previewlanguage: plain
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Date
value: Mon, 29 Jun 2020 22:42:43 GMT
cookie: []
body: ""
- name: Review Deleted Cloud Suppressions
event:
- listen: test
script:
exec:
- ""
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- suppressions
description: "Review your deletions by getting the list of Subscriptions cloud suppressions availble to you.\r\n\r\nSpecifically, review the list to ensure the following suppressions are removed:\r\n\r\n* region (property)\r\n* accountIdRef (property)\r\n* Department (tag)\r\n\r\nSee example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Review Deleted Suppressions
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- suppressions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "1019"
- key: Date
value: Mon, 29 Jun 2020 22:50:29 GMT
cookie: []
body: |-
[
{
"suppressionRef": "03922061-96eb-450b-a30f-a397a19c9a6f",
"suppressionName": "Effort Estimate",
"attributeName": "Effort Estimate",
"aliasName": "supprEffortEstimate",
"owner": ""
},
{
"suppressionRef": "29150379-9252-498d-a59d-de47d183eee8",
"suppressionName": "Approval Type",
"propertyName": "approvalType",
"aliasName": "supprApprovalType",
"owner": ""
},
{
"suppressionRef": "61acf182-1773-4988-b4d9-a76c866b5c68",
"suppressionName": "Business Applications",
"attributeName": "Business Applications",
"aliasName": "supprBusinessApplications",
"owner": ""
},
{
"suppressionRef": "a6827ae4-fa2b-405e-a564-d70f2dad45c2",
"suppressionName": "recommendationType",
"propertyName": "recommendationType",
"aliasName": "supprRecommendationType",
"owner": ""
},
{
"suppressionRef": "c6da9e05-92be-4ec6-9892-7a2ed68d57f0",
"suppressionName": "Instance Name",
"propertyName": "name",
"aliasName": "supprName",
"owner": ""
},
{
"suppressionRef": "feec2349-3c69-4aea-b5f0-2cf7be4deb87",
"suppressionName": "Entity ID",
"propertyName": "entityId",
"aliasName": "supprEntityID",
"owner": ""
}
]
description: "You can add, modify and delete properties in your subscriptions suppressions cloud catalog. See [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
- name: 5.4.2 Updating Container Subscriptions Suppressions Catalog
item:
- name: Retrieve All Container Subscriptions Suppressions
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i If you are an administrative user, you have access to all global and all private suppressions.\r\n\r\n> If you are a non-administrative user, you have access to all global and to your own private suppressions.\r\n\r\n> In this example, the following environment variables are saved for future use (if they exist):\r\n> * `{{clusterSupprRef}}` \r\n> * `{{hostNameSupprRef}}` \r\n> * `{{virtualDomainSupprRef}}`\r\n\r\nSee example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Retrieve All Container Subscriptions Suppressions
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- suppressions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "184"
- key: Date
value: Wed, 16 Sep 2020 16:57:15 GMT
cookie: []
body: |-
[
{
"suppressionRef": "fdc363b2-523c-4bb5-bdbf-a4f4ef994487",
"suppressionName": "RecommendedMemRequest",
"propertyName": "recommendedMemRequest",
"aliasName": "supprRecMemRequest",
"owner": ""
}
]
- name: Adding Container Subscriptions Suppressions
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i In this example, the suppression reference for the 3 suppressions added are saved in the following environment variables for future use:\r\n> * `{{clusterSupprRef}}` \r\n> * `{{hostNameSupprRef}}` \r\n> * `{{virtualDomainSupprRef}}`\r\n\r\nSee example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Adding Container Subscriptions Suppressions (cluster, hostName, Virtual Doman)
originalRequest:
method: POST
header:
- key: Accept
type: text
value: application/json
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n\t{\r\n \"suppressionName\": \"clusterSuppression\",\r\n \"propertyName\": \"cluster\",\r\n \"aliasName\": \"Suppress Cluster\"\r\n },\r\n \t{\r\n \"suppressionName\": \"hostNameSuppression\",\r\n \"propertyName\": \"hostName\",\r\n \"aliasName\": \"Suppress HostName\"\r\n },\r\n \t{\r\n \"suppressionName\": \"virtualDomainSuppression\",\r\n \"attributeName\": \"Virtual Domain\",\r\n \"aliasName\": \"Suppress Virtual Domain\"\r\n }\r\n ] \r\n"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- suppressions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "261"
- key: Date
value: Wed, 16 Sep 2020 17:49:43 GMT
cookie: []
body: |-
[
{
"suppressionRef": "7452b8bf-8e44-4679-8d59-e0116156b6c6",
"propertyName": "cluster"
},
{
"suppressionRef": "3a285953-9491-42a4-a8fb-0c1650a009bd",
"propertyName": "hostName"
},
{
"suppressionRef": "3930389d-f4e7-47c9-ba72-1d80e82df403",
"attributeName": "Virtual Domain"
}
]
- name: Retrieve All Container Subscriptions Suppressions After Addition
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "for (var i = 0;i If you are an administrative user, you have access to all global and all private suppressions.\r\n\r\n> If you are a non-administrative user, you have access to all global and to your own private suppressions.\r\n\r\n> In this example, the following environment variables are saved for future use (if they exist):\r\n> * `{{clusterSupprRef}}` \r\n> * `{{hostNameSupprRef}}` \r\n> * `{{virtualDomainSupprRef}}`\r\n\r\nSee example. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Retrieve All Container Subscriptions Suppressions After Addition
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- suppressions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "715"
- key: Date
value: Wed, 16 Sep 2020 17:51:10 GMT
cookie: []
body: |-
[
{
"suppressionRef": "3930389d-f4e7-47c9-ba72-1d80e82df403",
"suppressionName": "virtualDomainSuppression",
"attributeName": "Virtual Domain",
"aliasName": "Suppress Virtual Domain",
"owner": "saas"
},
{
"suppressionRef": "3a285953-9491-42a4-a8fb-0c1650a009bd",
"suppressionName": "hostNameSuppression",
"propertyName": "hostName",
"aliasName": "Suppress HostName",
"owner": "saas"
},
{
"suppressionRef": "7452b8bf-8e44-4679-8d59-e0116156b6c6",
"suppressionName": "clusterSuppression",
"propertyName": "cluster",
"aliasName": "Suppress Cluster",
"owner": "saas"
},
{
"suppressionRef": "fdc363b2-523c-4bb5-bdbf-a4f4ef994487",
"suppressionName": "RecommendedMemRequest",
"propertyName": "recommendedMemRequest",
"aliasName": "supprRecMemRequest",
"owner": ""
}
]
- name: Remove Container Suppressions
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: |-
[
{
"suppressionRef": "{{clusterSupprRef}}"
},
{
"suppressionRef": "{{hostNameSupprRef}}"
},
{
"suppressionRef": "{{virtualDomainSupprRef}}"
}
]
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- suppressions
description: "Delete suppressions from the Container Subscriptions Suppressions catalog using the *DELETE /subscriptions/container/suppressions* request.\r\n\r\nYou must have ownership of the suppression or be an administrative user to remove the suppression from the catalog.\r\n\r\nIn this example, the following suppressions are removed:\r\n* cluster (property)\r\n* hostName (property)\r\n* Virtual Domain (tag)\r\n\r\nEnsure that `{{DensifyUser}}` is the owner of these private suppressions.\r\n\r\nNotes:\r\n> In this example, the Body section contains suppression references that were set in previous examples:\r\n> * `{{clusterSupprRef}}` \r\n> * `{{hostNameSupprRef}}` \r\n> * `{{virtualDomainSupprRef}}`\r\n\r\n\r\nSee examples. Refer to [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
response:
- name: Remove Container Suppressions
originalRequest:
method: DELETE
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: |-
[
{
"suppressionRef": "{{clusterSupprRef}}"
},
{
"suppressionRef": "{{hostNameSupprRef}}"
},
{
"suppressionRef": "{{virtualDomainSupprRef}}"
}
]
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers/suppressions"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
- suppressions
status: No Content
code: 204
_postman_previewlanguage: plain
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Date
value: Wed, 16 Sep 2020 17:54:11 GMT
cookie: []
body: ""
description: "You can add, modify and delete properties in subscriptions suppressions containers catalog. See [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
description: "You can add, modify and delete your subscriptions suppressions catalog. See [Subscriptions: Suppressions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Suppressions.htm)."
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
- name: 5.5 Subscriptions
item:
- name: 5.5.1 Cloud Subscriptions
item:
- name: Creating Cloud Subscriptions
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 1 )\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"subscriptionRef1\", firstdata.subscriptionRef);\r"
- " var seconddata = pm.response.json()[1];\r"
- " pm.environment.set(\"subscriptionRef2\", seconddata.subscriptionRef);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n\t{\r\n\t\t\"subscriptionName\": \"Test Subscription 1 - owned by {{nonAdminUser}}\",\r\n\t\t\"owner\": \"{{nonAdminUser}}\",\r\n\t\t\"description\": \"A {{nonAdminUser}} test subscription with only Just Right recommendations.\",\r\n\t\t\"outputType\": \"application/json\",\r\n\t\t\"active\": true,\r\n\t\t\"propertyReferences\": [{\r\n\t\t\t\"propertyID\": \"{{recommendationTypePropRef}}\",\r\n \"operator\": \"=\",\r\n \t\"values\": [\"Just Right\"]\r\n \t}]\r\n },\r\n {\r\n \"subscriptionName\": \"Test Subscription 2 - global\",\r\n \"description\": \"A global subscription test\",\r\n \"active\": true,\r\n \"webhook\": {\r\n \"uri\": \"https://192.168.22.210:443/densify/test/webhook\",\r\n \"authType\": \"bearer\",\r\n \t\"authValue\": \"{{token}}\"\r\n },\r\n\t\"propertyReferences\": [{\r\n \"propertyID\": \"{{currentCostPropRef}}\",\r\n \"operator\": \">=\",\r\n \"values\": [10]\r\n }],\r\n \"suppressionReferences\": [\r\n {\r\n \"values\": [\r\n \"Terminate\"\r\n ],\r\n \"suppressionID\": \"{{recommendationTypeSupprRef}}\",\r\n \"operator\": \"=\"\r\n }\r\n ],\r\n \"returnStructure\": {\r\n \"properties\": [\r\n {\r\n \"propertyID\": \"{{namePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{recommendationTypePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{currentTypePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{recommendedTypePropRef}}\"\r\n },\r\n {\r\n \"useAlias\": true,\r\n \"propertyID\": \"{{savingsEstimatePropRef}}\"\r\n }\r\n ],\r\n \"tags\": [\r\n \t{\r\n \"tagID\": \"{{awsNameTagRef}}\"\r\n },\r\n {\r\n \"tagID\": \"{{appTagRef}}\"\r\n }\r\n ]\r\n }\r\n\r\n }\r\n] "
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
description: |-
The _POST /subscriptions/cloud_ resource allows you to create a subscription to retreive Kubex cloud recommendations.
Notes:
> If you are an administrative user and do not set the "owner" parameter, the subscription is considered global.
> If you are a non-administrative user and do not set the "owner" parameter, the "owner" parameter is automatically set to your username.
In this example, two subscription definitions are created: the first subscription is private, while the second subscription is global. You must have administrative privileges to create global subscriptions, therefore, ensure the `{{DensifyUser}}` and `{{DensifyPwd}}` environment variables are set to an administrative user and corresponding password.
In additon, the private subscription will be created for owner = `{{nonAdminUser}}`. Ensure that `{{nonAdminUser}}` and `{{nonAdminPwd}}` environment variables are set to a Kubex user and corresponding password with no administrative privileges in your Denisfy instance.
Notes:
> This example uses environment variables (i.e. property and attribute tag references), which were set after executing requests from the "1. Reviewing Existing Subscriptions Artifacts" folder.
> In this example, `{{subscriptionRef1}}` and `{{subscriptionRef2}}` environment variables are set to the first two returned subscription reference IDs, for furture use.
See example. Refer to [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm).
response:
- name: Creating Cloud Subscriptions - one private, one global
originalRequest:
method: POST
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n\t{\r\n\t\t\"subscriptionName\": \"Test Subscription 1 - owned by {{nonAdminUser}}\",\r\n\t\t\"owner\": \"{{nonAdminUser}}\",\r\n\t\t\"description\": \"A {{nonAdminUser}} test subscription with only Just Right recommendations.\",\r\n\t\t\"outputType\": \"application/json\",\r\n\t\t\"active\": true,\r\n\t\t\"propertyReferences\": [{\r\n\t\t\t\"propertyID\": \"{{recommendationTypePropRef}}\",\r\n \"operator\": \"=\",\r\n \t\"values\": [\"Just Right\"]\r\n \t}]\r\n },\r\n {\r\n \"subscriptionName\": \"Test Subscription 2 - global\",\r\n \"description\": \"A global subscription test\",\r\n \"active\": true,\r\n \"webhook\": {\r\n \"uri\": \"https://192.168.22.210:443/densify/test/webhook\",\r\n \"authType\": \"bearer\",\r\n \t\"authValue\": \"{{token}}\"\r\n },\r\n\t\"propertyReferences\": [{\r\n \"propertyID\": \"{{currentCostPropRef}}\",\r\n \"operator\": \">=\",\r\n \"values\": [10]\r\n }],\r\n \"suppressionReferences\": [\r\n {\r\n \"values\": [\r\n \"Terminate\"\r\n ],\r\n \"suppressionID\": \"{{recommendationTypeSupprRef}}\",\r\n \"operator\": \"=\"\r\n }\r\n ],\r\n \"returnStructure\": {\r\n \"properties\": [\r\n {\r\n \"propertyID\": \"{{namePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{recommendationTypePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{currentTypePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{recommendedTypePropRef}}\"\r\n },\r\n {\r\n \"useAlias\": true,\r\n \"propertyID\": \"{{savingsEstimatePropRef}}\"\r\n }\r\n ],\r\n \"tags\": [\r\n \t{\r\n \"tagID\": \"{{awsNameTagRef}}\"\r\n },\r\n {\r\n \"tagID\": \"{{appTagRef}}\"\r\n }\r\n ]\r\n }\r\n\r\n }\r\n] "
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "227"
- key: Date
value: Tue, 30 Jun 2020 17:22:55 GMT
cookie: []
body: |-
[
{
"subscriptionRef": "a0f22188-84cc-4ced-b06a-9db15a186a67",
"SubscriptionName": "Test Subscription 1 - owned by saas"
},
{
"subscriptionRef": "3cb09179-7329-4e50-ac4f-bf3eef22e15e",
"SubscriptionName": "Test Subscription 2 - global"
}
]
- name: Creating a Single Cloud Subscription
event:
- listen: test
script:
exec:
- "var firstdata = pm.response.json()[0];\r"
- pm.environment.set("subscriptionRef3", firstdata.subscriptionRef);
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n\t{\r\n\t\"subscriptionName\": \"Test Subscription 3\",\r\n\t\"description\": \"A subscription with 50-100% uptime\",\r\n\t\"active\": true,\r\n\t\"webhook\": {\r\n\t\t\"uri\": \"https://192.168.100.100:443/test/webhook\",\r\n\t\t\"authType\": \"basic\",\r\n\t\t\"authValue\": \"test:test\"\r\n\t},\r\n\t\"propertyReferences\": [\r\n\t\t{\r\n\t\t\"propertyID\": \"{{predictedUptimePropRef}}\",\r\n\t\t\"operator\": \"[]\",\r\n\t\t\"values\": [50,100]\r\n\t\t}\r\n\t],\r\n\t\"suppressionReferences\": [\r\n\t\t{\r\n\t\t\"suppressionID\": \"{{recommendationTypeSupprRef}}\",\r\n\t\t\"operator\": \"=\",\r\n\t\t\"values\": [\"Terminate\"]\r\n\t\t}\r\n\t],\r\n\t\"returnStructure\": {\r\n\t\t\"properties\": [\r\n\t\t\t{\r\n\t\t\t\"propertyID\": \"{{savingsEstimatePropRef}}\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\"propertyID\": \"{{currentTypePropRef}}\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\"useAlias\": true,\r\n\t\t\t\"propertyID\": \"{{serviceTypePropRef}}\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\"useAlias\": true,\r\n\t\t\t\"propertyID\": \"{{namePropRef}}\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"tags\": [\r\n\t\t\t{\r\n\t\t\t\"tagID\": \"{{appTagRef}}\"\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n\t}\r\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
description: "Create a single cloud subscription definition.\r\n\r\nIn this example, the subscription filters for systems where predicted uptime is between 50-100% and suppress systems that have a \"Terminate\"\_recommendation. The subscription will be automatically owned by the `{{DensifyUser}}`. Ensure `{{DensifyUser}}` and `{{DensifyPwd}}` environment variables are set to a Kubex user and corresponding password from your Kubex instance.\r\n\r\nNotes:\r\n> This example uses environment variables (i.e. property and attribute tag references), which were set after executing requests from the \"1. Reviewing Existing Subscriptions Artifacts\" folder.\r\n\r\n> In this example, the `{{subscriptionRef3}}` environment variable is set to the returned subscription reference ID, for furture use.\r\n\r\n\r\nSee example. Refer to [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm)."
response:
- name: Creating a Single Subscription
originalRequest:
method: POST
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n\t{\r\n\t\"subscriptionName\": \"Test Subscription 3\",\r\n\t\"description\": \"A subscription with 50-100% uptime\",\r\n\t\"active\": true,\r\n\t\"webhook\": {\r\n\t\t\"uri\": \"https://192.168.100.100:443/test/webhook\",\r\n\t\t\"authType\": \"basic\",\r\n\t\t\"authValue\": \"test:test\"\r\n\t},\r\n\t\"propertyReferences\": [\r\n\t\t{\r\n\t\t\"propertyID\": \"{{predictedUptimePropRef}}\",\r\n\t\t\"operator\": \"[]\",\r\n\t\t\"values\": [50,100]\r\n\t\t}\r\n\t],\r\n\t\"suppressionReferences\": [\r\n\t\t{\r\n\t\t\"suppressionID\": \"{{recommendationTypeSupprRef}}\",\r\n\t\t\"operator\": \"=\",\r\n\t\t\"values\": [\"Terminate\"]\r\n\t\t}\r\n\t],\r\n\t\"returnStructure\": {\r\n\t\t\"properties\": [\r\n\t\t\t{\r\n\t\t\t\"propertyID\": \"{{savingsEstimatePropRef}}\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\"propertyID\": \"{{currentTypePropRef}}\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\"useAlias\": true,\r\n\t\t\t\"propertyID\": \"{{serviceTypePropRef}}\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\"useAlias\": true,\r\n\t\t\t\"propertyID\": \"{{namePropRef}}\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"tags\": [\r\n\t\t\t{\r\n\t\t\t\"tagID\": \"{{appTagRef}}\"\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n\t}\r\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "101"
- key: Date
value: Tue, 30 Jun 2020 17:58:35 GMT
cookie: []
body: |-
[
{
"subscriptionRef": "8203588f-6669-4833-be39-0c9577774526",
"SubscriptionName": "Test Subscription 3"
}
]
- name: Getting Cloud Subscription Details by ID
protocolProfileBehavior:
disableBodyPruning: true
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Content-Type
type: text
value: application/json
- key: Accept
type: text
value: application/json
body:
mode: raw
raw: ""
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud?subscriptionRef={{subscriptionRef2}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
query:
- key: subscriptionRef
value: "{{subscriptionRef2}}"
description: "Get details of a cloud subscription definition by providing the subscription's reference ID in the query request.\r\n\r\nNote:\r\n> The `subscriptionRef2` environment variable is used to identify the subscription. This variable was set in a previous request (\"Creating Cloud Subscriptions\"). If you want to search for a specific subscription, modify the `subscriptionRef` option in the URL.\r\n\r\n> If you are an administrative user, you have access to all global and all private subscriptions.\r\n\r\n> If you are a non-administrative user, you have access to global and your own private subscriptions.\r\n\r\n\r\nSee example. Refer to [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm)."
response:
- name: Getting Subscription Details by ID
originalRequest:
method: GET
header:
- key: Content-Type
type: text
value: application/json
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions?subscriptionRef={{subscriptionRef1}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
query:
- key: subscriptionRef
value: "{{subscriptionRef1}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-length
value: "920"
- key: date
value: Wed, 17 Jun 2020 21:44:43 GMT
- key: x-envoy-upstream-service-time
value: "39"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
cookie: []
body: |-
[
{
"subscriptionRef": "489331bd-5db9-408d-b7a0-2f3f8b1f66e9",
"subscriptionName": "Sample Subscription",
"description": "A subscription for testing",
"owner": "saas",
"outputType": "application/JSON",
"active": true,
"webhook": {
"uri": "https://192.168.100.100:443/test/webhook",
"authType": "basic",
"authValue": "test:test"
},
"propertyReferences": [
{
"values": [
50,
100
],
"propertyID": "f2a38773-db60-478a-9982-1a2d1ba7d380",
"operator": "[]"
}
],
"suppressionReferences": [
{
"values": [
"Terminate"
],
"suppressionID": "a6827ae4-fa2b-405e-a564-d70f2dad45c2",
"operator": "="
}
],
"returnStructure": {
"properties": [
{
"useAlias": true,
"propertyID": "e2ae92c5-91c7-4ff5-a29f-99aa92d65178"
},
{
"propertyID": "183b1f50-a20b-4d29-a488-8ba53bbf7c40"
},
{
"propertyID": "cebcd841-89d8-4007-a4c6-1f0b06723db4"
},
{
"useAlias": true,
"propertyID": "b4e7260f-1aae-4150-b75d-1b1234075500"
}
],
"tags": [
{
"tagID": "8a556754-f7d2-4098-a3f5-c6777e2be697"
}
]
},
"webhookStatus": "",
"lastTriggered": ""
}
]
- name: Modifying a Cloud Subscription
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: PUT
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "{\r\n\t\"subscriptionName\": \"Test Subscription 1 - Modified\",\r\n\t\"owner\": \"{{nonAdminUser}}\",\r\n\t\"description\": \"A {{nonAdminUser}} test subscription with only Just Right recommendations; with modified output\",\r\n\t\"outputType\": \"application/json\",\r\n\t\"active\": true,\r\n\t\"propertyReferences\": [{\r\n\t\t\"propertyID\": \"{{recommendationTypePropRef}}\",\r\n \"operator\": \"=\",\r\n \t\"values\": [\"Just Right\"]\r\n }],\r\n\t\"returnStructure\": {\r\n \"properties\": [\r\n {\r\n \"propertyID\": \"{{namePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{recommendationTypePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{currentTypePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{recommendedTypePropRef}}\"\r\n },\r\n {\r\n \"useAlias\": true,\r\n \"propertyID\": \"{{savingsEstimatePropRef}}\"\r\n }\r\n ],\r\n \"tags\": [\r\n \t{\r\n \"tagID\": \"{{awsNameTagRef}}\"\r\n },\r\n {\r\n \"tagID\": \"{{appTagRef}}\"\r\n }\r\n ]\r\n }\r\n }"
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/{{subscriptionRef1}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- "{{subscriptionRef1}}"
description: "Modify a single cloud subscription with the reference ID in the URL request.\r\n\r\nYou have to specify all parameters in a PUT request because the request action is a *delete-and-replace* of all parameters. See the Body section of this request.\r\n\r\nNotes:\r\n\r\n> If you are a non-administrative user, you can only modify subscriptions owned by you.\r\n\r\n> If you have administrative privileges, you can modify any subscription.\r\n\r\nThe `{{subscriptionRef1}}` environment variable is used to identify the subscription to modify. This variable was set in a previous request (i.e. \"Creating Cloud Subscriptions\").\r\n\r\nThis example updates the subscription name, description and returned output content. The owner of the subscription was set to `{{nonAdminUser}}` from a previous request. Only an administrative user or the subscription owner can modify the subscription. Therefore, ensure that the authorized `{{DensifyUser}}` is set to the same user as `{{nonAdminUser}}` or to a Kubex user with administrative privileges.\r\n\r\n\r\nRefer to [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm)."
response:
- name: Modifying a Subscription
originalRequest:
method: PUT
header:
- key: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "{\r\n\t\"subscriptionName\": \"Test Subscription 1 - Modified\",\r\n\t\"owner\": \"{{nonAdminUser}}\",\r\n\t\"description\": \"A {{nonAdminUser}} test subscription with only Just Right recommendations; with modified output\",\r\n\t\"outputType\": \"application/json\",\r\n\t\"active\": true,\r\n\t\"propertyReferences\": [{\r\n\t\t\"propertyID\": \"{{recommendationTypePropRef}}\",\r\n \"operator\": \"=\",\r\n \t\"values\": [\"Just Right\"]\r\n }],\r\n\t\"returnStructure\": {\r\n \"properties\": [\r\n {\r\n \"propertyID\": \"{{namePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{recommendationTypePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{currentTypePropRef}}\"\r\n },\r\n {\r\n \"propertyID\": \"{{recommendedTypePropRef}}\"\r\n },\r\n {\r\n \"useAlias\": true,\r\n \"propertyID\": \"{{savingsEstimatePropRef}}\"\r\n }\r\n ],\r\n \"tags\": [\r\n \t{\r\n \"tagID\": \"{{awsNameTagRef}}\"\r\n },\r\n {\r\n \"tagID\": \"{{appTagRef}}\"\r\n }\r\n ]\r\n }\r\n }"
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/{{subscriptionRef1}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- "{{subscriptionRef1}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "110"
- key: Date
value: Tue, 30 Jun 2020 18:22:26 GMT
cookie: []
body: |-
{
"subscriptionRef": "a0f22188-84cc-4ced-b06a-9db15a186a67",
"SubscriptionName": "Test Subscription 1 - Modified"
}
- name: Retrieving Cloud Subscription Results On-Demand by ID
request:
auth:
type: basic
basic:
- key: password
value: admin
type: string
- key: username
value: admin
type: string
method: GET
header:
- key: Content-Type
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/{{subscriptionId}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- "{{subscriptionId}}"
description: "Get on-demand results of a subscription notification by providing the subscription's reference ID in the URL request.\r\n\r\nNote:\r\n> The `{{subscriptionRef2}}` environment variable is used to identify the subscription. This variable was set in a previous request (i.e. \"Creating Cloud Subscriptions\"). If you want to retrieve results for a specific subscription, update the `{{subscriptionRef2}}` variable in the URL with your desired subscription reference ID.\r\n\r\n> If you are an administrative user, you have access to all global and all private subscription results.\r\n\r\n> If you are a non-administrative user, you have access to all global and your own private subscriptions. If you do not have access to the subscription reference you provided, a \"404 Not Found\" response is returned. \r\n\r\nSee example. Refer to [Subscriptions: Results](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Results.htm)."
response:
- name: Retrieving Subscription Results On-Demand by ID
originalRequest:
method: GET
header:
- key: Content-Type
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}:{{port}}/api/v2/subscriptions/{{subscriptionRef2}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- api
- v2
- subscriptions
- "{{subscriptionRef2}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Tue, 30 Jun 2020 18:27:51 GMT
cookie: []
body: |-
{
"subscription": {
"name": "Test Subscription 2 - global",
"description": "A global subscription test",
"created": "Tue Jun 30 17:22:54 GMT 2020",
"createdBy": "admin",
"owner": ""
},
"count": 1247,
"results": [
{
"currentType": "m4.large",
"name": "ex-tst-fifo-906",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-fifo",
"Product Code : PR000502",
"Environment : Production",
"Name : ex-tst-fifo-906",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_d2",
"name": "st01-prepro-edge-307",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.85047623359686"
},
{
"currentType": "standard_a2_v2",
"name": "st02-db-appx-592",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_sti-46",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "t2.medium",
"name": "ec-tst-fifo-219",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.216501995941217",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-fifo",
"Name : ec-tst-fifo-219",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR003592"
]
},
{
"currentType": "m4.large",
"name": "PR002902-pro-asop-asg-0bc0378ebca45c0",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "c5.large",
"savingsEstimate": "70.84318781097727",
"divider": "------------------------",
"Resource Tags": [
"Name : PR002902-pro-asop-asg-0bc0378ebca45c0",
"ProductCode : PR002902",
"InventoryCode : pro-asop",
"Environment : Production"
]
},
{
"currentType": "standard_d1",
"name": "st01-prepro-stoc-501",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b1ms",
"savingsEstimate": "34.873348887348186"
},
{
"currentType": "t2.medium",
"name": "ec-tst-oop-565",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-oop",
"Product Code : PR001744",
"Environment : Test",
"Name : ec-tst-oop-565",
"Owner : Ed Watkins"
]
},
{
"currentType": "m4.large",
"name": "ex-dev-emsg-1402",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.medium",
"savingsEstimate": "32.859204133697496",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-emsg",
"Environment : Test",
"Name : ex-dev-emsg-1402",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-kotl-545",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-kotl-545",
"Product Code : PR003119",
"Environment : Production",
"Inventory Code : prepro-kotl",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "PR003563-pro-imco-asg-0bc00d6ebc1eb50b9cf0",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : pro-imco",
"Environment : Production",
"ProductCode : PR003563",
"Name : PR003563-pro-imco-asg-0bc00d6ebc1eb50b9cf0"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.hosa_gas-300",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "ec-dev-edge-585",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "12.131678793044994",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000502",
"Inventory Code : dev-edge",
"Name : ec-dev-edge-585",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.xlarge",
"name": "ec-tst-oop-562",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "41.13860737762472",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-oop",
"Environment : Production",
"Name : ec-tst-oop-562",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.hosa_gas-460",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "c4.xlarge",
"name": "ec-io-appx-1312",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.00964223092654",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-appx",
"Environment : Test",
"Product Code : PR003792",
"Name : ec-io-appx-1312",
"Owner : Ed Watkins"
]
},
{
"currentType": "t2.large",
"name": "ec-prepro-expl-114",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Environment : Production",
"Name : ec-prepro-expl-114",
"Inventory Code : prepro-expl",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-emsg-1074",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Name : ex-pro-emsg-1074",
"Inventory Code : pro-emsg",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-imco-876",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.large",
"savingsEstimate": "66.31522565371706",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-imco",
"Environment : Production",
"Name : ex-pro-imco-876",
"Owner : Roger Witt",
"Product Code : PR001690"
]
},
{
"currentType": "standard_d3_v2_promo",
"name": "st01-pro-appx-331",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "78.66443280853272",
"divider": "------------------------",
"Resource Tags": [
"LOB : Accounting",
"Densify-predicted-uptime : 80.77",
"Owner : Bill"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.coa_clt-156",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.camp_sti-34",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.camp_gas-488",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "71.91449533493025",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.doop_fet-244",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.doop_fet-330",
"recommendationType": "Upsize",
"recommendedType": "n1-standard-8",
"savingsEstimate": "-95.29383288711543"
},
{
"currentType": "db.r3.large",
"name": "jaws-prepro-edb-124",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.ttr_fap-294",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ec-tst-emsg-507",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "17.067706688873294",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000560",
"Inventory Code : tst-emsg",
"Environment : Test",
"Name : ec-tst-emsg-507",
"Owner : Ed Watkins"
]
},
{
"currentType": "c4.2xlarge",
"name": "ec-prepro-emsg-663",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "182.90377992022724",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-emsg",
"Product Code : PR000252",
"Environment : Production",
"Name : ec-prepro-emsg-663",
"Owner : Irina Yashina"
]
},
{
"currentType": "standard_d3",
"name": "st01-io-asop-498",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "87.95550505203254"
},
{
"currentType": "db.t2.medium",
"name": "fifo-tst-aurora-138",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.coa_fet-60",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "db.t2.medium",
"name": "mobile-svc-aurora-db",
"recommendationType": "Downsize",
"recommendedType": "db.t3.small",
"savingsEstimate": "20.881430517524713"
},
{
"currentType": "n1-standard-8",
"name": "gl08.mln_gas-280",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl08.hosa_far-586",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.88111823696876",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "c4.2xlarge",
"name": "ex-tst-asop-412",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "161.48842400497466",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-tst-asop-412",
"Product Code : PR000414",
"Environment : Production",
"Inventory Code : tst-asop",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.large",
"name": "ec-dev-expl-277",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-dev-expl-277",
"Product Code : PR001514",
"Inventory Code : dev-expl",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_far-314",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "m4.large",
"name": "ec-prepro-appx-1176",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "35.28758496498107",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Product Code : PR002561",
"Name : ec-prepro-appx-1176",
"Inventory Code : prepro-appx",
"Owner : Ed Watkins"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-emsg-1064",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : pro-emsg",
"Name : ec-pro-emsg-1064",
"Owner : Ed Watkins",
"Product Code : PR000642"
]
},
{
"currentType": "m4.large",
"name": "ec-prepro-appx-822",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : prepro-appx",
"Owner : Ed Watkins",
"Name : ec-prepro-appx-822",
"Product Code : PR001720"
]
},
{
"currentType": "c4.large",
"name": "PR000560-tst-kotl-asg",
"recommendationType": "Downscale",
"recommendedType": "r5.large",
"savingsEstimate": "17.527098627607074",
"divider": "------------------------",
"Resource Tags": [
"Name : PR000560-tst-kotl-asg",
"Environment : Test",
"InventoryCode : tst-kotl",
"ProductCode : PR000560"
]
},
{
"currentType": "standard_d4",
"name": "st01-prepro-kotl-396",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_a2m_v2",
"savingsEstimate": "581.3486328637694"
},
{
"currentType": "r4.2xlarge",
"name": "ec-pro-appx-3045",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.42351453979499",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Environment : Production",
"Name : ec-pro-appx-3045",
"Inventory Code : pro-appx",
"Owner : Irina Yashina"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-tst-emsg-1130",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "162.62166941250615",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-emsg",
"Product Code : PR003119",
"Name : ec-tst-emsg-1130",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_d2",
"name": "st01-pro-stoc-252",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "51.28722741314705"
},
{
"currentType": "n1-standard-8",
"name": "gl08.camp_sti-152",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.doop_xtr-216",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "PR003439-pro-bion-asg-0bc0ecefbc637e0",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : PR003439-pro-bion-asg-0bc0ecefbc637e0",
"Environment : Production",
"ProductCode : PR003439",
"InventoryCode : pro-bion"
]
},
{
"currentType": "m3.medium",
"name": "ex-prepro-dvc-904",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : prepro-dvc",
"Name : ex-prepro-dvc-904",
"Owner : Ed Watkins",
"Product Code : PR000642"
]
},
{
"currentType": "t2.large",
"name": "ec-tst-imco-970",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "11.011581133666914",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002735",
"Environment : Production",
"Name : ec-tst-imco-970",
"Owner : Roger Witt",
"Inventory Code : tst-imco"
]
},
{
"currentType": "standard_d2",
"name": "st01-tst-emsg-248",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.72127624237066"
},
{
"currentType": "t2.medium",
"name": "ex-dev-fifo-1055",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-fifo",
"Name : ex-dev-fifo-1055",
"Environment : Test",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "m3.medium",
"name": "PR001564-tst-kotl-asg-0bc012d2bca42c0",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "t2.medium",
"savingsEstimate": "12.385440524444567",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"ProductCode : PR001564",
"InventoryCode : tst-kotl",
"Name : PR001564-tst-kotl-asg-0bc012d2bca42c0"
]
},
{
"currentType": "standard_ds3",
"name": "st02-edb-kotl-636",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "151.4510265217285"
},
{
"currentType": "standard_d2",
"name": "st01-tst-edge-306",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "69.51275873931881"
},
{
"currentType": "t2.large",
"name": "ec-pro-duct-255",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.707037035522516",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : pro-duct",
"Environment : Pre-prod",
"Name : ec-pro-duct-255"
]
},
{
"currentType": "t2.small",
"name": "ec-pro-kotl-1084",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-kotl",
"Environment : Test",
"Owner : Ed Watkins",
"Name : ec-pro-kotl-1084",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.camp_sti-190",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-pro-fifo-593",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.42351453979499",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Product Code : PR002561",
"Inventory Code : pro-fifo",
"Name : ec-pro-fifo-593",
"Owner : Ed Watkins"
]
},
{
"currentType": "r4.large",
"name": "ec-tst-appx-130",
"recommendationType": "Just Right",
"recommendedType": "r4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : tst-appx",
"Environment : Pre-prod",
"Name : ec-tst-appx-130"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-jaws-398",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "15.657233868850744",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Product Code : PR002561",
"Name : ex-pro-jaws-398",
"Owner : Ed Watkins",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "standard_d1",
"name": "st01-prepro-imco-151",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "21.86063812118533"
},
{
"currentType": "t2.small",
"name": "ex-dev-stoc-1908",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000560",
"Environment : Test",
"Inventory Code : dev-stoc",
"Name : ex-dev-stoc-1908",
"Owner : Ed Watkins"
]
},
{
"currentType": "db.t2.medium",
"name": "fifo-pro-aurora-733",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl04.doop_fet-580",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.500111163666",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"application : Load Testing",
"business_unit : Support"
]
},
{
"currentType": "i3.2xlarge",
"name": "ec-prepro-stoc-1078",
"recommendationType": "Upsize",
"recommendedType": "i3.4xlarge",
"savingsEstimate": "-352.8913410494383",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-stoc-1078",
"Inventory Code : prepro-stoc",
"Product Code : PR003439",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-emsg-3038",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-emsg-3038",
"Inventory Code : pro-emsg",
"Environment : Production",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-pro-jaws-848",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "c5.2xlarge",
"savingsEstimate": "24.414122436218314",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Name : ec-pro-jaws-848",
"Inventory Code : pro-jaws",
"Product Code : PR002031"
]
},
{
"currentType": "c4.large",
"name": "ec-prepro-jaws-645",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "32.34505543128966",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Name : ec-prepro-jaws-645",
"Environment : Pre-prod",
"Inventory Code : prepro-jaws",
"Product Code : PR000648"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-oop-1286",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.284822248626734",
"divider": "------------------------",
"Resource Tags": [
"Environment : Production",
"Inventory Code : pro-oop",
"Name : ex-pro-oop-1286",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "m4.large",
"name": "PR003096-prepro-fifo-asg",
"recommendationType": "Downscale",
"recommendedType": "m5.large",
"savingsEstimate": "73.25027948079787",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : prepro-fifo",
"Environment : Pre-prod",
"ProductCode : PR003096",
"Name : PR003096-prepro-fifo-asg"
]
},
{
"currentType": "m3.large",
"name": "PR001368-dev-duct-asg",
"recommendationType": "Just Right",
"recommendedType": "m3.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"ProductCode : PR001368",
"Name : PR001368-dev-duct-asg",
"InventoryCode : dev-duct"
]
},
{
"currentType": "r4.large",
"name": "ex-tst-kotl-3044",
"recommendationType": "Just Right",
"recommendedType": "r4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000560",
"Environment : Test",
"Inventory Code : tst-kotl",
"Name : ex-tst-kotl-3044",
"Owner : Ed Watkins"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-pro-dvc-543",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Inventory Code : pro-dvc",
"Product Code : PR004079",
"Name : ec-pro-dvc-543"
]
},
{
"currentType": "c4.2xlarge",
"name": "ec-prepro-kotl-3048",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "m5.large",
"savingsEstimate": "171.47379053088372",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Environment : Production",
"Inventory Code : prepro-kotl",
"Name : ec-prepro-kotl-3048",
"Owner : Irina Yashina"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-pro-fifo-928",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "161.49031348284916",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Inventory Code : pro-fifo",
"Environment : Production",
"Name : ec-pro-fifo-928",
"Owner : Irina Yashina"
]
},
{
"currentType": "i2.xlarge",
"name": "ex-prepro-kotl-860",
"recommendationType": "Modernize",
"recommendedType": "i3.2xlarge",
"savingsEstimate": "130.0248344034422",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-kotl-860",
"Environment : Test",
"Product Code : PR001564",
"Inventory Code : prepro-kotl",
"Owner : Ed Watkins"
]
},
{
"currentType": "m4.xlarge",
"name": "mobile-grid-driver",
"recommendationType": "Downsize",
"recommendedType": "m5.large",
"savingsEstimate": "59.05057364904788",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-kotl",
"Name : ec-pro-kotl-1060",
"Environment : Test",
"Owner : Ed Watkins",
"Product Code : PR003864"
]
},
{
"currentType": "standard_d1",
"name": "st01-prepro-rais-283",
"recommendationType": "Just Right",
"recommendedType": "standard_d1",
"savingsEstimate": "0.0"
},
{
"currentType": "db.m3.large",
"name": "asop-pro-mysql-358",
"recommendationType": "Downsize",
"recommendedType": "db.m3.medium",
"savingsEstimate": "53.61448802551254"
},
{
"currentType": "n1-standard-8",
"name": "gl04.hosa_gas-588",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.small",
"name": "ex-prepro-appx-894",
"recommendationType": "Downsize",
"recommendedType": "t3.micro",
"savingsEstimate": "6.9285203499603085",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-prepro-appx-894",
"Inventory Code : prepro-appx",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "standard_d3_v2_promo",
"name": "st01-pro-dvc-447",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "86.73947288000491"
},
{
"currentType": "m4.2xlarge",
"name": "ec-io-emsg-1108",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Name : ec-io-emsg-1108",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Inventory Code : io-emsg"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.camp_gas-296",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-jaws-1931",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000502",
"Environment : Production",
"Inventory Code : prepro-jaws",
"Name : ec-prepro-jaws-1931",
"Owner : Roger Witt"
]
},
{
"currentType": "m4.large",
"name": "ec-prepro-asop-1276",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-asop",
"Name : ec-prepro-asop-1276",
"Environment : Production",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-prepro-jaws-241",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.71182131774898",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002893",
"Name : ec-prepro-jaws-241",
"Environment : Pre-prod",
"Inventory Code : prepro-jaws",
"Owner : Kozak Kor"
]
},
{
"currentType": "db.t2.medium",
"name": "jaws-pro-aurora-141",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d3",
"name": "st01-pro-dvc-324",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "87.82074990429683"
},
{
"currentType": "standard_d1_v2",
"name": "st01-pro-emsg-126",
"recommendationType": "Just Right",
"recommendedType": "standard_d1_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds3_v2_promo",
"name": "st01-pro-duct-141",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "75.9665755132446"
},
{
"currentType": "c4.2xlarge",
"name": "ex-prepro-dvc-866",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "176.25997158874526",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Inventory Code : prepro-dvc",
"Name : ex-prepro-dvc-866"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-tst-asop-349",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-tst-asop-349",
"Owner : Francis Robinson",
"Product Code : PR001356",
"Inventory Code : tst-asop"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-imco-1609",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-tst-imco-1609",
"Owner : Ed Watkins",
"Inventory Code : tst-imco",
"Product Code : PR001720"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-tst-asop-1002",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "51.16365617041011",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Environment : Production",
"Inventory Code : tst-asop",
"Name : ec-tst-asop-1002",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.doop_fet-542",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds3_v2",
"name": "st02-pro-bion-561",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "db.r3.large",
"name": "jaws-pro-edb-172",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.small",
"name": "ex-dev-kotl-858",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-kotl",
"Environment : Pre-prod",
"Name : ex-dev-kotl-858",
"Owner : Kozak Kor",
"Product Code : PR003905"
]
},
{
"currentType": "r4.large",
"name": "ec-pro-oop-128",
"recommendationType": "Just Right",
"recommendedType": "r4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR003119",
"Name : ec-pro-oop-128",
"Environment : Production",
"Inventory Code : pro-oop",
"Owner : Roger Witt"
]
},
{
"currentType": "m3.large",
"name": "PR002282-prepro-kotl-asg-0bc0ed60bcd5e20",
"recommendationType": "Downscale",
"recommendedType": "m4.large",
"savingsEstimate": "71.71533767840447",
"divider": "------------------------",
"Resource Tags": [
"Name : PR002282-prepro-kotl-asg-0bc0ed60bcd5e20",
"ProductCode : PR002282",
"Environment : Pre-prod",
"InventoryCode : prepro-kotl"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-kotl-357",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.284822248626734",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : tst-kotl",
"Owner : Francis Robinson",
"Product Code : PR001935",
"Name : ex-tst-kotl-357"
]
},
{
"currentType": "standard_d1",
"name": "st01-pro-oop-115",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "25.839998245239258"
},
{
"currentType": "d2.xlarge",
"name": "ec-prepro-asop-840",
"recommendationType": "Just Right",
"recommendedType": "d2.xlarge",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Product Code : PR002893",
"Inventory Code : prepro-asop",
"Owner : James Pillsbury",
"Name : ec-prepro-asop-840"
]
},
{
"currentType": "n1-highmem-8",
"name": "gl04.hosa_vmx-178",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_a2_v2",
"name": "st02-prepro-rais-640",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "24.263639256774912"
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_gas-96",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.camp_sti-52",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "34.54052259852615",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Infrastructure"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-dev-imco-359",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.59293080499279",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ec-dev-imco-359",
"Owner : Ed Watkins",
"Inventory Code : dev-imco",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.camp_far-396",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-kotl-1623",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-kotl",
"Environment : Pre-prod",
"Name : ec-pro-kotl-1623",
"Owner : Kozak Kor",
"Product Code : PR002282"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.ttr_xtr-536",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-dvc-1132",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Name : ex-tst-dvc-1132",
"Product Code : PR003990",
"Inventory Code : tst-dvc"
]
},
{
"currentType": "t2.medium",
"name": "mobile-app-loader",
"recommendationType": "Upsize",
"recommendedType": "t3a.large",
"savingsEstimate": "-19.278202992843582",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : tst-jaws",
"Owner : Ed Watkins",
"Name : ex-tst-jaws-862",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.doop_clt-578",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "34.54052259852615",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "m4.4xlarge",
"name": "ec-pro-stoc-1052",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "197.59231554516592",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-stoc",
"Environment : Production",
"Product Code : PR003404",
"Name : ec-pro-stoc-1052",
"Owner : Roger Witt"
]
},
{
"currentType": "d2.xlarge",
"name": "ec-pro-appx-812",
"recommendationType": "Just Right",
"recommendedType": "d2.xlarge",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR001674",
"Name : ec-pro-appx-812",
"Inventory Code : pro-appx"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.coa_fet-138",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.88111823696876",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-io-dvc-448",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.42351453979499",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : io-dvc",
"Owner : Ed Watkins",
"Name : ec-io-dvc-448",
"Product Code : PR000282"
]
},
{
"currentType": "t2.large",
"name": "ex-dev-appx-560",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Inventory Code : dev-appx",
"Name : ex-dev-appx-560",
"Product Code : PR003080"
]
},
{
"currentType": "db.r3.large",
"name": "duct-pro-io-926",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ec-pro-appx-3040",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Environment : Production",
"Name : ec-pro-appx-3040",
"Inventory Code : pro-appx",
"Owner : Irina Yashina"
]
},
{
"currentType": "standard_d2",
"name": "st01-dev-duct-112",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "128.9443812116701"
},
{
"currentType": "standard_f2",
"name": "st01-tst-fifo-243",
"recommendationType": "Just Right",
"recommendedType": "standard_f2",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.medium",
"name": "ec-prepro-oop-1010",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "24.883363564620957",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : prepro-oop",
"Name : ec-prepro-oop-1010",
"Owner : Francis Robinson",
"Product Code : PR001795"
]
},
{
"currentType": "standard_d3",
"name": "st01-tst-edge-386",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "87.69635506195074"
},
{
"currentType": "t2.large",
"name": "ec-io-appx-1068",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-appx",
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Name : ec-io-appx-1068",
"Product Code : PR000648"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.hosa_vmx-410",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "m3.medium",
"name": "ex-io-dvc-932",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Environment : Production",
"Name : ex-io-dvc-932",
"Inventory Code : io-dvc",
"Owner : Irina Yashina"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-dev-duct-503",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "m4.4xlarge",
"name": "ec-pro-expl-524",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "324.6148024248658",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-expl",
"Name : ec-pro-expl-524",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR003577"
]
},
{
"currentType": "t2.small",
"name": "PR003459-pro-bion-asg-0bc0f917bc7e420",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"ProductCode : PR003459",
"Environment : Production",
"Name : PR003459-pro-bion-asg-0bc0f917bc7e420",
"InventoryCode : pro-bion"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-asop-215",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Inventory Code : pro-asop",
"Name : ex-pro-asop-215",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "c4.xlarge",
"name": "ea-io-kotl-1012",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "m5.large",
"savingsEstimate": "58.36248196017463",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Inventory Code : dev-asop",
"Name : ex-dev-asop-299",
"Product Code : PR001618"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-kotl-655",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-kotl-655",
"Owner : Kaybok Issarra",
"Inventory Code : pro-kotl",
"Environment : Pre-prod",
"Product Code : PR000648"
]
},
{
"currentType": "c4.large",
"name": "ex-pro-asop-1615",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.small",
"savingsEstimate": "52.40226413534547",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-asop-1615",
"Environment : Test",
"Inventory Code : pro-asop",
"Product Code : PR002988",
"Owner : Ed Watkins"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-emsg-986",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.966405510131736",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-emsg-986",
"Inventory Code : pro-emsg",
"Product Code : PR003557",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "m3.medium",
"name": "ex-pro-bion-394",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-bion-394",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Inventory Code : pro-bion",
"Product Code : PR001654"
]
},
{
"currentType": "m3.medium",
"name": "ec-pro-expl-495",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "24.98293477713014",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-expl-495",
"Inventory Code : pro-expl",
"Product Code : PR003755",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "m4.xlarge",
"name": "ea-pro-edge-529",
"recommendationType": "Downsize",
"recommendedType": "m5a.large",
"savingsEstimate": "64.59536723321537",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Environment : Pre-prod",
"Name : ec-tst-asop-978",
"Inventory Code : tst-asop"
]
},
{
"currentType": "c4.2xlarge",
"name": "ex-pro-kotl-966",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "171.4540214213566",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-kotl",
"Environment : Production",
"Name : ex-pro-kotl-966",
"Owner : Roger Witt",
"Product Code : PR001690"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.coa_xtr-394",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-dvc-1603",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "42.01675272955326",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Inventory Code : pro-dvc",
"Environment : Pre-prod",
"Name : ex-pro-dvc-1603",
"Product Code : PR000566"
]
},
{
"currentType": "c4.xlarge",
"name": "ec-tst-edge-1097",
"recommendationType": "Downsize",
"recommendedType": "c5n.large",
"savingsEstimate": "53.20379092205781",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Inventory Code : tst-edge",
"Environment : Pre-prod",
"Name : ec-tst-edge-1097"
]
},
{
"currentType": "t2.large",
"name": "ec-tst-asop-1284",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.986948994873092",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Name : ec-tst-asop-1284",
"Product Code : PR004079",
"Inventory Code : tst-asop"
]
},
{
"currentType": "m3.medium",
"name": "ex-io-emsg-3030",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Name : ex-io-emsg-3030",
"Environment : Pre-prod",
"Inventory Code : io-emsg"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-emsg-1049",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "14.40625128369138",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Inventory Code : pro-emsg",
"Product Code : PR002699",
"Name : ec-pro-emsg-1049",
"Owner : Kozak Kor"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.mln_sti-234",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.camp_vmx-106",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "db.t2.medium",
"name": "fifo-prepro-mysql-829",
"recommendationType": "Downsize",
"recommendedType": "db.t2.small",
"savingsEstimate": "38.45610813311767"
},
{
"currentType": "i3.2xlarge",
"name": "ec-dev-edge-864",
"recommendationType": "Upsize",
"recommendedType": "i3.4xlarge",
"savingsEstimate": "-353.5746279836423",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : dev-edge",
"Environment : Pre-prod",
"Name : ec-dev-edge-864"
]
},
{
"currentType": "standard_ds3_v2",
"name": "st02-prepro-imco-592",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_a2_v2",
"name": "st02-pro-bion-650",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "24.263639256774912"
},
{
"currentType": "m4.2xlarge",
"name": "ex-tst-dvc-503",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "162.3074012124329",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Product Code : PR003634",
"Owner : Kozak Kor",
"Inventory Code : tst-dvc",
"Name : ex-tst-dvc-503"
]
},
{
"currentType": "c4.large",
"name": "PR000502-pro-imco-asg",
"recommendationType": "Downscale",
"recommendedType": "c4.large",
"savingsEstimate": "25.550001740455627",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : pro-imco",
"Name : PR000502-pro-imco-asg",
"Environment : Production",
"ProductCode : PR000502"
]
},
{
"currentType": "t2.small",
"name": "ex-tst-jaws-257",
"recommendationType": "Downsize",
"recommendedType": "t2.micro",
"savingsEstimate": "6.457984731880206",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : tst-jaws",
"Owner : Francis Robinson",
"Product Code : PR000690",
"Name : ex-tst-jaws-257"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-db-expl-532",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "standard_a1_v2",
"name": "st01-prepro-duct-323",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "1.019998550415039"
},
{
"currentType": "standard_ds3_v2",
"name": "st02-prepro-kotl-582",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.xlarge",
"name": "PR000688-io-dvc-asg",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "z1d.large",
"savingsEstimate": "118.16023611682249",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"InventoryCode : io-dvc",
"Name : PR000688-io-dvc-asg",
"ProductCode : PR000688"
]
},
{
"currentType": "standard_d2",
"name": "st01-pro-emsg-107",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.85047623359686"
},
{
"currentType": "n1-standard-2",
"name": "gl02.coa_xtr-40",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-2",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.coa_fet-112",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "71.91449533493025",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support",
"application : Data Warehouse"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-fifo-2363",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-fifo",
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Name : ex-tst-fifo-2363"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-edb-asop-534",
"recommendationType": "Just Right",
"recommendedType": "standard_a2_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.medium",
"name": "ex-io-stoc-850",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "24.089999198913574",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Name : ex-io-stoc-850",
"Product Code : PR002893",
"Owner : James Pillsbury",
"Inventory Code : io-stoc"
]
},
{
"currentType": "n1-standard-2",
"name": "gl02.hosa_far-304",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-2",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-io-asop-574",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : io-asop",
"Name : ex-io-asop-574",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-tst-emsg-231",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "48.95351080950932",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-tst-emsg-231",
"Product Code : PR003377",
"Inventory Code : tst-emsg",
"Environment : Pre-prod",
"Owner : Kozak Kor"
]
},
{
"currentType": "standard_d1",
"name": "st01-prepro-asop-265",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "25.839998245239258"
},
{
"currentType": "c4.2xlarge",
"name": "ec-pro-kotl-1929",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "169.66479005966218",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-kotl",
"Name : ec-pro-kotl-1929",
"Product Code : PR003755",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_d5_v2_promo",
"name": "st02-db-imco-682",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_h8m_promo",
"savingsEstimate": "259.649796716827"
},
{
"currentType": "n1-standard-4",
"name": "gl02.camp_vmx-266",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support",
"application : Data Warehouse"
]
},
{
"currentType": "standard_ds3_v2",
"name": "st02-edb-emsg-654",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl04.doop_fet-76",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "71.91449533493025"
},
{
"currentType": "db.r3.large",
"name": "duct-pro-rdb-254",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "db.r3.large",
"name": "asop-prepro-edb-305",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.xlarge",
"name": "ec-pro-jaws-522",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "z1d.large",
"savingsEstimate": "8.658385158935562",
"divider": "------------------------",
"Resource Tags": [
"Environment : Production",
"Name : ec-pro-jaws-522",
"Owner : Roger Witt",
"Inventory Code : pro-jaws",
"Product Code : PR001690"
]
},
{
"currentType": "db.r3.large",
"name": "asop-dev-io-147",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.large",
"name": "ec-io-jaws-1112",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.986948994873092",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-jaws",
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Name : ec-io-jaws-1112",
"Environment : Pre-prod"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.hosa_far-12",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "34.54052259852615",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-duct-1022",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "18.39496793106082",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001359",
"Inventory Code : pro-duct",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Name : ex-pro-duct-1022"
]
},
{
"currentType": "standard_d2",
"name": "st01-tst-kotl-302",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.72127624237066"
},
{
"currentType": "db.r3.large",
"name": "asop-pro-rdb-527",
"recommendationType": "Modernize",
"recommendedType": "db.r5.large",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl04.doop_clt-322",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "ec-tst-kotl-2359",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000560",
"Environment : Test",
"Inventory Code : tst-kotl",
"Owner : Ed Watkins",
"Name : ec-tst-kotl-2359"
]
},
{
"currentType": "standard_d3",
"name": "st01-prepro-rais-331",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "87.82074990429683"
},
{
"currentType": "n1-standard-4",
"name": "gl04.doop_xtr-218",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "r3.xlarge",
"name": "ex-tst-dvc-464",
"recommendationType": "Downsize",
"recommendedType": "r4.large",
"savingsEstimate": "113.10620178222656",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002902",
"Name : ex-tst-dvc-464",
"Environment : Production",
"Inventory Code : tst-dvc",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.ttr_xtr-318",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.88111823696876",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-jaws-1106",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Production",
"Product Code : PR000464",
"Name : ex-pro-jaws-1106",
"Owner : Roger Witt",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "standard_f2",
"name": "st01-dev-duct-422",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "35.55214580020911"
},
{
"currentType": "t2.medium",
"name": "ec-pro-fifo-374",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "18.357128872985776",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002154",
"Environment : Pre-prod",
"Inventory Code : pro-fifo",
"Owner : Kozak Kor",
"Name : ec-pro-fifo-374"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-dvc-1079",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000502",
"Name : ex-pro-dvc-1079",
"Inventory Code : pro-dvc",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "db.t2.medium",
"name": "jaws-pro-edb-151",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.large",
"name": "PR001359-prepro-fifo-asg-0bc09eebbc56ea0",
"recommendationType": "Downscale",
"recommendedType": "m5.large",
"savingsEstimate": "38.47099648320682",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : prepro-fifo",
"Environment : Pre-prod",
"Name : PR001359-prepro-fifo-asg-0bc09eebbc56ea0",
"ProductCode : PR001359"
]
},
{
"currentType": "t2.medium",
"name": "ex-dev-kotl-954",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Inventory Code : dev-kotl",
"Name : ex-dev-kotl-954",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.doop_xtr-438",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-fifo-1304",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Product Code : PR000414",
"Environment : Production",
"Name : ex-prepro-fifo-1304",
"Owner : Irina Yashina"
]
},
{
"currentType": "standard_d2_v2",
"name": "st01-io-appx-454",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "99.44434156958013"
},
{
"currentType": "t2.large",
"name": "ec-io-stoc-820",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.629997253417969",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Name : ec-io-stoc-820",
"Environment : Pre-prod",
"Inventory Code : io-stoc"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-pro-stoc-1228",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-stoc",
"Environment : Production",
"Name : ec-pro-stoc-1228",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-emsg-542",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "14.479142164260848",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Product Code : PR002124",
"Inventory Code : pro-emsg",
"Name : ec-pro-emsg-542",
"Owner : Francis Robinson"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.hosa_vmx-538",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-tst-duct-343",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Owner : Francis Robinson",
"Name : ex-tst-duct-343",
"Product Code : PR000690",
"Inventory Code : tst-duct"
]
},
{
"currentType": "db.r3.large",
"name": "bion-pro-aurora-222",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "r4.2xlarge",
"name": "ec-pro-duct-1272",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.33007686645491",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002902",
"Inventory Code : pro-duct",
"Environment : Production",
"Owner : Roger Witt",
"Name : ec-pro-duct-1272"
]
},
{
"currentType": "t2.small",
"name": "ec-prepro-bion-613",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-prepro-bion-613",
"Inventory Code : prepro-bion",
"Owner : Francis Robinson",
"Product Code : PR001795"
]
},
{
"currentType": "m3.large",
"name": "PR001744-tst-emsg-asg-0bc02ce6bc666e0",
"recommendationType": "Downscale",
"recommendedType": "m4.large",
"savingsEstimate": "53.533838922858195",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : tst-emsg",
"Environment : Test",
"Name : PR001744-tst-emsg-asg-0bc02ce6bc666e0",
"ProductCode : PR001744"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.doop_xtr-332",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "standard_d2",
"name": "st01-prepro-duct-402",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.78329365759273"
},
{
"currentType": "n1-standard-8",
"name": "gl08.mln_gas-122",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.ttr_clt-250",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support",
"application : Data Warehouse"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-emsg-548",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.257494929412788",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-emsg",
"Name : ex-tst-emsg-548",
"Environment : Test",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.doop_xtr-200",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "34.159469104507295",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.mln_vmx-500",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "standard_d3_v2_promo",
"name": "st01-tst-expl-230",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "74.88186314831546"
},
{
"currentType": "n1-standard-8",
"name": "gl08.camp_sti-452",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.coa_clt-10",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "r4.large",
"name": "ec-prepro-duct-1416",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "32.52004877362051",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-duct",
"Environment : Production",
"Name : ec-prepro-duct-1416",
"Product Code : PR000401",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-2",
"name": "gl08.doop_clt-246",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-2",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.2xlarge",
"name": "ec-prepro-rais-625",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.59293080499279",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-rais",
"Name : ec-prepro-rais-625",
"Environment : Production",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-jaws-605",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : prepro-jaws",
"Product Code : PR002414",
"Name : ec-prepro-jaws-605",
"Owner : Ed Watkins"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.ttr_fap-256",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.hosa_sti-328",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "m4.2xlarge",
"name": "ex-prepro-fifo-566",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Name : ex-prepro-fifo-566",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR001379"
]
},
{
"currentType": "standard_d2_v2",
"name": "st01-prepro-jaws-363",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "99.44434156958013"
},
{
"currentType": "m4.2xlarge",
"name": "ec-prepro-appx-313",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-appx-313",
"Environment : Production",
"Inventory Code : prepro-appx",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.doop_clt-142",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "mobile-app-user",
"recommendationType": "Upsize",
"recommendedType": "t3a.large",
"savingsEstimate": "-19.278202992843582",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Name : ec-prepro-kotl-1105",
"Product Code : PR003080",
"Inventory Code : prepro-kotl"
]
},
{
"currentType": "standard_d2_v2",
"name": "st01-prepro-appx-426",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "103.08311992987059"
},
{
"currentType": "t2.large",
"name": "ex-io-oop-2347",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002866",
"Environment : Pre-prod",
"Inventory Code : io-oop",
"Name : ex-io-oop-2347",
"Owner : Kozak Kor"
]
},
{
"currentType": "t2.large",
"name": "ex-tst-emsg-629",
"recommendationType": "Downsize",
"recommendedType": "t3.medium",
"savingsEstimate": "28.950537151084863",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Inventory Code : tst-emsg",
"Product Code : PR000424",
"Environment : Pre-prod",
"Name : ex-tst-emsg-629"
]
},
{
"currentType": "n1-standard-32",
"name": "gl08.hosa_gas-274",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-16",
"savingsEstimate": "287.67763050994836"
},
{
"currentType": "c4.xlarge",
"name": "ex-pro-oop-996",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "m5a.large",
"savingsEstimate": "64.02874452944961",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-oop-996",
"Environment : Production",
"Inventory Code : pro-oop",
"Owner : Roger Witt",
"Product Code : PR001690"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.camp_gas-340",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-imco-1637",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.284822248626734",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Environment : Production",
"Inventory Code : prepro-imco",
"Name : ex-prepro-imco-1637",
"Owner : Irina Yashina"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-edb-bion-590",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "db.r3.large",
"name": "fifo-pro-aurora-147",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds3",
"name": "st02-io-dvc-504",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "151.75282703384408"
},
{
"currentType": "t2.large",
"name": "ex-pro-dvc-1236",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.966405510131736",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : pro-dvc",
"Name : ex-pro-dvc-1236",
"Owner : Francis Robinson",
"Product Code : PR001949"
]
},
{
"currentType": "m3.large",
"name": "ex-dev-duct-555",
"recommendationType": "Modernize",
"recommendedType": "m5a.large",
"savingsEstimate": "31.33188966580201",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-duct",
"Environment : Production",
"Name : ex-dev-duct-555",
"Product Code : PR000401",
"Owner : Irina Yashina"
]
},
{
"currentType": "standard_d2",
"name": "st01-prepro-kotl-270",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "137.2962798809202"
},
{
"currentType": "standard_ds3",
"name": "st02-db-imco-525",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_e2s_v3",
"savingsEstimate": "93.77871739395137"
},
{
"currentType": "n1-standard-8",
"name": "gl04.coa_fap-260",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.coa_xtr-162",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "35.96215621589654"
},
{
"currentType": "i2.xlarge",
"name": "ex-tst-stoc-1150",
"recommendationType": "Downsize",
"recommendedType": "i3.xlarge",
"savingsEstimate": "305.95228196783455",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001893",
"Environment : Pre-prod",
"Inventory Code : tst-stoc",
"Owner : Kozak Kor",
"Name : ex-tst-stoc-1150"
]
},
{
"currentType": "t2.xlarge",
"name": "PR000252-pro-bion-asg",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "m5.large",
"savingsEstimate": "365.08768915566543",
"divider": "------------------------",
"Resource Tags": [
"ProductCode : PR000252",
"Environment : Production",
"InventoryCode : pro-bion",
"Name : PR000252-pro-bion-asg"
]
},
{
"currentType": "standard_d2",
"name": "st01-pro-fifo-205",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.72127624237066"
},
{
"currentType": "n1-standard-2",
"name": "gl08.coa_fet-378",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-2",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.small",
"name": "ec-prepro-jaws-808",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Name : ec-prepro-jaws-808",
"Inventory Code : prepro-jaws"
]
},
{
"currentType": "db.r3.large",
"name": "asop-pro-edb-210",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-4",
"name": "gl04.coa_clt-140",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "c4.2xlarge",
"name": "ex-pro-bion-599",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.large",
"savingsEstimate": "168.23658292304987",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Name : ex-pro-bion-599",
"Environment : Production",
"Inventory Code : pro-bion",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.doop_fap-544",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-tst-asop-990",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "41.93032287805167",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Name : ec-tst-asop-990",
"Owner : Kozak Kor",
"Product Code : PR001674",
"Inventory Code : tst-asop"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-asop-518",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-asop-518",
"Inventory Code : pro-asop",
"Environment : Production",
"Product Code : PR003770",
"Owner : Roger Witt"
]
},
{
"currentType": "m4.large",
"name": "ec-io-asop-842",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.medium",
"savingsEstimate": "36.41454450254823",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-io-asop-842",
"Environment : Test",
"Inventory Code : io-asop",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.ttr_fet-130",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-standard-1",
"name": "gl04.hosa_sti-448",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.coa_xtr-380",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "r4.large",
"name": "ec-io-dvc-558",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "32.81537744976813",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR001674",
"Inventory Code : io-dvc",
"Name : ec-io-dvc-558"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-edge-1591",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-edge",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR001674",
"Name : ec-prepro-edge-1591"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.camp_far-148",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "db.r3.2xlarge",
"name": "duct-prepro-rds-731",
"recommendationType": "Just Right",
"recommendedType": "db.r3.2xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.large",
"name": "ec-pro-duct-619",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002893",
"Inventory Code : pro-duct",
"Environment : Pre-prod",
"Name : ec-pro-duct-619",
"Owner : Kozak Kor"
]
},
{
"currentType": "c4.xlarge",
"name": "ex-pro-jaws-1226",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "41.36370017428592",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Owner : Francis Robinson",
"Product Code : PR000690",
"Inventory Code : pro-jaws",
"Name : ex-pro-jaws-1226"
]
},
{
"currentType": "standard_d3",
"name": "st01-tst-emsg-259",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "87.82074990429683"
},
{
"currentType": "n1-standard-1",
"name": "gl04.mln_gas-150",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.xlarge",
"name": "ec-dev-emsg-1046",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001514",
"Inventory Code : dev-emsg",
"Environment : Production",
"Name : ec-dev-emsg-1046",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.large",
"name": "ex-pro-imco-589",
"recommendationType": "Downsize",
"recommendedType": "t2.medium",
"savingsEstimate": "26.239088585983264",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : pro-imco",
"Name : ex-pro-imco-589",
"Owner : Ed Watkins",
"Product Code : PR000642"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.mln_sti-28",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.large",
"name": "ec-prepro-dvc-814",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-dvc",
"Name : ec-prepro-dvc-814",
"Environment : Production",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.camp_sti-298",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "69.45262325686636",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "db.r3.2xlarge",
"name": "fifo-pro-aurora-310",
"recommendationType": "Just Right",
"recommendedType": "db.r3.2xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-tst-imco-635",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "15.657233868850744",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Name : ex-tst-imco-635",
"Owner : Kozak Kor",
"Product Code : PR003096",
"Inventory Code : tst-imco"
]
},
{
"currentType": "m4.large",
"name": "ec-prepro-jaws-267",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Inventory Code : prepro-jaws",
"Owner : Kozak Kor",
"Name : ec-prepro-jaws-267",
"Product Code : PR001654"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-tst-emsg-529",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "24.311990059814416"
},
{
"currentType": "n1-standard-8",
"name": "gl02.camp_far-494",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : WebSphere",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-pro-jaws-554",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "t2.small",
"name": "ex-prepro-stoc-583",
"recommendationType": "Downsize",
"recommendedType": "t2.micro",
"savingsEstimate": "6.457984731880206",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-stoc-583",
"Environment : Pre-prod",
"Inventory Code : prepro-stoc",
"Owner : Kozak Kor",
"Product Code : PR003096"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-fifo-1160",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Product Code : PR002988",
"Inventory Code : pro-fifo",
"Name : ec-pro-fifo-1160",
"Owner : Ed Watkins"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-rais-131",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "43.63194947518932",
"divider": "------------------------",
"Resource Tags": [
"Owner : Bill",
"Name : ex-pro-rais-131"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-oop-567",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "11.049051133773755",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Product Code : PR002988",
"Inventory Code : pro-oop",
"Name : ec-pro-oop-567",
"Owner : Ed Watkins"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-tst-emsg-525",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.20119943020632",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-tst-emsg-525",
"Inventory Code : tst-emsg",
"Environment : Test",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.hosa_far-174",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "35.96215621589654"
},
{
"currentType": "standard_d13_v2_promo",
"name": "st02-db-duct-518",
"recommendationType": "Downsize",
"recommendedType": "standard_e8_v3",
"savingsEstimate": "106.29858489593491"
},
{
"currentType": "n1-standard-8",
"name": "gl04.mln_gas-320",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.coa_xtr-358",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.2xlarge",
"name": "ec-prepro-rais-1124",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "144.98651464251685",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-rais",
"Product Code : PR000252",
"Environment : Production",
"Name : ec-prepro-rais-1124",
"Owner : Irina Yashina"
]
},
{
"currentType": "standard_d1",
"name": "st01-dev-emsg-487",
"recommendationType": "Just Right",
"recommendedType": "standard_d1",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ec-dev-dvc-1294",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "18.39496793106082",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-dev-dvc-1294",
"Environment : Test",
"Inventory Code : dev-dvc",
"Owner : Ed Watkins",
"Product Code : PR001720"
]
},
{
"currentType": "db.t2.large",
"name": "bion-tst-rdb-864",
"recommendationType": "Just Right",
"recommendedType": "db.t2.large",
"savingsEstimate": "0.0"
},
{
"currentType": "db.t2.small",
"name": "fifo-prepro-aurora-129",
"recommendationType": "Just Right",
"recommendedType": "db.t2.small",
"savingsEstimate": "0.0"
},
{
"currentType": "c4.large",
"name": "ea-pro-oop-1917",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.small",
"savingsEstimate": "44.399978295013426",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-rais",
"Product Code : PR002244",
"Name : ex-tst-rais-568",
"Environment : Pre-prod",
"LOB : Warehouse",
"Owner : Kozak Kor"
]
},
{
"currentType": "c4.large",
"name": "ec-pro-appx-263",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.small",
"savingsEstimate": "44.79315446939086",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR003538",
"Name : ec-pro-appx-263",
"Environment : Production",
"Owner : Roger Witt",
"Inventory Code : pro-appx"
]
},
{
"currentType": "standard_d2",
"name": "st01-dev-dvc-403",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.78329365759273"
},
{
"currentType": "n1-standard-4",
"name": "gl04.ttr_xtr-268",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "35.96215621589654"
},
{
"currentType": "n1-standard-8",
"name": "gl04.ttr_xtr-4",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.small",
"name": "ec-io-duct-1008",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-io-duct-1008",
"Environment : Test",
"Owner : Ed Watkins",
"Inventory Code : io-duct",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.coa_fap-92",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Infrastructure"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-dev-emsg-493",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "162.62166941250615",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Inventory Code : dev-emsg",
"Name : ec-dev-emsg-493",
"Environment : Pre-prod",
"Product Code : PR000648"
]
},
{
"currentType": "standard_d3",
"name": "st01-pro-expl-331",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "87.69635506195074"
},
{
"currentType": "db.m4.large",
"name": "asop-pro-rds-396",
"recommendationType": "Just Right",
"recommendedType": "db.m4.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.large",
"name": "PR001514-pro-imco-asg-0bc073c3bc7f780",
"recommendationType": "Modernize",
"recommendedType": "m5.large",
"savingsEstimate": "1.2774991989135742",
"divider": "------------------------",
"Resource Tags": [
"Name : PR001514-pro-imco-asg-0bc073c3bc7f780",
"InventoryCode : pro-imco",
"Environment : Production",
"ProductCode : PR001514"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-imco-958",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "z1d.large",
"savingsEstimate": "7.9491168247070165",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-imco",
"Name : ex-pro-imco-958",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR002282"
]
},
{
"currentType": "db.r3.large",
"name": "jaws-dev-aurora-123",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ec-prepro-kotl-120",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-kotl-120",
"Environment : Production",
"Product Code : PR000464",
"Inventory Code : prepro-kotl",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ec-tst-emsg-1088",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "14.507177447387658",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-emsg",
"Product Code : PR001359",
"Environment : Pre-prod",
"Name : ec-tst-emsg-1088",
"Owner : Kozak Kor"
]
},
{
"currentType": "m4.2xlarge",
"name": "ex-pro-duct-1058",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "162.95687710406492",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : pro-duct",
"Name : ex-pro-duct-1058",
"Owner : Ed Watkins",
"Product Code : PR000642"
]
},
{
"currentType": "db.m4.large",
"name": "asop-dev-io-244",
"recommendationType": "Just Right",
"recommendedType": "db.m4.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.xlarge",
"name": "ec-prepro-emsg-1110",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.39807888629148",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-emsg",
"Name : ec-prepro-emsg-1110",
"Environment : Test",
"Owner : Ed Watkins",
"Product Code : PR001885"
]
},
{
"currentType": "standard_d2",
"name": "st01-io-dvc-125",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.78329365759273"
},
{
"currentType": "m4.large",
"name": "ex-pro-jaws-329",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-jaws-329",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR002117",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_gas-550",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "70.21463181341532",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support",
"application : Data Warehouse"
]
},
{
"currentType": "t2.small",
"name": "ex-dev-edge-1094",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : dev-edge",
"Owner : Ed Watkins",
"Name : ex-dev-edge-1094",
"Product Code : PR000282"
]
},
{
"currentType": "c4.xlarge",
"name": "mobile-analysis1",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "m5.large",
"savingsEstimate": "58.36248196017463",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-emsg",
"Environment : Test",
"Name : ex-prepro-emsg-1164",
"Owner : Ed Watkins",
"Product Code : PR001467"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.hosa_vmx-548",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.large",
"name": "ec-dev-bion-3034",
"recommendationType": "Downsize",
"recommendedType": "t3.medium",
"savingsEstimate": "28.0274977684021",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Name : ec-dev-bion-3034",
"Environment : Production",
"Inventory Code : dev-bion",
"LOB : Warehouse",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.small",
"name": "ec-prepro-imco-1925",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Inventory Code : prepro-imco",
"Product Code : PR000566",
"Name : ec-prepro-imco-1925"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-prepro-jaws-836",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.33007686645491",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Inventory Code : prepro-jaws",
"Owner : Kozak Kor",
"Product Code : PR001674",
"Name : ec-prepro-jaws-836"
]
},
{
"currentType": "standard_d3_v2_promo",
"name": "st01-tst-kotl-263",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "78.66443280853272"
},
{
"currentType": "standard_d5_v2_promo",
"name": "st02-pro-appx-694",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_e8_v3",
"savingsEstimate": "327.11772080658005"
},
{
"currentType": "t2.medium",
"name": "ex-tst-appx-1923",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-appx",
"Name : ex-tst-appx-1923",
"Environment : Production",
"Product Code : PR000401",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.mln_vmx-556",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "n1-highmem-8",
"name": "gl04.doop_xtr-400",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds3_v2",
"name": "st02-prepro-kotl-541",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.ttr_fet-176",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-db-edge-695",
"recommendationType": "Just Right",
"recommendedType": "standard_a2_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl08.mln_gas-276",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Advisors",
"department : Core"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-prepro-asop-281",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "c5.xlarge",
"savingsEstimate": "17.03382091949461",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Product Code : PR003704",
"Inventory Code : prepro-asop",
"Owner : James Pillsbury",
"Name : ec-prepro-asop-281"
]
},
{
"currentType": "db.t2.medium",
"name": "asop-pro-aurora-467",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl04.camp_sti-532",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-prepro-imco-1430",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.59293080499279",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-imco-1430",
"Environment : Test",
"Inventory Code : prepro-imco",
"Owner : Ed Watkins",
"Product Code : PR000642"
]
},
{
"currentType": "m4.large",
"name": "ex-io-bion-956",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR003377",
"Inventory Code : io-bion",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Name : ex-io-bion-956"
]
},
{
"currentType": "n1-standard-1",
"name": "gl04.mln_vmx-596",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.medium",
"name": "ex-pro-rais-908",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "23.64353140980529",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : pro-rais",
"Name : ex-pro-rais-908",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "m3.medium",
"name": "ec-pro-asop-380",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-asop",
"Name : ec-pro-asop-380",
"Product Code : PR003538",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "db.t2.medium",
"name": "duct-pro-aurora-565",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ec-pro-emsg-108",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.7596459849854",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-emsg",
"Environment : Production",
"Name : ec-pro-emsg-108",
"Product Code : PR000401",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.large",
"name": "ec-prepro-dvc-537",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "8.693961402832064",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ec-prepro-dvc-537",
"Inventory Code : prepro-dvc",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-pro-bion-3058",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "158.3895584181213",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Product Code : PR000566",
"Inventory Code : pro-bion",
"Name : ec-pro-bion-3058"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.camp_gas-86",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-jaws-533",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Name : ex-prepro-jaws-533",
"Environment : Pre-prod",
"Inventory Code : prepro-jaws",
"Product Code : PR000566"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-tst-imco-607",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "24.311990059814416"
},
{
"currentType": "t2.large",
"name": "ec-pro-dvc-1140",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-dvc-1140",
"Product Code : PR001744",
"Environment : Test",
"Inventory Code : pro-dvc",
"Owner : Ed Watkins"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-pro-emsg-557",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "c5.xlarge",
"savingsEstimate": "14.791261231079115",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-emsg-557",
"Product Code : PR000252",
"Inventory Code : pro-emsg",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.medium",
"name": "ex-dev-kotl-227",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "15.314585331024137",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Name : ex-dev-kotl-227",
"Owner : James Pillsbury",
"Inventory Code : dev-kotl",
"Product Code : PR003080"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-prepro-emsg-699",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "45.94996715641784"
},
{
"currentType": "m4.large",
"name": "ex-tst-dvc-526",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Production",
"Name : ex-tst-dvc-526",
"Inventory Code : tst-dvc",
"Owner : Roger Witt",
"Product Code : PR003592"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.ttr_fap-44",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "c4.large",
"name": "PR002364-prepro-fifo-asg-0bc031d2bcb11d0",
"recommendationType": "Modernize",
"recommendedType": "c5.large",
"savingsEstimate": "9.017325461196888",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : prepro-fifo",
"Environment : Pre-prod",
"Name : PR002364-prepro-fifo-asg-0bc031d2bcb11d0",
"ProductCode : PR002364"
]
},
{
"currentType": "c4.large",
"name": "ex-pro-appx-1039",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "42.49475845016481",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Name : ex-pro-appx-1039",
"Owner : James Pillsbury",
"Product Code : PR002931",
"Inventory Code : pro-appx"
]
},
{
"currentType": "standard_d2",
"name": "st01-prepro-fifo-453",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.78329365759273"
},
{
"currentType": "c4.xlarge",
"name": "ex-tst-appx-408",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "41.36370017428592",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-tst-appx-408",
"Product Code : PR003377",
"Inventory Code : tst-appx",
"Environment : Pre-prod",
"Owner : Kozak Kor"
]
},
{
"currentType": "c4.large",
"name": "ec-pro-expl-782",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.medium",
"savingsEstimate": "33.08940651945493",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-expl-782",
"Inventory Code : pro-expl",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR002282"
]
},
{
"currentType": "m3.medium",
"name": "ec-io-asop-890",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Inventory Code : io-asop",
"Name : ec-io-asop-890"
]
},
{
"currentType": "standard_ds3",
"name": "st02-edb-oop-547",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_e2s_v3",
"savingsEstimate": "93.77871739395137"
},
{
"currentType": "c4.xlarge",
"name": "ec-prepro-rais-1031",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "91.64039729147335",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-rais",
"Name : ec-prepro-rais-1031",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR003905"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-pro-jaws-942",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "162.95687710406492",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001359",
"Environment : Pre-prod",
"Name : ec-pro-jaws-942",
"Owner : Kozak Kor",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "db.r3.large",
"name": "duct-prepro-rdb-192",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "c4.xlarge",
"name": "mobile-load-genny1",
"recommendationType": "Downsize",
"recommendedType": "c5n.large",
"savingsEstimate": "51.56297398336814",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-rais",
"Product Code : PR000252",
"Environment : Production",
"Name : ex-prepro-rais-523",
"Owner : Irina Yashina"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-asop-896",
"recommendationType": "Downsize",
"recommendedType": "m5a.large",
"savingsEstimate": "64.72851593359374",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-pro-asop-896",
"Product Code : PR002561",
"Inventory Code : pro-asop",
"Owner : Ed Watkins"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.coa_xtr-26",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "db.t2.medium",
"name": "bion-pro-rdb-078",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d1",
"name": "st01-dev-duct-346",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "21.86063812118533"
},
{
"currentType": "basic_a3",
"name": "st01-tst-asop-228",
"recommendationType": "Downsize",
"recommendedType": "standard_a2m_v2",
"savingsEstimate": "35.202053426971545"
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_gas-558",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "m4.large",
"name": "ex-prepro-fifo-1168",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "14.07817859222414",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : prepro-fifo",
"Name : ex-prepro-fifo-1168",
"Owner : Francis Robinson",
"Product Code : PR000690"
]
},
{
"currentType": "m4.large",
"name": "ex-prepro-jaws-325",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.medium",
"savingsEstimate": "33.02546087023162",
"divider": "------------------------",
"Resource Tags": [
"Environment : Production",
"Inventory Code : prepro-jaws",
"Name : ex-prepro-jaws-325",
"Product Code : PR000401",
"Owner : Irina Yashina"
]
},
{
"currentType": "r3.xlarge",
"name": "ex-prepro-appx-1100",
"recommendationType": "Modernize",
"recommendedType": "r4.xlarge",
"savingsEstimate": "38.04220025134273",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-appx-1100",
"Product Code : PR000560",
"Environment : Test",
"Inventory Code : prepro-appx",
"Owner : Ed Watkins"
]
},
{
"currentType": "c4.large",
"name": "PR000642-tst-emsg-asg",
"recommendationType": "Downscale",
"recommendedType": "r5.large",
"savingsEstimate": "8.02999982582196",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : tst-emsg",
"Environment : Test",
"Name : PR000642-tst-emsg-asg",
"ProductCode : PR000642"
]
},
{
"currentType": "basic_a3",
"name": "st01-pro-appx-353",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "57.477383917007536"
},
{
"currentType": "t2.medium",
"name": "ec-pro-emsg-846",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "12.721183095947199",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Inventory Code : pro-emsg",
"Owner : Kozak Kor",
"Name : ec-pro-emsg-846",
"Product Code : PR003064"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-emsg-980",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "14.944998264312744",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Inventory Code : tst-emsg",
"Name : ex-tst-emsg-980",
"Product Code : PR000424",
"Environment : Pre-prod"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-bion-570",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "z1d.large",
"savingsEstimate": "7.932765228210482",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-bion-570",
"Environment : Production",
"Product Code : PR003459",
"Owner : Roger Witt",
"Inventory Code : pro-bion"
]
},
{
"currentType": "standard_d1",
"name": "st01-io-fifo-209",
"recommendationType": "Just Right",
"recommendedType": "standard_d1",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ec-dev-jaws-1316",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "14.991247727371228",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001359",
"Inventory Code : dev-jaws",
"Environment : Pre-prod",
"Name : ec-dev-jaws-1316",
"Owner : Kozak Kor"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-imco-1000",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-imco-1000",
"Environment : Test",
"Inventory Code : pro-imco",
"Owner : Ed Watkins",
"Product Code : PR003864"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.doop_xtr-564",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "c4.xlarge",
"name": "ea-pro-duct-259",
"recommendationType": "Downsize",
"recommendedType": "c5.large",
"savingsEstimate": "64.47053891679388",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : pro-duct",
"Name : ex-pro-duct-259",
"Product Code : PR003682",
"Owner : Ed Watkins"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-prepro-duct-1048",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "57.99733375698852",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-duct",
"Environment : Test",
"Name : ex-prepro-duct-1048",
"Owner : Ed Watkins",
"Product Code : PR001720"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.hosa_gas-262",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "71.91449533493025",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "standard_d2",
"name": "st01-prepro-fifo-295",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.72127624237066"
},
{
"currentType": "c4.large",
"name": "mobile-svc-asg-analysisGrid",
"recommendationType": "Downscale",
"recommendedType": "c5.large",
"savingsEstimate": "114.57643734168732",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"InventoryCode : prepro-kotl",
"ProductCode : PR000566",
"Name : PR000566-prepro-kotl-asg"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-tst-edge-936",
"recommendationType": "Downsize",
"recommendedType": "m5a.large",
"savingsEstimate": "75.9965048607788",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-edge",
"Environment : Production",
"Name : ec-tst-edge-936",
"Product Code : PR000401",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.camp_gas-470",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_gas-182",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-imco-910",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "15.537674403976416",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : pro-imco",
"Environment : Pre-prod",
"Name : ex-pro-imco-910"
]
},
{
"currentType": "n1-highmem-8",
"name": "gl04.ttr_fet-468",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl04.camp_vmx-158",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.500111163666",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "c4.large",
"name": "ea-tst-rais-568",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "34.43579872817995",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-oop-1917",
"Environment : Production",
"Inventory Code : pro-oop",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "d2.xlarge",
"name": "ex-pro-rais-2365",
"recommendationType": "Just Right",
"recommendedType": "d2.xlarge",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-rais-2365",
"Environment : Production",
"Inventory Code : pro-rais",
"Owner : Roger Witt",
"Product Code : PR003577"
]
},
{
"currentType": "r3.xlarge",
"name": "ec-io-emsg-536",
"recommendationType": "Modernize",
"recommendedType": "r4.xlarge",
"savingsEstimate": "38.04220025134273",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-io-emsg-536",
"Environment : Test",
"Inventory Code : io-emsg",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-expl-617",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Inventory Code : pro-expl",
"Owner : James Pillsbury",
"Product Code : PR004079",
"Name : ec-pro-expl-617"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.doop_xtr-584",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "69.26211972021498",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-duct-826",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "17.13312139888003",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002154",
"Inventory Code : pro-duct",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Name : ex-pro-duct-826"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-rais-1597",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Product Code : PR002124",
"Name : ex-pro-rais-1597",
"Owner : Francis Robinson",
"Inventory Code : pro-rais"
]
},
{
"currentType": "m4.large",
"name": "ex-pro-bion-1288",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "14.07817859222414",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-bion-1288",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR003577",
"Inventory Code : pro-bion"
]
},
{
"currentType": "t2.large",
"name": "ex-prepro-duct-1314",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-duct",
"Product Code : PR003557",
"Environment : Production",
"Name : ex-prepro-duct-1314",
"Owner : Roger Witt"
]
},
{
"currentType": "i2.xlarge",
"name": "ec-prepro-jaws-434",
"recommendationType": "Modernize",
"recommendedType": "i3.2xlarge",
"savingsEstimate": "130.0248344034422",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Name : ec-prepro-jaws-434",
"Inventory Code : prepro-jaws",
"Owner : Kozak Kor",
"Product Code : PR003096"
]
},
{
"currentType": "n1-standard-32",
"name": "gl08.coa_xtr-286",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-32",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.ttr_xtr-160",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "71.91449533493025"
},
{
"currentType": "c4.large",
"name": "ec-prepro-fifo-1310",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "35.42878885055543",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Environment : Test",
"Name : ec-prepro-fifo-1310",
"Owner : Ed Watkins",
"Product Code : PR001885"
]
},
{
"currentType": "m4.large",
"name": "ec-prepro-bion-479",
"recommendationType": "Modernize",
"recommendedType": "m5.large",
"savingsEstimate": "1.9344987869262695",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR004079",
"Inventory Code : prepro-bion",
"Name : ec-prepro-bion-479"
]
},
{
"currentType": "t2.2xlarge",
"name": "ec-prepro-expl-976",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "82.27721475524945",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ec-prepro-expl-976",
"Product Code : PR003682",
"Owner : Ed Watkins",
"Inventory Code : prepro-expl"
]
},
{
"currentType": "n1-highmem-8",
"name": "gl02.ttr_xtr-154",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.xlarge",
"name": "ex-dev-kotl-1625",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "57.99733375698852",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-kotl",
"Environment : Pre-prod",
"Name : ex-dev-kotl-1625",
"Owner : Kozak Kor",
"Product Code : PR003905"
]
},
{
"currentType": "c4.large",
"name": "ec-tst-edge-878",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.small",
"savingsEstimate": "52.80122354486084",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : tst-edge",
"Environment : Pre-prod",
"Name : ec-tst-edge-878"
]
},
{
"currentType": "db.t2.medium",
"name": "jaws-pro-edb-139",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-4",
"name": "gl02.mln_sti-224",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl04.camp_gas-492",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"application : Load Testing",
"business_unit : Support"
]
},
{
"currentType": "m3.medium",
"name": "ec-tst-duct-631",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Name : ec-tst-duct-631",
"Environment : Pre-prod",
"Inventory Code : tst-duct"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.coa_fap-520",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-pro-stoc-341",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-stoc",
"Environment : Pre-prod",
"Name : ex-pro-stoc-341",
"Product Code : PR002916",
"Owner : Kozak Kor"
]
},
{
"currentType": "m3.medium",
"name": "ec-tst-imco-1420",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "24.98293477713014",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Product Code : PR002484",
"Name : ec-tst-imco-1420",
"Owner : Francis Robinson",
"Inventory Code : tst-imco"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-db-kotl-690",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "t2.small",
"name": "ex-prepro-dvc-1073",
"recommendationType": "Downsize",
"recommendedType": "t2.micro",
"savingsEstimate": "6.445504603954323",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Inventory Code : prepro-dvc",
"Name : ex-prepro-dvc-1073"
]
},
{
"currentType": "db.t2.medium",
"name": "duct-prepro-aurora-248",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-1",
"name": "gl02.mln_far-386",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.large",
"name": "ex-dev-kotl-368",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "35.28758496498107",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-kotl",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Name : ex-dev-kotl-368",
"Product Code : PR001618"
]
},
{
"currentType": "m3.medium",
"name": "ex-dev-expl-1184",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "24.98293477713014",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Product Code : PR002561",
"Inventory Code : dev-expl",
"Name : ex-dev-expl-1184",
"Owner : Ed Watkins"
]
},
{
"currentType": "t2.large",
"name": "ex-tst-duct-572",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.629997253417969",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Name : ex-tst-duct-572",
"Environment : Production",
"Inventory Code : tst-duct",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.mln_vmx-56",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "db.r3.2xlarge",
"name": "jaws-pro-aurora-159",
"recommendationType": "Just Right",
"recommendedType": "db.r3.2xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_a4_v2",
"name": "st02-edb-edge-598",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "standard_f4s_v2",
"savingsEstimate": "-23.444677817077608"
},
{
"currentType": "t2.medium",
"name": "ec-io-dvc-483",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Owner : Francis Robinson",
"Product Code : PR001795",
"Inventory Code : io-dvc",
"Name : ec-io-dvc-483"
]
},
{
"currentType": "standard_d1",
"name": "st01-prepro-fifo-416",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b1ms",
"savingsEstimate": "34.873348887348186"
},
{
"currentType": "n1-standard-8",
"name": "gl04.ttr_clt-384",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-duct-269",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "14.479142164260848",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-duct-269",
"Product Code : PR000502",
"Inventory Code : prepro-duct",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_d13_v2",
"name": "st02-edb-emsg-597",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b16ms",
"savingsEstimate": "116.28240791198797"
},
{
"currentType": "db.r3.large",
"name": "fifo-prepro-aurora-384",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.large",
"name": "PR003080-io-dvc-asg-0bc0400cbca5ce092990",
"recommendationType": "Downscale",
"recommendedType": "m5.large",
"savingsEstimate": "75.0793848102021",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"InventoryCode : io-dvc",
"Name : PR003080-io-dvc-asg-0bc0400cbca5ce092990",
"ProductCode : PR003080"
]
},
{
"currentType": "t2.medium",
"name": "ec-tst-asop-1232",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Production",
"Product Code : PR000464",
"Inventory Code : tst-asop",
"Owner : Roger Witt",
"Name : ec-tst-asop-1232"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-emsg-1300",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-emsg-1300",
"Product Code : PR000252",
"Inventory Code : pro-emsg",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.medium",
"name": "ec-io-dvc-1446",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "11.0114749296417",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-io-dvc-1446",
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Inventory Code : io-dvc"
]
},
{
"currentType": "standard_d1",
"name": "st01-pro-asop-116",
"recommendationType": "Just Right",
"recommendedType": "standard_d1",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d2",
"name": "st01-tst-duct-292",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "69.61942148227696"
},
{
"currentType": "m3.large",
"name": "ex-prepro-fifo-420",
"recommendationType": "Downsize",
"recommendedType": "m3.medium",
"savingsEstimate": "43.829343395523026",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Inventory Code : prepro-fifo",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Name : ex-prepro-fifo-420"
]
},
{
"currentType": "i2.xlarge",
"name": "ec-io-emsg-245",
"recommendationType": "Downsize",
"recommendedType": "i3.large",
"savingsEstimate": "394.17511723019413",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : io-emsg",
"Name : ec-io-emsg-245",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "m4.large",
"name": "ex-prepro-duct-473",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-duct",
"Name : ex-prepro-duct-473",
"Environment : Test",
"Owner : Ed Watkins",
"Product Code : PR001467"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-io-expl-964",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.39807888629148",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-expl",
"Product Code : PR002735",
"Environment : Production",
"Name : ex-io-expl-964",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.ttr_xtr-254",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "db.m3.large",
"name": "jaws-pro-edb-127",
"recommendationType": "Downsize",
"recommendedType": "db.m3.medium",
"savingsEstimate": "56.55310680160532"
},
{
"currentType": "m4.large",
"name": "ec-tst-kotl-984",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Inventory Code : tst-kotl",
"Name : ec-tst-kotl-984",
"Product Code : PR003990"
]
},
{
"currentType": "m4.xlarge",
"name": "PR000414-pro-asop-asg",
"recommendationType": "Downscale",
"recommendedType": "m5a.xlarge",
"savingsEstimate": "133.32436352009245",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : pro-asop",
"Environment : Production",
"Name : PR000414-pro-asop-asg",
"ProductCode : PR000414"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.hosa_gas-422",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-emsg-1414",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-emsg",
"Name : ex-tst-emsg-1414",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR001654"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-oop-1061",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.257494929412788",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-oop-1061",
"Environment : Test",
"Inventory Code : pro-oop",
"Owner : Ed Watkins",
"Product Code : PR001467"
]
},
{
"currentType": "n1-standard-1",
"name": "gl02.coa_xtr-16",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ec-pro-emsg-1033",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-emsg-1033",
"Environment : Pre-prod",
"Inventory Code : pro-emsg",
"Product Code : PR003634",
"Owner : Kozak Kor"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.mln_gas-278",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.mln_vmx-62",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-tst-duct-1172",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "41.93032287805167",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000560",
"Environment : Test",
"Name : ex-tst-duct-1172",
"Owner : Ed Watkins",
"Inventory Code : tst-duct"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.mln_vmx-444",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "69.45262325686636",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.doop_fet-242",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "standard_d3_v2_promo",
"name": "st01-prepro-kotl-364",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_a2m_v2",
"savingsEstimate": "107.45891522186284"
},
{
"currentType": "m3.medium",
"name": "ex-dev-duct-556",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-duct",
"Product Code : PR003377",
"Environment : Pre-prod",
"Name : ex-dev-duct-556",
"Owner : Kozak Kor"
]
},
{
"currentType": "standard_d1_v2",
"name": "st01-io-asop-216",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "18.78064862208557"
},
{
"currentType": "db.m4.large",
"name": "duct-prepro-rdb-290",
"recommendationType": "Just Right",
"recommendedType": "db.m4.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.2xlarge",
"name": "ec-prepro-fifo-487",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Name : ec-prepro-fifo-487",
"Environment : Test",
"Owner : Ed Watkins",
"Product Code : PR000642"
]
},
{
"currentType": "c4.2xlarge",
"name": "ex-tst-fifo-505",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "183.2807945829467",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-fifo",
"Name : ex-tst-fifo-505",
"Product Code : PR003557",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "db.t2.medium",
"name": "asop-pro-mysql-337",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl08.hosa_sti-252",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.88111823696876",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.small",
"name": "ec-io-duct-1087",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-io-duct-1087",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR001644",
"Inventory Code : io-duct"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.hosa_gas-530",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "basic_a3",
"name": "st01-dev-imco-334",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "57.477383917007536"
},
{
"currentType": "t2.medium",
"name": "ec-tst-imco-1210",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR004079",
"Inventory Code : tst-imco",
"Name : ec-tst-imco-1210"
]
},
{
"currentType": "basic_a3",
"name": "st01-tst-oop-146",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "67.4825839322203"
},
{
"currentType": "standard_d4_v2",
"name": "st01-tst-asop-391",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b12ms",
"savingsEstimate": "285.1082449283451"
},
{
"currentType": "t2.medium",
"name": "ex-io-emsg-1208",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "15.59745413641358",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Name : ex-io-emsg-1208",
"Inventory Code : io-emsg"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.coa_fap-116",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "db.t2.medium",
"name": "duct-tst-edb-120",
"recommendationType": "Downsize",
"recommendedType": "db.t2.small",
"savingsEstimate": "20.924647507026677"
},
{
"currentType": "t2.medium",
"name": "ex-prepro-oop-531",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "14.479142164260848",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Inventory Code : prepro-oop",
"Environment : Production",
"Name : ex-prepro-oop-531",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-appx-2351",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "15.574376197860692",
"divider": "------------------------",
"Resource Tags": [
"Environment : Production",
"Inventory Code : prepro-appx",
"Name : ex-prepro-appx-2351",
"Owner : Roger Witt",
"Product Code : PR001379"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.hosa_gas-120",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "ex-io-bion-852",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "14.88521853187558",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002244",
"Inventory Code : io-bion",
"Environment : Pre-prod",
"Name : ex-io-bion-852",
"Owner : Kozak Kor"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-tst-emsg-1248",
"recommendationType": "Modernize",
"recommendedType": "m5a.xlarge",
"savingsEstimate": "18.594270470459016",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Inventory Code : tst-emsg",
"Environment : Pre-prod",
"Product Code : PR000648",
"Name : ex-tst-emsg-1248"
]
},
{
"currentType": "m5.large",
"name": "EC2ContainerService-dvc-Sandbox-Cluster1-EcsInstanceAsg-1WX1TGQ0HDUF8",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "c5.2xlarge",
"savingsEstimate": "-4.921969353845611",
"divider": "------------------------",
"Resource Tags": [
"Description : This instance is the part of the Auto Scaling group which was created through ECS Console",
"Name : ECS Instance - EC2ContainerService-dvc-Sandbox-Cluster1",
"aws:cloudformation:stack-name : EC2ContainerService-dvc-Sandbox-Cluster1",
"aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:409119911940:stack/EC2ContainerService-dvc-Sandbox-Cluster1/49d23cd0-8309-11e9-8b26-0a1513ed47e4",
"aws:cloudformation:logical-id : EcsInstanceAsg"
]
},
{
"currentType": "t2.medium",
"name": "ec-dev-kotl-422",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-kotl",
"Product Code : PR001893",
"Environment : Pre-prod",
"Name : ec-dev-kotl-422",
"Owner : Kozak Kor"
]
},
{
"currentType": "m4.large",
"name": "ex-io-bion-1234",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-bion",
"Environment : Production",
"Product Code : PR000464",
"Name : ex-io-bion-1234",
"Owner : Roger Witt"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-pro-asop-792",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.39807888629148",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Inventory Code : pro-asop",
"Name : ec-pro-asop-792",
"Product Code : PR000566"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-fifo-1085",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Inventory Code : pro-fifo",
"Environment : Production",
"Name : ex-pro-fifo-1085",
"Owner : Irina Yashina"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-prepro-jaws-1308",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.85757770111086",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000502",
"Name : ec-prepro-jaws-1308",
"Environment : Production",
"Inventory Code : prepro-jaws",
"Owner : Roger Witt"
]
},
{
"currentType": "r3.2xlarge",
"name": "ex-pro-fifo-1282",
"recommendationType": "Modernize",
"recommendedType": "r4.2xlarge",
"savingsEstimate": "75.5166217030026",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : pro-fifo",
"Name : ex-pro-fifo-1282",
"Owner : Francis Robinson",
"Product Code : PR000690"
]
},
{
"currentType": "c4.xlarge",
"name": "ec-pro-expl-874",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "91.64039729147335",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-expl",
"Environment : Test",
"Name : ec-pro-expl-874",
"Owner : Ed Watkins",
"Product Code : PR001720"
]
},
{
"currentType": "standard_ds3_v2",
"name": "st02-db-appx-527",
"recommendationType": "Downsize",
"recommendedType": "standard_d4s_v3",
"savingsEstimate": "26.427816632080358"
},
{
"currentType": "n1-standard-4",
"name": "gl08.hosa_vmx-414",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl08.doop_fap-8",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "70.21463181341532",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-edb-emsg-540",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "45.94996715641784"
},
{
"currentType": "t2.medium",
"name": "ex-dev-imco-509",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Environment : Production",
"Name : ex-dev-imco-509",
"Inventory Code : dev-imco",
"Owner : Irina Yashina"
]
},
{
"currentType": "standard_ds3",
"name": "st02-edb-jaws-500",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_e2s_v3",
"savingsEstimate": "93.96559275283828"
},
{
"currentType": "n1-standard-4",
"name": "gl08.mln_sti-368",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.camp_sti-526",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "m3.medium",
"name": "ex-prepro-dvc-253",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : prepro-dvc",
"Name : ex-prepro-dvc-253",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "standard_ds3_v2",
"name": "st02-pro-kotl-660",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_e2s_v3",
"savingsEstimate": "62.723711696441754"
},
{
"currentType": "m3.medium",
"name": "ex-tst-kotl-1902",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "24.931544053131073",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-tst-kotl-1902",
"Product Code : PR000252",
"Inventory Code : tst-kotl",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-prepro-stoc-1919",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-stoc-1919",
"Environment : Pre-prod",
"Inventory Code : prepro-stoc",
"Owner : Kozak Kor",
"Product Code : PR001654"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-prepro-dvc-579",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-dvc-579",
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Inventory Code : prepro-dvc",
"Product Code : PR000566"
]
},
{
"currentType": "c4.2xlarge",
"name": "ex-io-duct-418",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "170.4761838314822",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002735",
"Name : ex-io-duct-418",
"Environment : Production",
"Owner : Roger Witt",
"Inventory Code : io-duct"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.coa_xtr-188",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "34.63578736973577",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "standard_d2",
"name": "st01-pro-jaws-184",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "46.294941802459654"
},
{
"currentType": "n1-standard-8",
"name": "gl04.coa_fet-472",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "ec-io-dvc-559",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Name : ec-io-dvc-559",
"Owner : Kozak Kor",
"Inventory Code : io-dvc",
"Product Code : PR003096"
]
},
{
"currentType": "m4.4xlarge",
"name": "ec-prepro-rais-378",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "324.6148024248658",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-rais",
"Product Code : PR001893",
"Environment : Pre-prod",
"Name : ec-prepro-rais-378",
"Owner : Kozak Kor"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-kotl-1027",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "15.004777996749908",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Name : ex-prepro-kotl-1027",
"Owner : Kozak Kor",
"Inventory Code : prepro-kotl",
"Product Code : PR003096"
]
},
{
"currentType": "t2.medium",
"name": "ec-tst-rais-1040",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "17.13312139888003",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-rais",
"Name : ec-tst-rais-1040",
"Product Code : PR003557",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-emsg-778",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.629997253417969",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-emsg-778",
"Inventory Code : pro-emsg",
"Environment : Production",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.xlarge",
"name": "ec-tst-edge-1268",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "12.240677749420284",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Inventory Code : tst-edge",
"Name : ec-tst-edge-1268",
"Product Code : PR002931"
]
},
{
"currentType": "t2.medium",
"name": "ex-dev-kotl-603",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : dev-kotl",
"Name : ex-dev-kotl-603",
"Owner : Francis Robinson",
"Product Code : PR000690"
]
},
{
"currentType": "standard_d13_v2_promo",
"name": "st02-pro-expl-690",
"recommendationType": "Downsize",
"recommendedType": "standard_e8_v3",
"savingsEstimate": "106.08718213009648"
},
{
"currentType": "m4.xlarge",
"name": "ec-io-appx-442",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "z1d.large",
"savingsEstimate": "7.665000915527344",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-appx",
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Name : ec-io-appx-442",
"Product Code : PR000566"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.ttr_fap-302",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "t2.large",
"name": "ec-tst-asop-952",
"recommendationType": "Downsize",
"recommendedType": "t3.medium",
"savingsEstimate": "27.803278356475786",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Name : ec-tst-asop-952",
"Environment : Pre-prod",
"Inventory Code : tst-asop"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.hosa_gas-370",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.small",
"name": "ec-dev-emsg-1240",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : dev-emsg",
"Name : ec-dev-emsg-1240",
"Owner : Francis Robinson",
"Product Code : PR001795"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-pro-emsg-416",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "48.95351080950932",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-emsg",
"Environment : Production",
"Name : ec-pro-emsg-416",
"Owner : Roger Witt",
"Product Code : PR003592"
]
},
{
"currentType": "db.t2.small",
"name": "jaws-tst-edb-148",
"recommendationType": "Upsize",
"recommendedType": "db.t2.medium",
"savingsEstimate": "-38.45610813311767"
},
{
"currentType": "r4.large",
"name": "ec-pro-expl-1082",
"recommendationType": "Just Right",
"recommendedType": "r4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-expl",
"Product Code : PR002721",
"Environment : Production",
"Name : ec-pro-expl-1082",
"Owner : Roger Witt"
]
},
{
"currentType": "basic_a3",
"name": "st01-dev-imco-321",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_d2a_v4",
"savingsEstimate": "49.5523939300538"
},
{
"currentType": "db.r3.large",
"name": "bion-pro-edb-513",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds3_v2",
"name": "st02-prepro-kotl-648",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-tst-emsg-1426",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ex-tst-emsg-1426",
"Inventory Code : tst-emsg",
"Owner : Francis Robinson",
"Product Code : PR001368"
]
},
{
"currentType": "m4.large",
"name": "ex-prepro-dvc-1051",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "14.049219312744098",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Inventory Code : prepro-dvc",
"Name : ex-prepro-dvc-1051",
"Product Code : PR000566"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.coa_xtr-264",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.large",
"name": "ec-prepro-jaws-818",
"recommendationType": "Downsize",
"recommendedType": "t3.medium",
"savingsEstimate": "31.92145077409368",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ec-prepro-jaws-818",
"Inventory Code : prepro-jaws",
"Owner : Ed Watkins",
"Product Code : PR001720"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.coa_fap-456",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Advisors",
"department : Core"
]
},
{
"currentType": "r3.2xlarge",
"name": "ex-prepro-kotl-1190",
"recommendationType": "Modernize",
"recommendedType": "r4.2xlarge",
"savingsEstimate": "75.5166217030026",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-kotl-1190",
"Product Code : PR001359",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Inventory Code : prepro-kotl"
]
},
{
"currentType": "c4.xlarge",
"name": "ex-tst-rais-639",
"recommendationType": "Just Right",
"recommendedType": "c4.xlarge",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-rais",
"Product Code : PR000502",
"Name : ex-tst-rais-639",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_ds3",
"name": "st02-pro-asop-507",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_e2s_v3",
"savingsEstimate": "93.77871739395137"
},
{
"currentType": "m4.xlarge",
"name": "ex-prepro-duct-798",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.39807888629148",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-duct",
"Environment : Test",
"Owner : Ed Watkins",
"Name : ex-prepro-duct-798",
"Product Code : PR000642"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.doop_xtr-32",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "70.21463181341532",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.ttr_xtr-498",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "69.26211972021498",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "standard_d1_v2",
"name": "st01-prepro-fifo-388",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "19.447619715003967"
},
{
"currentType": "standard_d3",
"name": "st01-pro-expl-193",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "93.39765484375006"
},
{
"currentType": "n1-standard-8",
"name": "gl04.coa_fap-424",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "r3.2xlarge",
"name": "ec-pro-expl-406",
"recommendationType": "Downsize",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "248.74883559335373",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-expl",
"Environment : Production",
"Name : ec-pro-expl-406",
"Owner : Roger Witt",
"Product Code : PR003592"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-expl-1274",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-expl",
"Product Code : PR002902",
"Environment : Production",
"Name : ec-pro-expl-1274",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.mln_gas-508",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "t2.large",
"name": "ex-dev-kotl-283",
"recommendationType": "Downsize",
"recommendedType": "t3.medium",
"savingsEstimate": "28.950537151084863",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001514",
"Inventory Code : dev-kotl",
"Environment : Production",
"Owner : Roger Witt",
"Name : ex-dev-kotl-283"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-tst-appx-828",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.85757770111086",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : tst-appx",
"Name : ex-tst-appx-828",
"Owner : Francis Robinson",
"Product Code : PR001935"
]
},
{
"currentType": "t2.xlarge",
"name": "ec-prepro-kotl-1053",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "10.546978424285772",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Name : ec-prepro-kotl-1053",
"Inventory Code : prepro-kotl"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-pro-stoc-554",
"recommendationType": "Just Right",
"recommendedType": "standard_a2_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl08.camp_gas-38",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "t2.small",
"name": "ec-tst-jaws-1086",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-jaws",
"Environment : Production",
"Product Code : PR000464",
"Owner : Roger Witt",
"Name : ec-tst-jaws-1086"
]
},
{
"currentType": "t2.medium",
"name": "ec-tst-kotl-581",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.284822248626734",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-kotl",
"Name : ec-tst-kotl-581",
"Product Code : PR002721",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-fifo-100",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "14.944998264312744",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Inventory Code : prepro-fifo",
"Owner : James Pillsbury",
"Product Code : PR004079",
"Name : ex-prepro-fifo-100"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.mln_gas-66",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Infrastructure"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-db-kotl-552",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "n1-standard-8",
"name": "gl04.mln_sti-290",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.medium",
"name": "ex-prepro-duct-491",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "24.98293477713014",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-duct",
"Environment : Pre-prod",
"Name : ex-prepro-duct-491",
"Owner : Kozak Kor",
"Product Code : PR001674"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-dvc-499",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Name : ex-tst-dvc-499",
"Product Code : PR002931",
"Inventory Code : tst-dvc"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-fifo-3076",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "17.067706688873294",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Inventory Code : tst-fifo",
"Name : ex-tst-fifo-3076",
"Owner : James Pillsbury",
"Product Code : PR002931"
]
},
{
"currentType": "m4.large",
"name": "ec-pro-expl-532",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000502",
"Inventory Code : pro-expl",
"Name : ec-pro-expl-532",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-dev-kotl-521",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.59293080499279",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-kotl",
"Product Code : PR003563",
"Environment : Production",
"Name : ec-dev-kotl-521",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-asop-287",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-asop",
"Name : ex-prepro-asop-287",
"Product Code : PR002902",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-dev-jaws-2345",
"recommendationType": "Downsize",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "173.74495320275892",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : dev-jaws",
"Owner : Francis Robinson",
"Product Code : PR001795",
"Name : ec-dev-jaws-2345"
]
},
{
"currentType": "standard_ds2_v2",
"name": "st02-db-oop-542",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "114.1665966843412"
},
{
"currentType": "n1-standard-8",
"name": "gl08.mln_gas-552",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "m3.medium",
"name": "ec-prepro-appx-569",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Inventory Code : prepro-appx",
"Name : ec-prepro-appx-569",
"Product Code : PR002031"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-db-jaws-679",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "22.066643876892048"
},
{
"currentType": "n1-standard-4",
"name": "gl04.hosa_far-408",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.large",
"name": "ec-pro-dvc-534",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.552957471313421",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-dvc",
"Product Code : PR001812",
"Environment : Production",
"Owner : Roger Witt",
"Name : ec-pro-dvc-534"
]
},
{
"currentType": "t2.medium",
"name": "ex-io-stoc-3042",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.284822248626734",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ex-io-stoc-3042",
"Owner : Francis Robinson",
"Inventory Code : io-stoc",
"Product Code : PR001368"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-asop-319",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-asop",
"Environment : Test",
"Product Code : PR003792",
"Owner : Ed Watkins",
"Name : ex-prepro-asop-319"
]
},
{
"currentType": "m4.large",
"name": "ec-tst-edge-315",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "39.063680318756084",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001744",
"Environment : Test",
"Inventory Code : tst-edge",
"Name : ec-tst-edge-315",
"Owner : Ed Watkins"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-expl-1059",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.986948994873092",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-expl",
"Product Code : PR002902",
"Name : ec-pro-expl-1059",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.small",
"name": "ec-pro-kotl-1218",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Inventory Code : pro-kotl",
"Name : ec-pro-kotl-1218",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-tst-edge-1639",
"recommendationType": "Downsize",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "173.38755408148165",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Inventory Code : tst-edge",
"Product Code : PR004079",
"Name : ec-tst-edge-1639"
]
},
{
"currentType": "standard_d1_v2",
"name": "st01-pro-bion-384",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "20.7723954396286"
},
{
"currentType": "m4.large",
"name": "ex-pro-asop-485",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Inventory Code : pro-asop",
"Name : ex-pro-asop-485"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.camp_gas-236",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.large",
"name": "ec-pro-bion-1134",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001812",
"Environment : Production",
"Owner : Roger Witt",
"Inventory Code : pro-bion",
"Name : ec-pro-bion-1134"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-duct-780",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.284822248626734",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-tst-duct-780",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR001644",
"Inventory Code : tst-duct"
]
},
{
"currentType": "c4.large",
"name": "ec-prepro-kotl-649",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "34.16249942779541",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : prepro-kotl",
"Owner : Ed Watkins",
"Name : ec-prepro-kotl-649",
"Product Code : PR000282"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-asop-573",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "15.537674403976416",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-asop",
"Environment : Test",
"Name : ec-prepro-asop-573",
"Owner : Ed Watkins",
"Product Code : PR000642"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.coa_xtr-108",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "n1-highmem-8",
"name": "gl08.mln_sti-376",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.medium",
"name": "ex-pro-edge-424",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-edge-424",
"Product Code : PR001812",
"Environment : Production",
"Owner : Roger Witt",
"Inventory Code : pro-edge"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-emsg-609",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.39807888629148",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Product Code : PR003704",
"Name : ex-pro-emsg-609",
"Owner : James Pillsbury",
"Inventory Code : pro-emsg"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-dvc-136",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Inventory Code : prepro-dvc",
"Product Code : PR003080",
"Name : ex-prepro-dvc-136"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.ttr_xtr-568",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "c4.2xlarge",
"name": "ex-pro-fifo-1252",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "161.48842400497466",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-fifo-1252",
"Inventory Code : pro-fifo",
"Product Code : PR003755",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "db.r3.2xlarge",
"name": "jaws-pro-edb-154",
"recommendationType": "Just Right",
"recommendedType": "db.r3.2xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds3_v2_promo",
"name": "st02-dev-dvc-655",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "170.31265335998498"
},
{
"currentType": "db.r3.large",
"name": "bion-pro-io-747",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.small",
"name": "ex-pro-appx-382",
"recommendationType": "Downsize",
"recommendedType": "t2.micro",
"savingsEstimate": "6.471296402839653",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-pro-appx-382",
"Owner : Ed Watkins",
"Inventory Code : pro-appx",
"Product Code : PR000282"
]
},
{
"currentType": "db.t2.medium",
"name": "fifo-pro-aurora-395",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "PR002976-prepro-fifo-asg-0bc00860bc616f0",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : prepro-fifo",
"Name : PR002976-prepro-fifo-asg-0bc00860bc616f0",
"Environment : Pre-prod",
"ProductCode : PR002976"
]
},
{
"currentType": "standard_ds3_v2",
"name": "st02-db-imco-668",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-4",
"name": "gl08.doop_xtr-186",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "34.159469104507295",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-db-dvc-511",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "n1-standard-8",
"name": "gl08.mln_far-84",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "m3.medium",
"name": "ec-prepro-jaws-576",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Owner : Francis Robinson",
"Inventory Code : prepro-jaws",
"Product Code : PR000690",
"Name : ec-prepro-jaws-576"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.doop_fap-430",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "standard_d2",
"name": "st01-pro-kotl-322",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "69.51275873931881"
},
{
"currentType": "n1-standard-8",
"name": "gl08.camp_far-240",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.ttr_clt-514",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-appx-1034",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-appx-1034",
"Environment : Pre-prod",
"Inventory Code : prepro-appx",
"Owner : Kozak Kor",
"Product Code : PR001618"
]
},
{
"currentType": "t2.large",
"name": "PR002893-prepro-jaws-asg-0bc08f10bc57100",
"recommendationType": "Downscale",
"recommendedType": "t2.large",
"savingsEstimate": "7.95004258237941",
"divider": "------------------------",
"Resource Tags": [
"ProductCode : PR002893",
"Environment : Pre-prod",
"InventoryCode : prepro-jaws",
"Name : PR002893-prepro-jaws-asg-0bc08f10bc57100"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.doop_fet-416",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "standard_ds3_v2_promo",
"name": "st01-dev-stoc-407",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "78.54391235607909"
},
{
"currentType": "standard_ds3_v2",
"name": "st02-io-dvc-512",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d1",
"name": "st01-io-dvc-393",
"recommendationType": "Just Right",
"recommendedType": "standard_d1",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-prepro-dvc-3052",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.284822248626734",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Inventory Code : prepro-dvc",
"Name : ex-prepro-dvc-3052",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "standard_f2",
"name": "st01-pro-fifo-262",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_d1_v2",
"savingsEstimate": "16.104526085205144"
},
{
"currentType": "standard_ds3_v2",
"name": "st02-tst-edge-632",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.medium",
"name": "ex-pro-kotl-477",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-kotl-477",
"Product Code : PR000560",
"Inventory Code : pro-kotl",
"Environment : Test",
"Owner : Ed Watkins"
]
},
{
"currentType": "m4.large",
"name": "ec-prepro-rais-400",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "35.35591065887449",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-rais",
"Environment : Test",
"Name : ec-prepro-rais-400",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.mln_vmx-128",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-emsg-1090",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "11.056520924926735",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-emsg",
"Environment : Production",
"Owner : Roger Witt",
"Name : ec-pro-emsg-1090",
"Product Code : PR001690"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-kotl-1018",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Production",
"Inventory Code : prepro-kotl",
"Owner : Roger Witt",
"Name : ex-prepro-kotl-1018",
"Product Code : PR001690"
]
},
{
"currentType": "r3.2xlarge",
"name": "ex-prepro-stoc-384",
"recommendationType": "Modernize",
"recommendedType": "r4.2xlarge",
"savingsEstimate": "75.36128151187208",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Inventory Code : prepro-stoc",
"Name : ex-prepro-stoc-384"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.camp_far-114",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "c4.large",
"name": "ec-pro-bion-515",
"recommendationType": "Just Right",
"recommendedType": "c4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ec-pro-bion-515",
"Owner : Ed Watkins",
"Inventory Code : pro-bion",
"Product Code : PR000642"
]
},
{
"currentType": "t2.medium",
"name": "PR002154-prepro-fifo-asg-0bc050e9bcbbc50",
"recommendationType": "Upsize",
"recommendedType": "t3.large",
"savingsEstimate": "-8.956667849123505",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : prepro-fifo",
"Name : PR002154-prepro-fifo-asg-0bc050e9bcbbc50",
"Environment : Pre-prod",
"ProductCode : PR002154"
]
},
{
"currentType": "t2.small",
"name": "ex-prepro-fifo-1056",
"recommendationType": "Downsize",
"recommendedType": "t2.micro",
"savingsEstimate": "6.445504603954323",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Product Code : PR000252",
"Name : ex-prepro-fifo-1056",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "db.t2.medium",
"name": "jaws-tst-aurora-135",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.camp_far-72",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "70.21463181341532",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "t2.small",
"name": "ec-tst-fifo-884",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-fifo",
"Name : ec-tst-fifo-884",
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod"
]
},
{
"currentType": "db.t2.medium",
"name": "asop-pro-io-124",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.large",
"name": "ec-tst-imco-1633",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Name : ec-tst-imco-1633",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Inventory Code : tst-imco"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_vmx-222",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "standard_d1",
"name": "st01-pro-asop-404",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b1ms",
"savingsEstimate": "34.77059888877869"
},
{
"currentType": "c4.large",
"name": "ec-io-asop-458",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "35.35591065887449",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002244",
"Environment : Pre-prod",
"Inventory Code : io-asop",
"Owner : Kozak Kor",
"Name : ec-io-asop-458"
]
},
{
"currentType": "t2.large",
"name": "ec-io-dvc-1066",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "11.77042440783698",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ec-io-dvc-1066",
"Inventory Code : io-dvc",
"Owner : Ed Watkins",
"Product Code : PR000642"
]
},
{
"currentType": "standard_ds3",
"name": "st02-db-appx-667",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "122.37801792529295"
},
{
"currentType": "m4.xlarge",
"name": "ex-prepro-jaws-317",
"recommendationType": "Modernize",
"recommendedType": "m5a.xlarge",
"savingsEstimate": "15.898233649414033",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : prepro-jaws",
"Name : ex-prepro-jaws-317",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.hosa_far-210",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Marketing",
"application : Growth",
"owner : Max Machino",
"department : Core"
]
},
{
"currentType": "c4.xlarge",
"name": "ex-prepro-rais-289",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "71.96163070501701",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-rais",
"Name : ex-prepro-rais-289",
"Product Code : PR003755",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "i2.xlarge",
"name": "ec-tst-emsg-527",
"recommendationType": "Downsize",
"recommendedType": "i3.xlarge",
"savingsEstimate": "304.4120573473512",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-tst-emsg-527",
"Inventory Code : tst-emsg",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR001644"
]
},
{
"currentType": "db.r3.large",
"name": "asop-dev-rds-567",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_far-486",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.doop_fet-426",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : WebSphere",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "m3.large",
"name": "PR002117-pro-imco-asg",
"recommendationType": "Downscale",
"recommendedType": "m4.large",
"savingsEstimate": "37.56458133459091",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : pro-imco",
"Name : PR002117-pro-imco-asg",
"Environment : Production",
"ProductCode : PR002117"
]
},
{
"currentType": "c4.large",
"name": "ex-tst-asop-1029",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "33.889200127410874",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-tst-asop-1029",
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Product Code : PR000648",
"Inventory Code : tst-asop"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.coa_xtr-576",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "t2.large",
"name": "ex-prepro-oop-1627",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.629997253417969",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Inventory Code : prepro-oop",
"Name : ex-prepro-oop-1627"
]
},
{
"currentType": "n1-highmem-8",
"name": "gl08.camp_vmx-70",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.xlarge",
"name": "ex-prepro-kotl-587",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.20119943020632",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Name : ex-prepro-kotl-587",
"Environment : Pre-prod",
"Inventory Code : prepro-kotl",
"Product Code : PR000566"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-prepro-dvc-844",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.85757770111086",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002902",
"Inventory Code : prepro-dvc",
"Name : ex-prepro-dvc-844",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "m3.medium",
"name": "ec-prepro-duct-1613",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "24.931544053131073",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-duct",
"Product Code : PR001359",
"Name : ec-prepro-duct-1613",
"Environment : Pre-prod",
"Owner : Kozak Kor"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.mln_sti-184",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "t2.large",
"name": "ex-pro-imco-553",
"recommendationType": "Downsize",
"recommendedType": "t2.medium",
"savingsEstimate": "26.239088585983264",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-imco",
"Environment : Production",
"Product Code : PR003459",
"Name : ex-pro-imco-553",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-dvc-1146",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "12.678483100906305",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ex-pro-dvc-1146",
"Inventory Code : pro-dvc",
"Owner : Francis Robinson",
"Product Code : PR001949"
]
},
{
"currentType": "m3.medium",
"name": "ex-dev-oop-1081",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "23.64353140980529",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Name : ex-dev-oop-1081",
"Inventory Code : dev-oop",
"Product Code : PR000648"
]
},
{
"currentType": "c4.large",
"name": "ex-prepro-kotl-816",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.small",
"savingsEstimate": "46.57979034252931",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002902",
"Environment : Production",
"Name : ex-prepro-kotl-816",
"Inventory Code : prepro-kotl",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_d1_v2",
"name": "st01-pro-imco-350",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "19.417824344421387"
},
{
"currentType": "n1-standard-8",
"name": "gl08.mln_gas-442",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "PR003905-prepro-kotl-asg-0bc08a8dbc823e0",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : PR003905-prepro-kotl-asg-0bc08a8dbc823e0",
"ProductCode : PR003905",
"Environment : Pre-prod",
"InventoryCode : prepro-kotl"
]
},
{
"currentType": "standard_d2",
"name": "st01-pro-oop-288",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "121.47454016528326"
},
{
"currentType": "db.r3.large",
"name": "jaws-prepro-aurora-168",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.mln_gas-496",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "db.r3.large",
"name": "fifo-dev-aurora-684",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-pro-appx-1142",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-appx-1142",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR002117",
"Inventory Code : pro-appx"
]
},
{
"currentType": "c4.large",
"name": "ec-pro-stoc-1162",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "37.32367048690794",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Inventory Code : pro-stoc",
"Environment : Production",
"Name : ec-pro-stoc-1162",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-1",
"name": "gl04.doop_xtr-136",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-prepro-emsg-1200",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-emsg",
"Environment : Production",
"Product Code : PR000464",
"Name : ex-prepro-emsg-1200",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-imco-1298",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.257494929412788",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-imco",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR001674",
"Name : ex-pro-imco-1298"
]
},
{
"currentType": "r3.xlarge",
"name": "ec-prepro-kotl-788",
"recommendationType": "Modernize",
"recommendedType": "r4.xlarge",
"savingsEstimate": "37.96394618588267",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Name : ec-prepro-kotl-788",
"Owner : Kozak Kor",
"Inventory Code : prepro-kotl",
"Product Code : PR003096"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-fifo-824",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.284822248626734",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Environment : Test",
"Name : ex-prepro-fifo-824",
"Owner : Ed Watkins",
"Product Code : PR001720"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.mln_vmx-516",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "db.t2.medium",
"name": "asop-tst-edb-019",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-2",
"name": "gl02.coa_fap-68",
"recommendationType": "Upsize",
"recommendedType": "n1-standard-4",
"savingsEstimate": "-47.6518212478637"
},
{
"currentType": "m4.xlarge",
"name": "ec-io-jaws-627",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-jaws",
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Environment : Pre-prod",
"Name : ec-io-jaws-627"
]
},
{
"currentType": "db.t2.small",
"name": "jaws-pro-aurora-132",
"recommendationType": "Just Right",
"recommendedType": "db.t2.small",
"savingsEstimate": "0.0"
},
{
"currentType": "db.r3.2xlarge",
"name": "asop-pro-aurora-856",
"recommendationType": "Just Right",
"recommendedType": "db.r3.2xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.mln_vmx-392",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "t2.large",
"name": "ec-tst-kotl-1154",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "11.725484616577159",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-tst-kotl-1154",
"Inventory Code : tst-kotl",
"Environment : Pre-prod",
"Product Code : PR002916",
"Owner : Kozak Kor"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-kotl-301",
"recommendationType": "Modernize",
"recommendedType": "t3.medium",
"savingsEstimate": "2.7114485651016",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Product Code : PR003453",
"Name : ec-prepro-kotl-301",
"Inventory Code : prepro-kotl",
"Owner : Ed Watkins"
]
},
{
"currentType": "db.r3.large",
"name": "jaws-prepro-edb-145",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "db.r3.large",
"name": "duct-dev-rdb-407",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.large",
"name": "ec-prepro-kotl-1026",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.707037035522516",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Name : ec-prepro-kotl-1026",
"Environment : Pre-prod",
"Product Code : PR000648",
"Inventory Code : prepro-kotl"
]
},
{
"currentType": "c4.large",
"name": "ex-pro-fifo-235",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "33.62045332481386",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Inventory Code : pro-fifo",
"Name : ex-pro-fifo-235",
"Owner : Kozak Kor",
"Product Code : PR002282"
]
},
{
"currentType": "standard_ds3_v2",
"name": "st02-pro-fifo-600",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.large",
"name": "ex-pro-dvc-1605",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-dvc-1605",
"Inventory Code : pro-dvc",
"Product Code : PR002668",
"Environment : Pre-prod",
"Owner : Kozak Kor"
]
},
{
"currentType": "db.t2.medium",
"name": "fifo-pro-aurora-665",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d1_v2",
"name": "st01-pro-asop-176",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "19.417824344421387"
},
{
"currentType": "c4.large",
"name": "ex-tst-duct-539",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.small",
"savingsEstimate": "44.972395056823736",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Environment : Production",
"Inventory Code : tst-duct",
"Name : ex-tst-duct-539",
"Owner : Irina Yashina"
]
},
{
"currentType": "m3.medium",
"name": "ex-pro-edge-345",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002893",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Name : ex-pro-edge-345",
"Inventory Code : pro-edge"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-kotl-1072",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "14.507177447387658",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-kotl-1072",
"Product Code : PR000414",
"Environment : Production",
"Inventory Code : prepro-kotl",
"Owner : Irina Yashina"
]
},
{
"currentType": "db.r3.xlarge",
"name": "duct-dev-aurora-561",
"recommendationType": "Just Right",
"recommendedType": "db.r3.xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "db.t2.medium",
"name": "asop-pro-mysql-385",
"recommendationType": "Downsize",
"recommendedType": "db.t2.small",
"savingsEstimate": "19.18834115811158"
},
{
"currentType": "t2.medium",
"name": "ex-pro-stoc-386",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-stoc",
"Environment : Test",
"Name : ex-pro-stoc-386",
"Product Code : PR003682",
"Owner : Ed Watkins"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.camp_gas-94",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-jaws-372",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "15.537674403976416",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Name : ec-pro-jaws-372",
"Product Code : PR003990",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.doop_fap-282",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds3_v2_promo",
"name": "st02-pro-jaws-591",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "170.31265335998498"
},
{
"currentType": "n1-standard-4",
"name": "gl04.ttr_xtr-418",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "db.r3.large",
"name": "jaws-tst-edb-163",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.2xlarge",
"name": "ex-io-stoc-1014",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-io-stoc-1014",
"Environment : Production",
"Product Code : PR000464",
"Inventory Code : io-stoc",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.hosa_gas-54",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.camp_gas-510",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "m3.medium",
"name": "ex-io-emsg-882",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Name : ex-io-emsg-882",
"Inventory Code : io-emsg"
]
},
{
"currentType": "standard_d2",
"name": "st01-tst-imco-446",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "51.679996490478516"
},
{
"currentType": "r3.xlarge",
"name": "ex-pro-asop-994",
"recommendationType": "Modernize",
"recommendedType": "r4.xlarge",
"savingsEstimate": "37.890580434082075",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-asop-994",
"Environment : Pre-prod",
"Inventory Code : pro-asop",
"Owner : Kozak Kor",
"Product Code : PR002282"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.ttr_xtr-74",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Advisors",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "ec-io-appx-293",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.257494929412788",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-appx",
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Name : ec-io-appx-293",
"Product Code : PR000648"
]
},
{
"currentType": "m4.large",
"name": "ex-pro-kotl-1410",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.medium",
"savingsEstimate": "33.08940651945493",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-kotl",
"Environment : Pre-prod",
"Name : ex-pro-kotl-1410",
"Product Code : PR003634",
"Owner : Kozak Kor"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-appx-1617",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Name : ec-pro-appx-1617",
"Product Code : PR003080",
"Inventory Code : pro-appx"
]
},
{
"currentType": "m3.medium",
"name": "ec-dev-kotl-920",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "c5.large",
"savingsEstimate": "-10.199267887145979",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-dev-kotl-920",
"Inventory Code : dev-kotl",
"Environment : Production",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "m3.medium",
"name": "ec-pro-dvc-446",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : pro-dvc",
"Product Code : PR002484",
"Owner : Francis Robinson",
"Name : ec-pro-dvc-446"
]
},
{
"currentType": "standard_d1",
"name": "st01-io-dvc-205",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "21.92523811679843"
},
{
"currentType": "t2.small",
"name": "ex-prepro-fifo-1422",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Environment : Production",
"Product Code : PR000464",
"Name : ex-prepro-fifo-1422",
"Owner : Roger Witt"
]
},
{
"currentType": "m3.medium",
"name": "ec-prepro-appx-456",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "24.931544053131073",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-appx-456",
"Environment : Test",
"Product Code : PR003453",
"Inventory Code : prepro-appx",
"Owner : Ed Watkins"
]
},
{
"currentType": "standard_d1_v2",
"name": "st01-pro-asop-331",
"recommendationType": "Just Right",
"recommendedType": "standard_d1_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "c4.xlarge",
"name": "ex-pro-appx-1057",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "41.36370017428592",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Environment : Production",
"Name : ex-pro-appx-1057",
"Inventory Code : pro-appx",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.hosa_vmx-316",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "standard_d1_v2",
"name": "st01-pro-emsg-333",
"recommendationType": "Just Right",
"recommendedType": "standard_d1_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.xlarge",
"name": "mobile-app-user2",
"recommendationType": "Modernize",
"recommendedType": "m5.xlarge",
"savingsEstimate": "5.333084637939464",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Owner : Francis Robinson",
"Name : ec-prepro-kotl-2349",
"Inventory Code : prepro-kotl",
"Product Code : PR000690"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-prepro-jaws-1025",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-prepro-jaws-1025",
"Inventory Code : prepro-jaws",
"Owner : Ed Watkins",
"Product Code : PR004006"
]
},
{
"currentType": "db.t2.small",
"name": "jaws-pro-edb-130",
"recommendationType": "Downsize",
"recommendedType": "db.t2.micro",
"savingsEstimate": "9.614027033279417"
},
{
"currentType": "t2.medium",
"name": "ex-pro-emsg-1042",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-emsg-1042",
"Inventory Code : pro-emsg",
"Environment : Production",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "db.r3.large",
"name": "duct-tst-aurora-660",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-pro-oop-1611",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Product Code : PR002364",
"Inventory Code : pro-oop",
"Owner : Kozak Kor",
"Name : ex-pro-oop-1611"
]
},
{
"currentType": "db.t2.medium",
"name": "jaws-dev-edb-136",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "db.t2.small",
"name": "bion-pro-edb-744",
"recommendationType": "Just Right",
"recommendedType": "db.t2.small",
"savingsEstimate": "0.0"
},
{
"currentType": "r3.xlarge",
"name": "ex-io-jaws-134",
"recommendationType": "Modernize",
"recommendedType": "r4.xlarge",
"savingsEstimate": "38.04220025134273",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-jaws",
"Environment : Test",
"Name : ex-io-jaws-134",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.mln_far-528",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "c4.xlarge",
"name": "ex-tst-fifo-1406",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "m5.large",
"savingsEstimate": "58.48278298107907",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-fifo",
"Environment : Production",
"Name : ex-tst-fifo-1406",
"Owner : Roger Witt",
"Product Code : PR002117"
]
},
{
"currentType": "r3.xlarge",
"name": "ex-prepro-emsg-800",
"recommendationType": "Downsize",
"recommendedType": "r5d.large",
"savingsEstimate": "106.3472735864867",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-emsg",
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Name : ex-prepro-emsg-800",
"Product Code : PR000648"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.camp_gas-480",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-dev-emsg-1054",
"recommendationType": "Not Analyzed",
"recommendedType": "m4.xlarge",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-dev-emsg-1054",
"Inventory Code : dev-emsg",
"Product Code : PR002976",
"Environment : Pre-prod",
"Owner : Kozak Kor"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-tst-emsg-561",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002219",
"Inventory Code : tst-emsg",
"Environment : Production",
"Name : ec-tst-emsg-561",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.large",
"name": "ec-prepro-emsg-432",
"recommendationType": "Downsize",
"recommendedType": "t2.medium",
"savingsEstimate": "22.933375966690072",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-emsg",
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Name : ec-prepro-emsg-432"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-asop-615",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Name : ec-pro-asop-615",
"Inventory Code : pro-asop",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_gas-102",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"application : Load Testing",
"business_unit : Support"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-prepro-jaws-620",
"recommendationType": "Just Right",
"recommendedType": "standard_a2_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.2xlarge",
"name": "ec-dev-kotl-1099",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-kotl",
"Name : ec-dev-kotl-1099",
"Environment : Production",
"Product Code : PR000401",
"Owner : Irina Yashina"
]
},
{
"currentType": "i3.large",
"name": "ec-tst-emsg-1103",
"recommendationType": "Just Right",
"recommendedType": "i3.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-emsg",
"Name : ec-tst-emsg-1103",
"Product Code : PR003755",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-1",
"name": "gl08.ttr_fet-464",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.small",
"name": "ec-prepro-asop-237",
"recommendationType": "Downsize",
"recommendedType": "t2.micro",
"savingsEstimate": "6.471296402839653",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-prepro-asop-237",
"Inventory Code : prepro-asop",
"Owner : Francis Robinson",
"Product Code : PR001368"
]
},
{
"currentType": "t2.medium",
"name": "ec-io-appx-1306",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "12.19170211495977",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-appx",
"Environment : Test",
"Name : ec-io-appx-1306",
"Product Code : PR003453",
"Owner : Ed Watkins"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-kotl-551",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : tst-kotl",
"Name : ex-tst-kotl-551",
"Owner : Ed Watkins",
"Product Code : PR000642"
]
},
{
"currentType": "m4.large",
"name": "ex-pro-imco-1028",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "14.022069038848858",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-imco",
"Name : ex-pro-imco-1028",
"Environment : Production",
"Product Code : PR003404",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ex-io-dvc-918",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-io-dvc-918",
"Inventory Code : io-dvc",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "standard_d2_v2",
"name": "st01-pro-imco-152",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "99.59693235198966"
},
{
"currentType": "standard_a2_v2",
"name": "st02-io-dvc-694",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "db.r3.large",
"name": "bion-pro-io-665",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.small",
"name": "ec-prepro-imco-1122",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-prepro-imco-1122",
"Owner : Francis Robinson",
"Inventory Code : prepro-imco",
"Product Code : PR001795"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.coa_xtr-226",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "33.778412815078624",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support",
"application : Data Warehouse"
]
},
{
"currentType": "c4.2xlarge",
"name": "ex-pro-asop-804",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "161.8212957681273",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-asop-804",
"Product Code : PR002902",
"Inventory Code : pro-asop",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.xlarge",
"name": "ec-prepro-fifo-460",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "10.6778697485046",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Name : ec-prepro-fifo-460",
"Product Code : PR000648"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.mln_vmx-476",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Infrastructure"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-appx-1278",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.231874671768164",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Inventory Code : tst-appx",
"Environment : Pre-prod",
"Name : ex-tst-appx-1278"
]
},
{
"currentType": "t2.small",
"name": "ec-prepro-fifo-1063",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Name : ec-prepro-fifo-1063",
"Product Code : PR003563",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.ttr_clt-398",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Marketing",
"application : Leads",
"owner : Max Machino",
"department : Core"
]
},
{
"currentType": "t2.large",
"name": "ex-tst-rais-3060",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.947145319702104",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-rais",
"Product Code : PR002976",
"Environment : Pre-prod",
"Name : ex-tst-rais-3060",
"Owner : Kozak Kor"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_far-204",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Infrastructure"
]
},
{
"currentType": "standard_d1",
"name": "st01-pro-appx-345",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "21.891646828796365"
},
{
"currentType": "m4.large",
"name": "ec-pro-dvc-311",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000560",
"Environment : Test",
"Inventory Code : pro-dvc",
"Name : ec-pro-dvc-311",
"Owner : Ed Watkins"
]
},
{
"currentType": "t2.medium",
"name": "ex-io-fifo-1910",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002976",
"Environment : Pre-prod",
"Inventory Code : io-fifo",
"Owner : Kozak Kor",
"Name : ex-io-fifo-1910"
]
},
{
"currentType": "t2.small",
"name": "ex-tst-dvc-122",
"recommendationType": "Downsize",
"recommendedType": "t3.micro",
"savingsEstimate": "7.15576048110961",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Product Code : PR003634",
"Name : ex-tst-dvc-122",
"Owner : Kozak Kor",
"Inventory Code : tst-dvc"
]
},
{
"currentType": "db.t2.medium",
"name": "jaws-prepro-edb-174",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "db.r3.large",
"name": "duct-pro-aurora-893",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.medium",
"name": "ex-tst-rais-633",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "23.707770427444483",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-rais",
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Name : ex-tst-rais-633",
"Environment : Pre-prod"
]
},
{
"currentType": "t2.xlarge",
"name": "ex-tst-kotl-1148",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "41.223405287170316",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : tst-kotl",
"Name : ex-tst-kotl-1148",
"Environment : Pre-prod"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.hosa_sti-454",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "70.21463181341532",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-jaws-547",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "11.011581133666914",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-pro-jaws-547",
"Owner : Francis Robinson",
"Product Code : PR001935",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-asop-1180",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.257494929412788",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002902",
"Name : ex-tst-asop-1180",
"Environment : Production",
"Inventory Code : tst-asop",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.coa_xtr-482",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "m3.large",
"name": "ex-prepro-kotl-1091",
"recommendationType": "Modernize",
"recommendedType": "m5a.large",
"savingsEstimate": "31.33188966580201",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-kotl-1091",
"Environment : Pre-prod",
"Product Code : PR002364",
"Owner : Kozak Kor",
"Inventory Code : prepro-kotl"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-prepro-imco-1023",
"recommendationType": "Modernize",
"recommendedType": "m5.xlarge",
"savingsEstimate": "4.8425248564453796",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR003377",
"Environment : Pre-prod",
"Name : ex-prepro-imco-1023",
"Inventory Code : prepro-imco",
"Owner : Kozak Kor"
]
},
{
"currentType": "db.r4.large",
"name": "fifo-pro-aurora-126",
"recommendationType": "Not Analyzed",
"recommendedType": "db.r4.large",
"savingsEstimate": "0.0"
},
{
"currentType": "db.r4.large",
"name": "fifo-pro-aurora-627",
"recommendationType": "Not Analyzed",
"recommendedType": "db.r4.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-pro-jaws-564",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002154",
"Environment : Pre-prod",
"Name : ex-pro-jaws-564",
"Owner : Kozak Kor",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "r3.2xlarge",
"name": "ec-prepro-rais-3046",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "120.69135837832698",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-rais",
"Environment : Production",
"Name : ec-prepro-rais-3046",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "db.t2.medium",
"name": "jaws-dev-aurora-144",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds2_v2",
"name": "st02-db-asop-614",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "114.1665966843412"
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-fifo-462",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-fifo-462",
"Product Code : PR001744",
"Environment : Test",
"Inventory Code : pro-fifo",
"Owner : Ed Watkins"
]
},
{
"currentType": "t2.small",
"name": "PR000464-pro-bion-asg",
"recommendationType": "Downsize",
"recommendedType": "t2.micro",
"savingsEstimate": "46.16616942691803",
"divider": "------------------------",
"Resource Tags": [
"ProductCode : PR000464",
"Environment : Production",
"InventoryCode : pro-bion",
"Name : PR000464-pro-bion-asg"
]
},
{
"currentType": "standard_ds3",
"name": "st02-db-asop-668",
"recommendationType": "Modernize",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "16.997391723663313"
},
{
"currentType": "t2.medium",
"name": "ec-dev-fifo-774",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Inventory Code : dev-fifo",
"Name : ec-dev-fifo-774",
"Environment : Pre-prod",
"Product Code : PR000648"
]
},
{
"currentType": "t2.medium",
"name": "ec-dev-asop-1256",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Product Code : PR002561",
"Name : ec-dev-asop-1256",
"Inventory Code : dev-asop",
"Owner : Ed Watkins"
]
},
{
"currentType": "c4.large",
"name": "ex-prepro-fifo-1242",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "36.27146314140322",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Product Code : PR000252",
"Name : ex-prepro-fifo-1242",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "basic_a3",
"name": "st01-prepro-jaws-422",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "57.477383917007536"
},
{
"currentType": "n1-standard-4",
"name": "gl08.camp_gas-164",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.coa_fet-326",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl04.mln_vmx-342",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.small",
"name": "ec-dev-imco-275",
"recommendationType": "Modernize",
"recommendedType": "t3.small",
"savingsEstimate": "1.2578934326476883",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR003563",
"Name : ec-dev-imco-275",
"Environment : Production",
"Owner : Roger Witt",
"Inventory Code : dev-imco"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-prepro-fifo-1104",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "41.93032287805167",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR003096",
"Name : ex-prepro-fifo-1104"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.ttr_fap-582",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "db.r3.large",
"name": "jaws-pro-edb-133",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "c4.large",
"name": "ex-io-dvc-886",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "36.695078273315445",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-io-dvc-886",
"Product Code : PR003682",
"Inventory Code : io-dvc",
"Owner : Ed Watkins"
]
},
{
"currentType": "db.t2.medium",
"name": "bion-tst-aurora-360",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d2",
"name": "st01-prepro-kotl-161",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.78329365759273"
},
{
"currentType": "db.t2.medium",
"name": "duct-dev-io-150",
"recommendationType": "Downsize",
"recommendedType": "db.t2.micro",
"savingsEstimate": "31.104205933399207"
},
{
"currentType": "t2.large",
"name": "ec-dev-imco-1158",
"recommendationType": "Downsize",
"recommendedType": "t3.medium",
"savingsEstimate": "28.251717180328413",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Name : ec-dev-imco-1158",
"Owner : Kozak Kor",
"Inventory Code : dev-imco",
"Product Code : PR003905"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.doop_xtr-124",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support",
"application : Data Warehouse"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.hosa_vmx-356",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.coa_clt-230",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.small",
"name": "ex-tst-edge-351",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Inventory Code : tst-edge",
"Environment : Pre-prod",
"Name : ex-tst-edge-351",
"Product Code : PR000566"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.doop_clt-80",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-standard-2",
"name": "gl02.camp_far-490",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-2",
"savingsEstimate": "0.0"
},
{
"currentType": "c4.xlarge",
"name": "mobile-web-stream1",
"recommendationType": "Downsize",
"recommendedType": "c5.large",
"savingsEstimate": "64.72851890066522",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-kotl",
"Product Code : PR003377",
"Environment : Pre-prod",
"Name : ex-io-kotl-1012",
"Owner : Kozak Kor"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.hosa_gas-428",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "mobile-web-stream2",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : prepro-edge",
"Name : ex-prepro-edge-1178",
"Owner : Ed Watkins",
"Product Code : PR000642"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-imco-470",
"recommendationType": "Downsize",
"recommendedType": "t3.medium",
"savingsEstimate": "28.804794390777534",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : pro-imco",
"Product Code : PR002988",
"Name : ec-pro-imco-470",
"Owner : Ed Watkins"
]
},
{
"currentType": "db.t2.medium",
"name": "asop-prepro-mysql-193",
"recommendationType": "Downsize",
"recommendedType": "db.t2.small",
"savingsEstimate": "19.228054066558833"
},
{
"currentType": "t2.large",
"name": "ec-tst-emsg-1216",
"recommendationType": "Downsize",
"recommendedType": "t3.medium",
"savingsEstimate": "26.91387060258494",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-emsg",
"Environment : Test",
"Name : ec-tst-emsg-1216",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "t2.large",
"name": "ex-pro-stoc-112",
"recommendationType": "Downsize",
"recommendedType": "t3.medium",
"savingsEstimate": "28.950537151084863",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Inventory Code : pro-stoc",
"Environment : Pre-prod",
"Name : ex-pro-stoc-112",
"Product Code : PR000648"
]
},
{
"currentType": "m4.large",
"name": "ex-pro-jaws-438",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-pro-jaws-438",
"Product Code : PR003682",
"Owner : Ed Watkins",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "db.r3.large",
"name": "bion-tst-io-557",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.large",
"name": "ec-tst-edge-1937",
"recommendationType": "Downsize",
"recommendedType": "t3.medium",
"savingsEstimate": "28.74500102700811",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : tst-edge",
"Name : ec-tst-edge-1937",
"Owner : Ed Watkins",
"Product Code : PR001720"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-jaws-1006",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR003439",
"Name : ec-pro-jaws-1006",
"Environment : Production",
"Owner : Roger Witt",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-dev-stoc-2361",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "m5.2xlarge",
"savingsEstimate": "83.86063391223084",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Inventory Code : dev-stoc",
"Name : ec-dev-stoc-2361"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-appx-806",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "17.00229197886656",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Name : ex-prepro-appx-806",
"Environment : Pre-prod",
"Inventory Code : prepro-appx",
"Product Code : PR000566"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.doop_clt-446",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.camp_far-352",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.large",
"name": "ec-tst-asop-440",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.552957471313421",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000560",
"Environment : Test",
"Name : ec-tst-asop-440",
"Inventory Code : tst-asop",
"Owner : Ed Watkins"
]
},
{
"currentType": "c4.large",
"name": "PR002916-prepro-fifo-asg-0bc059f9bc10a10",
"recommendationType": "Modernize",
"recommendedType": "c5.large",
"savingsEstimate": "9.017325461196888",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : prepro-fifo",
"Environment : Pre-prod",
"ProductCode : PR002916",
"Name : PR002916-prepro-fifo-asg-0bc059f9bc10a10"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-prepro-fifo-784",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.85757770111086",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Name : ec-prepro-fifo-784",
"Environment : Test",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "standard_ds3",
"name": "st02-edb-emsg-561",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_e2s_v3",
"savingsEstimate": "93.77871739395137"
},
{
"currentType": "t2.small",
"name": "ex-dev-duct-1230",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-duct",
"Name : ex-dev-duct-1230",
"Product Code : PR003557",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "m4.large",
"name": "ec-prepro-jaws-1188",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "16.592268269805935",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR003538",
"Environment : Production",
"Inventory Code : prepro-jaws",
"Owner : Roger Witt",
"Name : ec-prepro-jaws-1188"
]
},
{
"currentType": "standard_a1_v2",
"name": "st01-dev-duct-148",
"recommendationType": "Just Right",
"recommendedType": "standard_a1_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.large",
"name": "ec-pro-edge-1136",
"recommendationType": "Downsize",
"recommendedType": "t2.medium",
"savingsEstimate": "26.28989410119626",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-pro-edge-1136",
"Product Code : PR002484",
"Owner : Francis Robinson",
"Inventory Code : pro-edge"
]
},
{
"currentType": "standard_d1_v2",
"name": "st01-pro-stoc-190",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "19.417824344421387"
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_gas-126",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.coa_xtr-6",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.doop_clt-512",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Infrastructure"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-fifo-786",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Name : ec-prepro-fifo-786",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR003577"
]
},
{
"currentType": "t2.large",
"name": "ex-prepro-emsg-868",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.986948994873092",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-emsg",
"Environment : Pre-prod",
"Name : ex-prepro-emsg-868",
"Owner : Kozak Kor",
"Product Code : PR003096"
]
},
{
"currentType": "db.r3.large",
"name": "asop-dev-edb-507",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.xlarge",
"name": "ec-prepro-fifo-1262",
"recommendationType": "Modernize",
"recommendedType": "m5a.xlarge",
"savingsEstimate": "14.996830352661199",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Name : ec-prepro-fifo-1262",
"Environment : Test",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "standard_d3",
"name": "st01-pro-bion-474",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "87.95550505203254"
},
{
"currentType": "m4.2xlarge",
"name": "ec-prepro-duct-1434",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "162.62166941250615",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-duct",
"Name : ec-prepro-duct-1434",
"Environment : Production",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-prepro-fifo-856",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.21988049194333",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Name : ex-prepro-fifo-856"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-kotl-550",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.39807888629148",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-kotl",
"Environment : Pre-prod",
"Name : ex-pro-kotl-550",
"Product Code : PR002916",
"Owner : Kozak Kor"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-pro-kotl-361",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-kotl-361",
"Inventory Code : pro-kotl",
"Environment : Test",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.coa_xtr-336",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "c3.xlarge",
"name": "ec-pro-bion-1024",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.large",
"savingsEstimate": "70.4073290525208",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Product Code : PR002124",
"Owner : Francis Robinson",
"Inventory Code : pro-bion",
"Name : ec-pro-bion-1024"
]
},
{
"currentType": "n1-highmem-8",
"name": "gl08.hosa_far-348",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "r3.large",
"name": "ex-pro-stoc-249",
"recommendationType": "Modernize",
"recommendedType": "r5a.large",
"savingsEstimate": "30.09308342663571",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-stoc",
"Name : ex-pro-stoc-249",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR003064"
]
},
{
"currentType": "t2.medium",
"name": "ex-io-kotl-353",
"recommendationType": "Modernize",
"recommendedType": "t3.medium",
"savingsEstimate": "3.196198247528082",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-kotl",
"Product Code : PR002244",
"Name : ex-io-kotl-353",
"Environment : Pre-prod",
"Owner : Kozak Kor"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.doop_clt-88",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-kotl-347",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "41.93032287805167",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-kotl",
"Environment : Production",
"Product Code : PR000464",
"Name : ex-pro-kotl-347",
"Owner : Roger Witt"
]
},
{
"currentType": "c3.4xlarge",
"name": "ec-prepro-emsg-790",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r4.xlarge",
"savingsEstimate": "325.91376607641575",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-emsg",
"Product Code : PR000560",
"Environment : Test",
"Name : ec-prepro-emsg-790",
"Owner : Ed Watkins"
]
},
{
"currentType": "db.r3.xlarge",
"name": "duct-prepro-aurora-929",
"recommendationType": "Just Right",
"recommendedType": "db.r3.xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.small",
"name": "ex-pro-oop-1438",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Name : ex-pro-oop-1438",
"Environment : Production",
"Inventory Code : pro-oop",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.medium",
"name": "ex-dev-duct-452",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-duct",
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Name : ex-dev-duct-452",
"Environment : Pre-prod"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-dvc-1020",
"recommendationType": "Modernize",
"recommendedType": "t3.medium",
"savingsEstimate": "2.7222984737396474",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-pro-dvc-1020",
"Inventory Code : pro-dvc",
"Product Code : PR002484",
"Owner : Francis Robinson"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-tst-emsg-327",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "130.27301831991588",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Inventory Code : tst-emsg",
"Environment : Production",
"Name : ec-tst-emsg-327",
"Owner : Irina Yashina"
]
},
{
"currentType": "db.t2.medium",
"name": "duct-prepro-edb-375",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.2xlarge",
"name": "ex-prepro-kotl-1120",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.40239886041265",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Inventory Code : prepro-kotl",
"Name : ex-prepro-kotl-1120",
"Product Code : PR001654"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-fifo-577",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Product Code : PR002124",
"Inventory Code : pro-fifo",
"Name : ec-pro-fifo-577",
"Owner : Francis Robinson"
]
},
{
"currentType": "standard_d13_v2",
"name": "st02-prepro-jaws-504",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b16ms",
"savingsEstimate": "116.05114968145732"
},
{
"currentType": "standard_d1",
"name": "st01-prepro-kotl-427",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "21.17329519300838"
},
{
"currentType": "t2.medium",
"name": "ec-dev-asop-950",
"recommendationType": "Not Analyzed",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Name : ec-dev-asop-950",
"Owner : James Pillsbury",
"Product Code : PR003080",
"Inventory Code : dev-asop"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-fifo-1045",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Product Code : PR000502",
"Name : ec-prepro-fifo-1045",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_gas-306",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.mln_gas-366",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "34.63578736973577",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.camp_sti-566",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "standard_d3",
"name": "st01-io-dvc-367",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_a2m_v2",
"savingsEstimate": "116.88818025476067"
},
{
"currentType": "standard_d1",
"name": "st01-tst-emsg-434",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "25.839998245239258"
},
{
"currentType": "m4.xlarge",
"name": "PR000282-tst-emsg-asg",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "227.9941994860701",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : tst-emsg",
"Environment : Test",
"Name : PR000282-tst-emsg-asg",
"ProductCode : PR000282"
]
},
{
"currentType": "i3.2xlarge",
"name": "ec-tst-dvc-661",
"recommendationType": "Just Right",
"recommendedType": "i3.2xlarge",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Name : ec-tst-dvc-661",
"Environment : Production",
"Inventory Code : tst-dvc",
"Owner : Irina Yashina"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-prepro-fifo-523",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "n1-standard-8",
"name": "gl02.ttr_fet-346",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "db.m4.large",
"name": "duct-dev-rdb-880",
"recommendationType": "Just Right",
"recommendedType": "db.m4.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.medium",
"name": "ec-io-emsg-1900",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Name : ec-io-emsg-1900",
"Environment : Pre-prod",
"Inventory Code : io-emsg"
]
},
{
"currentType": "t2.medium",
"name": "ec-tst-imco-1408",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-tst-imco-1408",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR001644",
"Inventory Code : tst-imco"
]
},
{
"currentType": "t2.medium",
"name": "ec-tst-emsg-647",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-emsg",
"Name : ec-tst-emsg-647",
"Product Code : PR001744",
"Environment : Test",
"Owner : Ed Watkins"
]
},
{
"currentType": "t2.small",
"name": "ex-pro-kotl-1290",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-kotl",
"Product Code : PR003755",
"Environment : Production",
"Name : ex-pro-kotl-1290",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_ds2_v2",
"name": "st02-tst-oop-608",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "114.1665966843412"
},
{
"currentType": "m4.xlarge",
"name": "ex-tst-edge-1631",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.20119943020632",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : tst-edge",
"Product Code : PR001564",
"Name : ex-tst-edge-1631",
"Owner : Ed Watkins"
]
},
{
"currentType": "standard_d4",
"name": "st01-pro-stoc-349",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "575.3869926133426"
},
{
"currentType": "t2.medium",
"name": "PR001379-pro-bion-asg-0bc04ecdbc3fe30",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : PR001379-pro-bion-asg-0bc04ecdbc3fe30",
"ProductCode : PR001379",
"Environment : Production",
"InventoryCode : pro-bion"
]
},
{
"currentType": "standard_d13_v2",
"name": "st02-pro-stoc-565",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b16ms",
"savingsEstimate": "116.28240791198797"
},
{
"currentType": "t2.large",
"name": "ec-io-asop-1037",
"recommendationType": "Downsize",
"recommendedType": "t3.medium",
"savingsEstimate": "28.0274977684021",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : io-asop",
"Name : ec-io-asop-1037",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "m4.xlarge",
"name": "ea-pro-jaws-880",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : dev-edge",
"Owner : Francis Robinson",
"Name : ec-dev-edge-529",
"Product Code : PR001795"
]
},
{
"currentType": "standard_d1",
"name": "st01-prepro-kotl-456",
"recommendationType": "Just Right",
"recommendedType": "standard_d1",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d2",
"name": "st01-prepro-oop-418",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.85047623359686"
},
{
"currentType": "m4.2xlarge",
"name": "ec-io-fifo-519",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.59293080499279",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-io-fifo-519",
"Environment : Production",
"Inventory Code : io-fifo",
"Owner : Roger Witt",
"Product Code : PR001644"
]
},
{
"currentType": "t2.small",
"name": "ex-pro-appx-3062",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR003755",
"Environment : Production",
"Name : ex-pro-appx-3062",
"Owner : Roger Witt",
"Inventory Code : pro-appx"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.coa_xtr-22",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.large",
"name": "ec-prepro-asop-546",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : prepro-asop",
"Environment : Pre-prod",
"Name : ec-prepro-asop-546"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.doop_fap-362",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.camp_gas-2",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Advisors",
"department : Core"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-pro-asop-540",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "z1d.large",
"savingsEstimate": "7.932765228210482",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-asop",
"Product Code : PR003557",
"Environment : Production",
"Name : ec-pro-asop-540",
"Owner : Roger Witt"
]
},
{
"currentType": "r3.xlarge",
"name": "ex-tst-dvc-1144",
"recommendationType": "Modernize",
"recommendedType": "r4.xlarge",
"savingsEstimate": "37.96394618588267",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-tst-dvc-1144",
"Environment : Production",
"Inventory Code : tst-dvc",
"Owner : Roger Witt",
"Product Code : PR001644"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-prepro-rais-1266",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : prepro-rais",
"Owner : Francis Robinson",
"Name : ec-prepro-rais-1266",
"Product Code : PR000690"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-edge-3050",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.629997253417969",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-pro-edge-3050",
"Owner : Francis Robinson",
"Product Code : PR001949",
"Inventory Code : pro-edge"
]
},
{
"currentType": "m4.large",
"name": "PR003557-pro-asop-asg-0bc07c87bc7e350",
"recommendationType": "Downscale",
"recommendedType": "m4.large",
"savingsEstimate": "24.079860627651215",
"divider": "------------------------",
"Resource Tags": [
"Name : PR003557-pro-asop-asg-0bc07c87bc7e350",
"InventoryCode : pro-asop",
"Environment : Production",
"ProductCode : PR003557"
]
},
{
"currentType": "t2.large",
"name": "ex-tst-oop-1036",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.966405510131736",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Product Code : PR003704",
"Inventory Code : tst-oop",
"Owner : James Pillsbury",
"Name : ex-tst-oop-1036"
]
},
{
"currentType": "n1-highmem-8",
"name": "gl08.coa_clt-420",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.coa_xtr-168",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "standard_d3",
"name": "st01-pro-jaws-123",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "76.76023022567738"
},
{
"currentType": "m4.large",
"name": "ex-prepro-kotl-810",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "14.022069038848858",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Inventory Code : prepro-kotl",
"Name : ex-prepro-kotl-810",
"Product Code : PR001654"
]
},
{
"currentType": "m3.medium",
"name": "ex-io-expl-138",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-expl",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR001644",
"Name : ex-io-expl-138"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-io-dvc-323",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "c5.xlarge",
"savingsEstimate": "16.998781785888713",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Name : ex-io-dvc-323",
"Environment : Pre-prod",
"Inventory Code : io-dvc"
]
},
{
"currentType": "i2.xlarge",
"name": "ec-pro-asop-333",
"recommendationType": "Downsize",
"recommendedType": "i3.xlarge",
"savingsEstimate": "307.17655535058583",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : pro-asop",
"Name : ec-pro-asop-333",
"Owner : Ed Watkins",
"Product Code : PR003864"
]
},
{
"currentType": "standard_d1",
"name": "st01-prepro-expl-132",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "21.891646828796365"
},
{
"currentType": "standard_d1",
"name": "st01-tst-dvc-313",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "21.17329519300838"
},
{
"currentType": "t2.medium",
"name": "ex-tst-imco-1075",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-tst-imco-1075",
"Owner : Ed Watkins",
"Inventory Code : tst-imco",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.camp_gas-432",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.88111823696876",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "db.m4.4xlarge",
"name": "jaws-pro-edb-169",
"recommendationType": "Upsize",
"recommendedType": "db.m4.10xlarge",
"savingsEstimate": "-2052.312065382935"
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_vmx-58",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Infrastructure"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.camp_sti-540",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-highmem-8",
"name": "gl02.doop_xtr-440",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.medium",
"name": "ec-tst-oop-335",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : tst-oop",
"Name : ec-tst-oop-335",
"Environment : Pre-prod"
]
},
{
"currentType": "standard_d13_v2_promo",
"name": "st02-edb-asop-646",
"recommendationType": "Modernize",
"recommendedType": "standard_e8_v3",
"savingsEstimate": "139.18652302520815"
},
{
"currentType": "t2.small",
"name": "ex-io-oop-1619",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : io-oop",
"Name : ex-io-oop-1619",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "m3.medium",
"name": "ex-dev-emsg-940",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "24.98293477713014",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : dev-emsg",
"Owner : Francis Robinson",
"Product Code : PR001795",
"Name : ex-dev-emsg-940"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-appx-1436",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-appx",
"Environment : Production",
"Product Code : PR000401",
"Name : ex-tst-appx-1436",
"Owner : Irina Yashina"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-tst-asop-331",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.large",
"savingsEstimate": "71.94238424197393",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-tst-asop-331",
"Inventory Code : tst-asop",
"Owner : Ed Watkins",
"Product Code : PR001720"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-asop-772",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.71182131774898",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : pro-asop",
"Owner : Ed Watkins",
"Name : ex-pro-asop-772",
"Product Code : PR000642"
]
},
{
"currentType": "db.r3.2xlarge",
"name": "asop-pro-aurora-201",
"recommendationType": "Just Right",
"recommendedType": "db.r3.2xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ec-tst-kotl-3032",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "11.20960222901922",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-kotl",
"Environment : Production",
"Product Code : PR003770",
"Owner : Roger Witt",
"Name : ec-tst-kotl-3032"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-jaws-601",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Name : ec-pro-jaws-601",
"Environment : Production",
"Inventory Code : pro-jaws",
"Owner : Irina Yashina"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-pro-fifo-556",
"recommendationType": "Just Right",
"recommendedType": "standard_a2_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-32",
"name": "gl08.camp_vmx-310",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-32",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d2_v2",
"name": "st01-dev-kotl-413",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "standard_f4s_v2",
"savingsEstimate": "-48.39110714758281"
},
{
"currentType": "db.m4.large",
"name": "asop-tst-rds-108",
"recommendationType": "Just Right",
"recommendedType": "db.m4.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.xlarge",
"name": "ea-dev-asop-978",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.20119943020632",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-prepro-jaws-880",
"Owner : Francis Robinson",
"Inventory Code : prepro-jaws",
"Product Code : PR001795"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.ttr_xtr-50",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "standard_ds3_v2",
"name": "st02-edb-kotl-519",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-dev-duct-1004",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.99535079159541",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-duct",
"Product Code : PR000502",
"Name : ex-dev-duct-1004",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_sti-412",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "67.16659758721944",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support",
"application : Data Warehouse"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.mln_sti-100",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0"
},
{
"currentType": "c4.xlarge",
"name": "PR003634-prepro-kotl-asg-0bc03a24bcfc980",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "109.67337166490802",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"InventoryCode : prepro-kotl",
"Name : PR003634-prepro-kotl-asg-0bc03a24bcfc980",
"ProductCode : PR003634"
]
},
{
"currentType": "standard_d2",
"name": "st01-tst-rais-200",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.85047623359686"
},
{
"currentType": "standard_ds3",
"name": "st02-prepro-rais-651",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_e2s_v3",
"savingsEstimate": "93.96559275283828"
},
{
"currentType": "t2.medium",
"name": "mobile-svc-stage1",
"recommendationType": "Upsize",
"recommendedType": "t3a.large",
"savingsEstimate": "-19.278202992843582",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-asop",
"Environment : Production",
"Product Code : PR003459",
"Name : ex-prepro-asop-1070",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ec-tst-oop-1424",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : tst-oop",
"Name : ec-tst-oop-1424",
"Product Code : PR002124",
"Owner : Francis Robinson"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-tst-duct-605",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "n1-standard-8",
"name": "gl02.coa_fap-402",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0"
},
{
"currentType": "db.t2.medium",
"name": "fifo-pro-aurora-607",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-dev-emsg-1432",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.611050836227369",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : dev-emsg",
"Owner : Francis Robinson",
"Product Code : PR000690",
"Name : ex-dev-emsg-1432"
]
},
{
"currentType": "standard_d1",
"name": "st01-pro-kotl-458",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "basic_a1",
"savingsEstimate": "33.44786784484866"
},
{
"currentType": "t2.medium",
"name": "ex-pro-appx-392",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Production",
"Product Code : PR003770",
"Name : ex-pro-appx-392",
"Owner : Roger Witt",
"Inventory Code : pro-appx"
]
},
{
"currentType": "i3.large",
"name": "ec-pro-jaws-388",
"recommendationType": "Just Right",
"recommendedType": "i3.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Environment : Pre-prod",
"Inventory Code : pro-jaws",
"Name : ec-pro-jaws-388"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-tst-emsg-233",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "c5.xlarge",
"savingsEstimate": "17.03382091949461",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-emsg",
"Environment : Pre-prod",
"Product Code : PR003634",
"Owner : Kozak Kor",
"Name : ex-tst-emsg-233"
]
},
{
"currentType": "db.t2.large",
"name": "asop-prepro-rdb-206",
"recommendationType": "Just Right",
"recommendedType": "db.t2.large",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d3_v2_promo",
"name": "st01-prepro-kotl-469",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_a2m_v2",
"savingsEstimate": "107.77646521347052"
},
{
"currentType": "r4.2xlarge",
"name": "ec-tst-imco-898",
"recommendationType": "Downsize",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "173.74495320275892",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Name : ec-tst-imco-898",
"Product Code : PR003990",
"Inventory Code : tst-imco"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.hosa_gas-388",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.ttr_fap-354",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"application : Load Testing",
"business_unit : Support"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.doop_fet-600",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "m3.medium",
"name": "ex-prepro-expl-591",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "c5.large",
"savingsEstimate": "-10.22029136486817",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-expl-591",
"Product Code : PR003563",
"Environment : Production",
"Owner : Roger Witt",
"Inventory Code : prepro-expl"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.coa_xtr-436",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "35.96215621589654"
},
{
"currentType": "c4.large",
"name": "PR003755-pro-bion-asg-0bc0944fbc16a90035c0",
"recommendationType": "Downscale",
"recommendedType": "c5.large",
"savingsEstimate": "54.86774519287769",
"divider": "------------------------",
"Resource Tags": [
"Name : PR003755-pro-bion-asg-0bc0944fbc16a90035c0",
"Environment : Production",
"ProductCode : PR003755",
"InventoryCode : pro-bion"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-pro-emsg-1220",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.42351453979499",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-emsg-1220",
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Inventory Code : pro-emsg",
"Product Code : PR000566"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-edge-930",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.679369785812451",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : prepro-edge",
"Name : ex-prepro-edge-930",
"Owner : Ed Watkins",
"Product Code : PR004006"
]
},
{
"currentType": "standard_d1",
"name": "st01-prepro-imco-348",
"recommendationType": "Just Right",
"recommendedType": "standard_d1",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-1",
"name": "gl04.mln_gas-372",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.small",
"name": "ec-pro-bion-2355",
"recommendationType": "Downsize",
"recommendedType": "t2.micro",
"savingsEstimate": "6.471296402839653",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Owner : Francis Robinson",
"Product Code : PR001356",
"Inventory Code : pro-bion",
"Name : ec-pro-bion-2355"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.mln_vmx-450",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.hosa_gas-14",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "34.159469104507295",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.doop_clt-324",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-pro-rais-1156",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.71182131774898",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-rais-1156",
"Environment : Pre-prod",
"Product Code : PR002699",
"Inventory Code : pro-rais",
"Owner : Kozak Kor"
]
},
{
"currentType": "standard_d2",
"name": "st01-prepro-rais-123",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.72127624237066"
},
{
"currentType": "t2.medium",
"name": "ex-io-dvc-512",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001359",
"Environment : Pre-prod",
"Name : ex-io-dvc-512",
"Owner : Kozak Kor",
"Inventory Code : io-dvc"
]
},
{
"currentType": "standard_d13_v2",
"name": "st02-io-dvc-650",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b12ms",
"savingsEstimate": "242.54868794281035"
},
{
"currentType": "t2.large",
"name": "ec-prepro-appx-501",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.986948994873092",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-appx-501",
"Environment : Test",
"Inventory Code : prepro-appx",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "db.r4.large",
"name": "duct-prepro-aurora-102",
"recommendationType": "Not Analyzed",
"recommendedType": "db.r4.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ec-pro-emsg-1214",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : pro-emsg",
"Name : ec-pro-emsg-1214",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-asop-1244",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-asop",
"Name : ec-pro-asop-1244",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR003592"
]
},
{
"currentType": "standard_d3_v2_promo",
"name": "st01-pro-bion-256",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_a2m_v2",
"savingsEstimate": "107.61134270654293"
},
{
"currentType": "t2.medium",
"name": "ex-io-dvc-1250",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.257494929412788",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-io-dvc-1250",
"Environment : Production",
"Inventory Code : io-dvc",
"Product Code : PR000401",
"Owner : Irina Yashina"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-io-fifo-528",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "c5.xlarge",
"savingsEstimate": "16.898041979370173",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-io-fifo-528",
"Product Code : PR000414",
"Environment : Production",
"Inventory Code : io-fifo",
"Owner : Irina Yashina"
]
},
{
"currentType": "r4.2xlarge",
"name": "mobile-app-cont2",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.33007686645491",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Inventory Code : pro-emsg",
"Name : ec-pro-emsg-902"
]
},
{
"currentType": "t2.large",
"name": "ex-pro-appx-321",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "10.254021153808571",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-appx-321",
"Product Code : PR003119",
"Environment : Production",
"Owner : Roger Witt",
"Inventory Code : pro-appx"
]
},
{
"currentType": "t2.medium",
"name": "ex-dev-kotl-251",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "14.88521853187558",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Name : ex-dev-kotl-251",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Inventory Code : dev-kotl"
]
},
{
"currentType": "m4.2xlarge",
"name": "ex-prepro-kotl-870",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.40239886041265",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-kotl-870",
"Environment : Production",
"Inventory Code : prepro-kotl",
"Product Code : PR000401",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.small",
"name": "ec-prepro-expl-1128",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002219",
"Environment : Production",
"Name : ec-prepro-expl-1128",
"Owner : Roger Witt",
"Inventory Code : prepro-expl"
]
},
{
"currentType": "standard_a3",
"name": "st01-pro-rais-266",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_d2_v3",
"savingsEstimate": "72.52337456301902"
},
{
"currentType": "standard_ds3_v2",
"name": "st02-tst-kotl-609",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-2",
"name": "gl02.ttr_xtr-390",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-2",
"savingsEstimate": "0.0"
},
{
"currentType": "db.r3.large",
"name": "asop-tst-aurora-161",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.large",
"name": "PR000690-dev-duct-asg",
"recommendationType": "Downscale",
"recommendedType": "m5.large",
"savingsEstimate": "80.30911975328127",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"ProductCode : PR000690",
"Name : PR000690-dev-duct-asg",
"InventoryCode : dev-duct"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.coa_xtr-232",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "db.r3.2xlarge",
"name": "jaws-tst-edb-166",
"recommendationType": "Just Right",
"recommendedType": "db.r3.2xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ec-dev-duct-794",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-duct",
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Environment : Pre-prod",
"Name : ec-dev-duct-794"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-kotl-1418",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "18.357128872985776",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : pro-kotl",
"Name : ex-pro-kotl-1418",
"Owner : Francis Robinson",
"Product Code : PR001368"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-tst-asop-584",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "45.94996715641784"
},
{
"currentType": "standard_ds3_v2",
"name": "st02-prepro-appx-565",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ec-pro-jaws-376",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000560",
"Environment : Test",
"Name : ec-pro-jaws-376",
"Owner : Ed Watkins",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "t2.small",
"name": "ex-tst-kotl-1629",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-kotl",
"Name : ex-tst-kotl-1629",
"Environment : Pre-prod",
"Product Code : PR003634",
"Owner : Kozak Kor"
]
},
{
"currentType": "t2.2xlarge",
"name": "ec-pro-duct-2353",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "82.27721475524945",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-duct",
"Name : ec-pro-duct-2353",
"Environment : Production",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "db.t2.medium",
"name": "mobile-svc-mysql-db",
"recommendationType": "Downsize",
"recommendedType": "db.t2.small",
"savingsEstimate": "19.228054066558833"
},
{
"currentType": "t2.medium",
"name": "ec-tst-edge-1047",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : tst-edge",
"Name : ec-tst-edge-1047",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-dev-kotl-629",
"recommendationType": "Just Right",
"recommendedType": "standard_a2_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "r3.2xlarge",
"name": "ec-dev-jaws-1270",
"recommendationType": "Modernize",
"recommendedType": "r4.2xlarge",
"savingsEstimate": "75.5166217030026",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000502",
"Inventory Code : dev-jaws",
"Environment : Production",
"Name : ec-dev-jaws-1270",
"Owner : Roger Witt"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-tst-oop-834",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.33007686645491",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Inventory Code : tst-oop",
"Environment : Production",
"Name : ec-tst-oop-834",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-bion-1254",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "10.967924636718816",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-bion-1254",
"Product Code : PR002902",
"Environment : Production",
"Owner : Roger Witt",
"Inventory Code : pro-bion"
]
},
{
"currentType": "n1-highmem-8",
"name": "gl02.mln_sti-374",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "db.t2.medium",
"name": "asop-dev-mysql-493",
"recommendationType": "Downsize",
"recommendedType": "db.t2.small",
"savingsEstimate": "19.228054066558833"
},
{
"currentType": "n1-standard-4",
"name": "gl08.ttr_fap-208",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "db.t2.small",
"name": "duct-prepro-edb-577",
"recommendationType": "Just Right",
"recommendedType": "db.t2.small",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-io-emsg-271",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002219",
"Name : ex-io-emsg-271",
"Environment : Production",
"Inventory Code : io-emsg",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_ds3_v2",
"name": "st02-io-fifo-678",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-4",
"name": "gl02.ttr_fet-202",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Infrastructure"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.ttr_fet-214",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-bion-657",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Name : ec-prepro-bion-657",
"Environment : Pre-prod",
"Inventory Code : prepro-bion"
]
},
{
"currentType": "t2.large",
"name": "ec-tst-dvc-1916",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.966405510131736",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Name : ec-tst-dvc-1916",
"Environment : Production",
"Inventory Code : tst-dvc",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.hosa_gas-134",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.camp_sti-594",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.small",
"name": "ec-pro-bion-404",
"recommendationType": "Downsize",
"recommendedType": "t2.micro",
"savingsEstimate": "7.597824566818235",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-bion-404",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR003096",
"Inventory Code : pro-bion"
]
},
{
"currentType": "t2.small",
"name": "ec-tst-imco-430",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002866",
"Environment : Pre-prod",
"Name : ec-tst-imco-430",
"Owner : Kozak Kor",
"Inventory Code : tst-imco"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-asop-796",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : prepro-asop",
"Environment : Pre-prod",
"Name : ex-prepro-asop-796"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.coa_clt-172",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : WebSphere",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "m4.large",
"name": "ec-tst-kotl-575",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-kotl",
"Product Code : PR003557",
"Environment : Production",
"Name : ec-tst-kotl-575",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ec-dev-kotl-1152",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : dev-kotl",
"Name : ec-dev-kotl-1152",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-2",
"name": "gl02.doop_clt-82",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-2",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.large",
"name": "ex-pro-jaws-273",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.medium",
"savingsEstimate": "28.06332922811125",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-jaws-273",
"Owner : Kaybok Issarra",
"Environment : Pre-prod",
"Product Code : PR000648",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "m3.medium",
"name": "ex-tst-appx-988",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000560",
"Environment : Test",
"Inventory Code : tst-appx",
"Owner : Ed Watkins",
"Name : ex-tst-appx-988"
]
},
{
"currentType": "m4.2xlarge",
"name": "ex-dev-kotl-339",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.40239886041265",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : dev-kotl",
"Name : ex-dev-kotl-339",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.coa_clt-18",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-pro-jaws-576",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "24.263639256774912"
},
{
"currentType": "t2.small",
"name": "ec-tst-jaws-1062",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Inventory Code : tst-jaws",
"Environment : Production",
"Name : ec-tst-jaws-1062",
"Owner : Irina Yashina"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-tst-rais-307",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "42.01675272955326",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-rais",
"Name : ec-tst-rais-307",
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Environment : Pre-prod"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-io-fifo-535",
"recommendationType": "Downsize",
"recommendedType": "m5.large",
"savingsEstimate": "58.92910466394038",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Name : ec-io-fifo-535",
"Inventory Code : io-fifo"
]
},
{
"currentType": "db.r3.2xlarge",
"name": "duct-pro-edb-363",
"recommendationType": "Just Right",
"recommendedType": "db.r3.2xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d1",
"name": "st01-prepro-jaws-189",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "basic_a1",
"savingsEstimate": "33.44786784484866"
},
{
"currentType": "n1-standard-4",
"name": "gl02.camp_gas-308",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "standard_d1",
"name": "st01-prepro-jaws-349",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "21.86063812118533"
},
{
"currentType": "t2.large",
"name": "PR001618-prepro-fifo-asg-0bc02247bc74470",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "10.573736788330134",
"divider": "------------------------",
"Resource Tags": [
"InventoryCode : prepro-fifo",
"Environment : Pre-prod",
"Name : PR001618-prepro-fifo-asg-0bc02247bc74470",
"ProductCode : PR001618"
]
},
{
"currentType": "m3.medium",
"name": "ex-tst-asop-1044",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-tst-asop-1044",
"Environment : Production",
"Product Code : PR000464",
"Inventory Code : tst-asop",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-asop-414",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.284822248626734",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000560",
"Inventory Code : prepro-asop",
"Environment : Test",
"Name : ex-prepro-asop-414",
"Owner : Ed Watkins"
]
},
{
"currentType": "m4.large",
"name": "ex-prepro-imco-1621",
"recommendationType": "Modernize",
"recommendedType": "m5a.large",
"savingsEstimate": "7.9491168247070165",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-imco-1621",
"Environment : Test",
"Inventory Code : prepro-imco",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "m4.xlarge",
"name": "PR000648-prepro-jaws-asg",
"recommendationType": "Downsize",
"recommendedType": "m4.large",
"savingsEstimate": "33.15416876971722",
"divider": "------------------------",
"Resource Tags": [
"ProductCode : PR000648",
"Environment : Pre-prod",
"InventoryCode : prepro-jaws",
"Name : PR000648-prepro-jaws-asg"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.ttr_fet-462",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.ttr_fap-24",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "c4.large",
"name": "ex-prepro-appx-396",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "42.49475845016481",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Name : ex-prepro-appx-396",
"Inventory Code : prepro-appx"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-tst-kotl-1320",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-tst-kotl-1320",
"Inventory Code : tst-kotl",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR003096"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.mln_sti-118",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "34.159469104507295",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.small",
"name": "ex-pro-stoc-1076",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-stoc",
"Name : ex-pro-stoc-1076",
"Product Code : PR002154",
"Environment : Pre-prod",
"Owner : Kozak Kor"
]
},
{
"currentType": "c4.xlarge",
"name": "ea-dev-asop-299",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "m5a.large",
"savingsEstimate": "64.02874452944961",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001359",
"Environment : Pre-prod",
"Name : ex-prepro-imco-968",
"Inventory Code : prepro-imco",
"Owner : Kozak Kor"
]
},
{
"currentType": "t2.medium",
"name": "ec-dev-dvc-1182",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Inventory Code : dev-dvc",
"Product Code : PR004079",
"Name : ec-dev-dvc-1182"
]
},
{
"currentType": "m4.xlarge",
"name": "ea-io-emsg-1206",
"recommendationType": "Downsize",
"recommendedType": "m5a.large",
"savingsEstimate": "64.59536723321537",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-emsg",
"Environment : Pre-prod",
"Name : ex-prepro-emsg-1206",
"Product Code : PR003634",
"Owner : Kozak Kor"
]
},
{
"currentType": "t2.medium",
"name": "ec-io-kotl-912",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.257494929412788",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-kotl",
"Environment : Production",
"Product Code : PR000464",
"Name : ec-io-kotl-912",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-edb-stoc-501",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "45.94996715641784"
},
{
"currentType": "standard_d2_v2",
"name": "st01-io-appx-171",
"recommendationType": "Upsize - Optimal Family",
"recommendedType": "standard_f4s_v2",
"savingsEstimate": "-105.11997985839844"
},
{
"currentType": "n1-standard-4",
"name": "gl02.camp_vmx-560",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "t2.small",
"name": "ec-pro-stoc-468",
"recommendationType": "Downsize",
"recommendedType": "t2.micro",
"savingsEstimate": "5.735808650199906",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-stoc-468",
"Inventory Code : pro-stoc",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR001644"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-kotl-597",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Name : ex-prepro-kotl-597",
"Inventory Code : prepro-kotl"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.camp_gas-78",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "69.26211972021498",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.ttr_fap-194",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "69.0716161835636",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Advisors",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.ttr_fap-110",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "69.91422217523214",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.small",
"name": "ex-pro-jaws-450",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Inventory Code : pro-jaws",
"Name : ex-pro-jaws-450",
"Product Code : PR003064"
]
},
{
"currentType": "m4.2xlarge",
"name": "ex-pro-appx-611",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.40239886041265",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Name : ex-pro-appx-611",
"Product Code : PR003634",
"Owner : Kozak Kor",
"Inventory Code : pro-appx"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.doop_xtr-360",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "34.159469104507295",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-prepro-kotl-1093",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-prepro-kotl-1093",
"Product Code : PR003792",
"Inventory Code : prepro-kotl",
"Owner : Ed Watkins"
]
},
{
"currentType": "db.r3.large",
"name": "duct-pro-rdb-751",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.large",
"name": "ec-pro-fifo-776",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "15.522559078063932",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Inventory Code : pro-fifo",
"Name : ec-pro-fifo-776",
"Owner : Kozak Kor",
"Product Code : PR001674"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.mln_sti-350",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"application : Load Testing",
"business_unit : Support"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.hosa_gas-48",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.coa_clt-574",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.ttr_fet-206",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.doop_xtr-248",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "69.0716161835636",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Advisors",
"department : Core"
]
},
{
"currentType": "m4.large",
"name": "ec-dev-stoc-607",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.medium",
"savingsEstimate": "36.41454450254823",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000502",
"Inventory Code : dev-stoc",
"Environment : Production",
"Name : ec-dev-stoc-607",
"Owner : Roger Witt"
]
},
{
"currentType": "db.t2.medium",
"name": "duct-prepro-edb-317",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.large",
"name": "ec-prepro-duct-481",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.552957471313421",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-duct-481",
"Inventory Code : prepro-duct",
"Product Code : PR003439",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.coa_xtr-546",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.2xlarge",
"name": "ec-prepro-asop-541",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "82.44681057434063",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-asop",
"Name : ec-prepro-asop-541",
"Environment : Production",
"Product Code : PR000401",
"Owner : Irina Yashina"
]
},
{
"currentType": "m4.xlarge",
"name": "mobile-svc-api",
"recommendationType": "Just Right",
"recommendedType": "m4.xlarge",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-emsg",
"Environment : Test",
"Name : ec-dev-emsg-1222",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "m4.large",
"name": "ec-prepro-fifo-285",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Product Code : PR001812",
"Name : ec-prepro-fifo-285",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_d2",
"name": "st01-prepro-fifo-191",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.85047623359686"
},
{
"currentType": "m5.large",
"name": "EC2ContainerService-BillCluster3-EcsInstanceAsg-3562UWEAR5WL",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "c5.large",
"savingsEstimate": "38.81166562398266",
"divider": "------------------------",
"Resource Tags": [
"aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-2:409119911940:stack/EC2ContainerService-BillCluster3/6f7874c0-928d-11e9-a4ad-063ebf2048ea",
"Description : This instance is the part of the Auto Scaling group which was created through ECS Console",
"Name : ECS Instance - EC2ContainerService-BillCluster3",
"aws:cloudformation:logical-id : EcsInstanceAsg",
"aws:cloudformation:stack-name : EC2ContainerService-BillCluster3"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.doop_fet-592",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-emsg-3054",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "11.493130821578962",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-emsg",
"Name : ec-pro-emsg-3054",
"Environment : Production",
"Product Code : PR003459",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-dvc-1138",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Inventory Code : prepro-dvc",
"Name : ex-prepro-dvc-1138"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-pro-edge-830",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.85757770111086",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-edge-830",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Inventory Code : pro-edge",
"Product Code : PR003064"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-tst-imco-1246",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-tst-imco-1246",
"Owner : Francis Robinson",
"Product Code : PR001356",
"Inventory Code : tst-imco"
]
},
{
"currentType": "m4.large",
"name": "ex-tst-jaws-914",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "14.07817859222414",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-jaws",
"Product Code : PR001893",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Name : ex-tst-jaws-914"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-asop-1914",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Inventory Code : prepro-asop",
"Environment : Pre-prod",
"Product Code : PR000566",
"Name : ec-prepro-asop-1914"
]
},
{
"currentType": "t2.medium",
"name": "ec-dev-imco-916",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ec-dev-imco-916",
"Owner : Ed Watkins",
"Inventory Code : dev-imco",
"Product Code : PR000282"
]
},
{
"currentType": "c4.xlarge",
"name": "PR003064-prepro-kotl-asg-0bc07fe8bcfa560",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "74.4196958828735",
"divider": "------------------------",
"Resource Tags": [
"ProductCode : PR003064",
"Environment : Pre-prod",
"InventoryCode : prepro-kotl",
"Name : PR003064-prepro-kotl-asg-0bc07fe8bcfa560"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-imco-221",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "12.70751878479001",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-imco-221",
"Environment : Test",
"Inventory Code : pro-imco",
"Owner : Ed Watkins",
"Product Code : PR000642"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.hosa_gas-220",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "67.97989491247571",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : WebSphere",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "standard_ds3",
"name": "st02-edb-dvc-626",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "64.60135000457754"
},
{
"currentType": "standard_d1_v2",
"name": "st01-pro-bion-310",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b1ms",
"savingsEstimate": "32.3002804824066"
},
{
"currentType": "t2.medium",
"name": "ec-prepro-edge-370",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Inventory Code : prepro-edge",
"Name : ec-prepro-edge-370",
"Product Code : PR003080"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-emsg-854",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.629997253417969",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-emsg-854",
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Inventory Code : pro-emsg"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-tst-kotl-444",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.79615777258296",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Inventory Code : tst-kotl",
"Environment : Pre-prod",
"Name : ec-tst-kotl-444"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.coa_fap-212",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "t2.large",
"name": "ec-pro-fifo-402",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-fifo",
"Product Code : PR002721",
"Environment : Production",
"Name : ec-pro-fifo-402",
"Owner : Roger Witt"
]
},
{
"currentType": "db.m4.large",
"name": "jaws-prepro-edb-160",
"recommendationType": "Just Right",
"recommendedType": "db.m4.large",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds2_v2",
"name": "st02-prepro-fifo-538",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "22.27245066442876"
},
{
"currentType": "n1-standard-8",
"name": "gl08.coa_fap-170",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-appx-436",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Name : ex-pro-appx-436",
"Environment : Production",
"Inventory Code : pro-appx",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.medium",
"name": "ec-tst-emsg-247",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-emsg",
"Environment : Test",
"Name : ec-tst-emsg-247",
"Owner : Ed Watkins",
"Product Code : PR001885"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.doop_xtr-598",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Infrastructure"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-asop-571",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-asop",
"Name : ex-prepro-asop-571",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR001379"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.camp_gas-20",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "69.26211972021498",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-dev-oop-517",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.57516992996214",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-dev-oop-517",
"Environment : Test",
"Inventory Code : dev-oop",
"Owner : Ed Watkins",
"Product Code : PR001720"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-bion-1071",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Product Code : PR003704",
"Owner : James Pillsbury",
"Name : ex-prepro-bion-1071",
"Inventory Code : prepro-bion"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.doop_clt-42",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "t2.small",
"name": "ex-tst-stoc-641",
"recommendationType": "Downsize",
"recommendedType": "t2.micro",
"savingsEstimate": "6.457984731880206",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Name : ex-tst-stoc-641",
"Environment : Production",
"Inventory Code : tst-stoc",
"Owner : Irina Yashina"
]
},
{
"currentType": "db.r3.large",
"name": "duct-pro-aurora-932",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.xlarge",
"name": "ec-pro-dvc-892",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.71182131774898",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-dvc-892",
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Inventory Code : pro-dvc",
"Environment : Pre-prod"
]
},
{
"currentType": "t2.medium",
"name": "ex-prepro-duct-261",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "15.314585331024137",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000560",
"Inventory Code : prepro-duct",
"Environment : Test",
"Name : ex-prepro-duct-261",
"Owner : Ed Watkins"
]
},
{
"currentType": "c4.large",
"name": "ex-tst-rais-2357",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.medium",
"savingsEstimate": "35.42878885055543",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-rais",
"Name : ex-tst-rais-2357",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR003592"
]
},
{
"currentType": "t2.small",
"name": "ec-tst-duct-1092",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Environment : Production",
"Name : ec-tst-duct-1092",
"Inventory Code : tst-duct",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-rais-960",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-rais",
"Product Code : PR003377",
"Environment : Pre-prod",
"Name : ex-tst-rais-960",
"Owner : Kozak Kor"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.mln_gas-382",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-pro-kotl-623",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "m5.2xlarge",
"savingsEstimate": "84.03349359082058",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-kotl",
"Name : ec-pro-kotl-623",
"Environment : Production",
"Owner : Roger Witt",
"Product Code : PR003592"
]
},
{
"currentType": "t2.medium",
"name": "PR003377-prepro-kotl-asg",
"recommendationType": "Downscale",
"recommendedType": "t2.medium",
"savingsEstimate": "11.28999897102517",
"divider": "------------------------",
"Resource Tags": [
"Name : PR003377-prepro-kotl-asg",
"ProductCode : PR003377",
"Environment : Pre-prod",
"InventoryCode : prepro-kotl"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-pro-stoc-1412",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.33007686645491",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-stoc",
"Environment : Production",
"Name : ec-pro-stoc-1412",
"Product Code : PR000401",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.mln_gas-196",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support",
"application : Data Warehouse"
]
},
{
"currentType": "m4.large",
"name": "ex-tst-dvc-1238",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-tst-dvc-1238",
"Environment : Production",
"Inventory Code : tst-dvc",
"Owner : Roger Witt",
"Product Code : PR002117"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-db-emsg-551",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "24.263639256774912"
},
{
"currentType": "m4.xlarge",
"name": "ec-tst-dvc-924",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "70.85757770111086",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-tst-dvc-924",
"Environment : Test",
"Product Code : PR002414",
"Inventory Code : tst-dvc",
"Owner : Ed Watkins"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.camp_far-404",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.69061470031738",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Advisors",
"department : Core"
]
},
{
"currentType": "db.t2.medium",
"name": "bion-pro-aurora-380",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds3_v2",
"name": "st02-db-kotl-568",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.small",
"name": "ec-pro-appx-428",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-pro-appx-428",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Product Code : PR002282",
"Inventory Code : pro-appx"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.camp_far-458",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support",
"application : Data Warehouse"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-pro-fifo-1264",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "c5.xlarge",
"savingsEstimate": "15.555570816497784",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Inventory Code : pro-fifo",
"Name : ec-pro-fifo-1264",
"Owner : Kozak Kor",
"Product Code : PR001654"
]
},
{
"currentType": "db.r3.2xlarge",
"name": "jaws-dev-edb-142",
"recommendationType": "Just Right",
"recommendedType": "db.r3.2xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "i2.xlarge",
"name": "ec-tst-emsg-1109",
"recommendationType": "Downsize",
"recommendedType": "i3.xlarge",
"savingsEstimate": "307.17655535058583",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-emsg",
"Environment : Test",
"Product Code : PR002414",
"Owner : Ed Watkins",
"Name : ec-tst-emsg-1109"
]
},
{
"currentType": "i3.2xlarge",
"name": "ec-prepro-rais-972",
"recommendationType": "Just Right",
"recommendedType": "i3.2xlarge",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-rais",
"Environment : Pre-prod",
"Name : ec-prepro-rais-972",
"Owner : Kozak Kor",
"Product Code : PR003096"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.hosa_far-284",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "db.t2.medium",
"name": "duct-prepro-rds-631",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-4",
"name": "gl04.ttr_fet-228",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "m3.medium",
"name": "ex-tst-emsg-530",
"recommendationType": "Just Right",
"recommendedType": "m3.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : tst-emsg",
"Owner : Francis Robinson",
"Product Code : PR001356",
"Name : ex-tst-emsg-530"
]
},
{
"currentType": "n1-standard-1",
"name": "gl02.coa_clt-572",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-2",
"name": "gl02.ttr_xtr-198",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-2",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_a2_v2",
"name": "st02-dev-stoc-568",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "24.311990059814416"
},
{
"currentType": "t2.large",
"name": "ec-dev-duct-1035",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "11.725484616577159",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-duct",
"Product Code : PR000502",
"Name : ec-dev-duct-1035",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.small",
"name": "ex-prepro-fifo-3056",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : prepro-fifo",
"Product Code : PR002124",
"Name : ex-prepro-fifo-3056",
"Owner : Francis Robinson"
]
},
{
"currentType": "r3.2xlarge",
"name": "ex-pro-edge-934",
"recommendationType": "Downsize",
"recommendedType": "r5d.xlarge",
"savingsEstimate": "214.05833986254873",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Name : ex-pro-edge-934",
"Environment : Production",
"Inventory Code : pro-edge",
"Owner : Irina Yashina"
]
},
{
"currentType": "t2.large",
"name": "ec-tst-jaws-426",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.629997253417969",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : tst-jaws",
"Name : ec-tst-jaws-426",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "standard_ds3_v2",
"name": "st02-db-emsg-593",
"recommendationType": "Just Right",
"recommendedType": "standard_ds3_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.xlarge",
"name": "ec-prepro-appx-888",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "40.76760489807115",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : prepro-appx",
"Product Code : PR003792",
"Owner : Ed Watkins",
"Name : ec-prepro-appx-888"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-dev-emsg-1069",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "45.58747875811765",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : dev-emsg",
"Product Code : PR002866",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Name : ex-dev-emsg-1069"
]
},
{
"currentType": "standard_d3",
"name": "st01-prepro-edge-130",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_a2m_v2",
"savingsEstimate": "117.06753745697031"
},
{
"currentType": "db.t2.medium",
"name": "asop-pro-io-346",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.small",
"name": "ex-prepro-appx-116",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Name : ex-prepro-appx-116",
"Environment : Pre-prod",
"Inventory Code : prepro-appx",
"Product Code : PR000648"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.camp_far-36",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "67.16659758721944",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"application : Load Testing",
"business_unit : Support"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.doop_fet-166",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Advisors",
"department : Core"
]
},
{
"currentType": "c3.large",
"name": "ec-pro-dvc-110",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "46.463334117858906",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-pro-dvc-110",
"Inventory Code : pro-dvc",
"Product Code : PR002124",
"Owner : Francis Robinson"
]
},
{
"currentType": "t2.large",
"name": "ex-prepro-imco-454",
"recommendationType": "Downsize",
"recommendedType": "t2.medium",
"savingsEstimate": "26.344084755767835",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-prepro-imco-454",
"Inventory Code : prepro-imco",
"Product Code : PR003682",
"Owner : Ed Watkins"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-prepro-kotl-838",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "z1d.large",
"savingsEstimate": "9.368674931884744",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002902",
"Environment : Production",
"Name : ec-prepro-kotl-838",
"Inventory Code : prepro-kotl",
"Owner : Roger Witt"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.mln_far-104",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "n1-standard-1",
"name": "gl04.camp_sti-146",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.ttr_fap-312",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support",
"application : Data Warehouse"
]
},
{
"currentType": "t2.medium",
"name": "ex-dev-asop-992",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "17.067706688873294",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR000688",
"Inventory Code : dev-asop",
"Name : ex-dev-asop-992"
]
},
{
"currentType": "t2.large",
"name": "ec-dev-dvc-1258",
"recommendationType": "Modernize",
"recommendedType": "t3a.large",
"savingsEstimate": "9.552957471313421",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Name : ec-dev-dvc-1258",
"Inventory Code : dev-dvc",
"Environment : Pre-prod"
]
},
{
"currentType": "m4.2xlarge",
"name": "ex-dev-emsg-563",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.xlarge",
"savingsEstimate": "98.40239886041265",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000502",
"Inventory Code : dev-emsg",
"Environment : Production",
"Name : ex-dev-emsg-563",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-asop-637",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.284822248626734",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000252",
"Name : ec-pro-asop-637",
"Inventory Code : pro-asop",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-pro-emsg-1296",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.42351453979499",
"divider": "------------------------",
"Resource Tags": [
"Environment : Pre-prod",
"Product Code : PR002364",
"Inventory Code : pro-emsg",
"Owner : Kozak Kor",
"Name : ec-pro-emsg-1296"
]
},
{
"currentType": "db.m4.large",
"name": "bion-tst-io-811",
"recommendationType": "Just Right",
"recommendedType": "db.m4.large",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-highmem-8",
"name": "gl08.ttr_fet-406",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d2",
"name": "st01-tst-asop-366",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.78329365759273"
},
{
"currentType": "n1-standard-8",
"name": "gl02.mln_gas-466",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"application : General",
"department : Services",
"owner : Francis Robinson",
"business_unit : Support"
]
},
{
"currentType": "db.r3.large",
"name": "bion-tst-rdb-279",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.coa_clt-90",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Infrastructure"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-imco-475",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : pro-imco",
"Product Code : PR002721",
"Environment : Production",
"Owner : Roger Witt",
"Name : ex-pro-imco-475"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.hosa_gas-132",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "69.91422217523214",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Marketing",
"application : Growth",
"owner : Max Machino",
"department : Core"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.doop_xtr-484",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "69.0716161835636",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "standard_f2",
"name": "st01-io-dvc-193",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "35.49767695648188"
},
{
"currentType": "t2.medium",
"name": "ec-tst-appx-390",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "13.257494929412788",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : tst-appx",
"Environment : Pre-prod",
"Name : ec-tst-appx-390"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.doop_fap-64",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "i3.large",
"name": "ec-tst-asop-489",
"recommendationType": "Just Right",
"recommendedType": "i3.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Environment : Pre-prod",
"Inventory Code : tst-asop",
"Name : ec-tst-asop-489"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-pro-imco-677",
"recommendationType": "Just Right",
"recommendedType": "standard_a2_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "db.t2.medium",
"name": "fifo-dev-mysql-258",
"recommendationType": "Downsize",
"recommendedType": "db.t2.small",
"savingsEstimate": "19.228054066558833"
},
{
"currentType": "c4.large",
"name": "ec-prepro-rais-1041",
"recommendationType": "Just Right",
"recommendedType": "c4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-rais",
"Name : ec-prepro-rais-1041",
"Environment : Test",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "r3.2xlarge",
"name": "ex-tst-asop-337",
"recommendationType": "Modernize",
"recommendedType": "r4.2xlarge",
"savingsEstimate": "75.36128151187208",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Owner : Francis Robinson",
"Inventory Code : tst-asop",
"Name : ex-tst-asop-337",
"Product Code : PR000690"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.ttr_clt-270",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"application : JRS Backend",
"department : Services"
]
},
{
"currentType": "t2.large",
"name": "ec-io-imco-124",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ec-io-imco-124",
"Owner : Ed Watkins",
"Inventory Code : io-imco",
"Product Code : PR000282"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.coa_xtr-474",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-prepro-imco-1067",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-imco-1067",
"Environment : Production",
"Inventory Code : prepro-imco",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "r3.xlarge",
"name": "ec-prepro-fifo-538",
"recommendationType": "Downsize",
"recommendedType": "r4.large",
"savingsEstimate": "113.32520401000977",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-fifo",
"Name : ec-prepro-fifo-538",
"Product Code : PR003538",
"Environment : Production",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ex-pro-asop-520",
"recommendationType": "Downsize",
"recommendedType": "t2.small",
"savingsEstimate": "14.99965420584107",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-pro-asop-520",
"Product Code : PR001359",
"Environment : Pre-prod",
"Inventory Code : pro-asop",
"Owner : Kozak Kor"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-io-emsg-1927",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Environment : Pre-prod",
"Name : ec-io-emsg-1927",
"Inventory Code : io-emsg"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-emsg-1599",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-emsg",
"Product Code : PR002668",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Name : ex-tst-emsg-1599"
]
},
{
"currentType": "db.t2.medium",
"name": "bion-prepro-aurora-087",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "m3.medium",
"name": "ex-prepro-stoc-1030",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "23.64353140980529",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-stoc-1030",
"Inventory Code : prepro-stoc",
"Environment : Production",
"Product Code : PR000464",
"Owner : Roger Witt"
]
},
{
"currentType": "c4.xlarge",
"name": "ex-prepro-dvc-239",
"recommendationType": "Downsize",
"recommendedType": "c5.large",
"savingsEstimate": "64.47053891679388",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : prepro-dvc",
"Name : ex-prepro-dvc-239",
"Owner : Ed Watkins",
"Product Code : PR004006"
]
},
{
"currentType": "db.t2.medium",
"name": "bion-prepro-edb-774",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-8",
"name": "gl02.doop_xtr-524",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Services"
]
},
{
"currentType": "n1-standard-1",
"name": "gl04.mln_far-338",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d3_v2_promo",
"name": "st01-prepro-appx-107",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_a2m_v2",
"savingsEstimate": "107.77646521347052"
},
{
"currentType": "r4.large",
"name": "ec-prepro-dvc-1043",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "38.38023879550165",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-dvc-1043",
"Environment : Test",
"Inventory Code : prepro-dvc",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "t2.medium",
"name": "ec-io-dvc-1442",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Owner : James Pillsbury",
"Product Code : PR004079",
"Name : ec-io-dvc-1442",
"Inventory Code : io-dvc"
]
},
{
"currentType": "standard_d2_v2",
"name": "st01-tst-emsg-315",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "43.35835439910879"
},
{
"currentType": "t2.medium",
"name": "ex-tst-rais-1065",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-rais",
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Environment : Pre-prod",
"Name : ex-tst-rais-1065"
]
},
{
"currentType": "standard_ds3_v2_promo",
"name": "st02-io-dvc-605",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "170.31265335998498"
},
{
"currentType": "db.r3.large",
"name": "asop-tst-aurora-334",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "r3.2xlarge",
"name": "ex-pro-rais-1280",
"recommendationType": "Modernize",
"recommendedType": "r4.2xlarge",
"savingsEstimate": "75.36128151187208",
"divider": "------------------------",
"Resource Tags": [
"Environment : Production",
"Inventory Code : pro-rais",
"Name : ex-pro-rais-1280",
"Owner : Roger Witt",
"Product Code : PR001690"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.ttr_clt-344",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"application : General",
"owner : Roger Witt",
"department : Core"
]
},
{
"currentType": "m4.2xlarge",
"name": "ec-tst-stoc-1095",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "162.3074012124329",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001359",
"Environment : Pre-prod",
"Name : ec-tst-stoc-1095",
"Inventory Code : tst-stoc",
"Owner : Kozak Kor"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-prepro-fifo-635",
"recommendationType": "Just Right",
"recommendedType": "standard_a2_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds3",
"name": "st02-pro-asop-539",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_e2s_v3",
"savingsEstimate": "93.96559275283828"
},
{
"currentType": "r3.xlarge",
"name": "ex-io-bion-1174",
"recommendationType": "Modernize",
"recommendedType": "r4.xlarge",
"savingsEstimate": "37.890580434082075",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : io-bion",
"Product Code : PR002976",
"Environment : Pre-prod",
"Name : ex-io-bion-1174",
"Owner : Kozak Kor"
]
},
{
"currentType": "t2.medium",
"name": "ec-io-fifo-1101",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001514",
"Name : ec-io-fifo-1101",
"Environment : Production",
"Inventory Code : io-fifo",
"Owner : Roger Witt"
]
},
{
"currentType": "t2.medium",
"name": "ex-tst-kotl-1166",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "14.53708070370485",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-kotl",
"Environment : Pre-prod",
"Owner : Kozak Kor",
"Name : ex-tst-kotl-1166",
"Product Code : PR002282"
]
},
{
"currentType": "standard_d1_v2",
"name": "st01-pro-fifo-156",
"recommendationType": "Just Right",
"recommendedType": "standard_d1_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-prepro-emsg-511",
"recommendationType": "Modernize",
"recommendedType": "t3.medium",
"savingsEstimate": "3.196198247528082",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-emsg",
"Product Code : PR000414",
"Environment : Production",
"Name : ex-prepro-emsg-511",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-8",
"name": "gl08.coa_fap-522",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Growth",
"department : Core"
]
},
{
"currentType": "m3.medium",
"name": "ec-pro-dvc-1107",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t2.small",
"savingsEstimate": "23.897279695434555",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Inventory Code : pro-dvc",
"Environment : Pre-prod",
"Name : ec-pro-dvc-1107"
]
},
{
"currentType": "t2.medium",
"name": "ec-prepro-imco-243",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ec-prepro-imco-243",
"Inventory Code : prepro-imco",
"Owner : Ed Watkins",
"Product Code : PR000282"
]
},
{
"currentType": "db.t2.medium",
"name": "fifo-pro-aurora-421",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.small",
"name": "ex-pro-expl-659",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : pro-expl",
"Environment : Pre-prod",
"Name : ex-pro-expl-659"
]
},
{
"currentType": "m4.large",
"name": "ec-prepro-kotl-1212",
"recommendationType": "Just Right",
"recommendedType": "m4.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Name : ec-prepro-kotl-1212",
"Product Code : PR000252",
"Environment : Production",
"Inventory Code : prepro-kotl",
"Owner : Irina Yashina"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-prepro-imco-1589",
"recommendationType": "Modernize",
"recommendedType": "m5a.xlarge",
"savingsEstimate": "15.834870140869171",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR001744",
"Environment : Test",
"Inventory Code : prepro-imco",
"Name : ec-prepro-imco-1589",
"Owner : Ed Watkins"
]
},
{
"currentType": "t2.large",
"name": "ec-prepro-emsg-1607",
"recommendationType": "Just Right",
"recommendedType": "t2.large",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Inventory Code : prepro-emsg",
"Owner : James Pillsbury",
"Name : ec-prepro-emsg-1607",
"Product Code : PR002031"
]
},
{
"currentType": "db.t2.medium",
"name": "jaws-dev-edb-177",
"recommendationType": "Just Right",
"recommendedType": "db.t2.medium",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-4",
"name": "gl08.coa_xtr-238",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "db.r4.large",
"name": "duct-dev-aurora-432",
"recommendationType": "Not Analyzed",
"recommendedType": "db.r4.large",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds3",
"name": "st02-pro-appx-567",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_e2s_v3",
"savingsEstimate": "93.96559275283828"
},
{
"currentType": "n1-standard-8",
"name": "gl08.doop_clt-504",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-4",
"savingsEstimate": "68.30961321707116",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "n1-standard-4",
"name": "gl02.mln_far-180",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d2_v2",
"name": "st01-tst-oop-404",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "99.30348233978265"
},
{
"currentType": "n1-standard-2",
"name": "gl04.hosa_far-288",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-2",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-highmem-8",
"name": "gl08.ttr_fet-334",
"recommendationType": "Just Right",
"recommendedType": "n1-highmem-8",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_ds3_v2_promo",
"name": "st02-edb-duct-687",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b4ms",
"savingsEstimate": "170.31265335998498"
},
{
"currentType": "t2.medium",
"name": "ec-prepro-emsg-1102",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : prepro-emsg",
"Environment : Test",
"Name : ec-prepro-emsg-1102",
"Product Code : PR001564",
"Owner : Ed Watkins"
]
},
{
"currentType": "db.r3.large",
"name": "jaws-prepro-edb-157",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "r4.2xlarge",
"name": "ec-prepro-appx-1126",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.33007686645491",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000502",
"Name : ec-prepro-appx-1126",
"Environment : Production",
"Inventory Code : prepro-appx",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-prepro-rais-501",
"recommendationType": "Modernize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "46.04153288520814"
},
{
"currentType": "m4.large",
"name": "ex-prepro-imco-544",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3.medium",
"savingsEstimate": "33.08940651945493",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-imco-544",
"Product Code : PR003557",
"Environment : Production",
"Inventory Code : prepro-imco",
"Owner : Roger Witt"
]
},
{
"currentType": "standard_d1_v2",
"name": "st01-pro-jaws-119",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "19.417824344421387"
},
{
"currentType": "c4.xlarge",
"name": "ex-dev-stoc-1077",
"recommendationType": "Downsize",
"recommendedType": "c5.large",
"savingsEstimate": "66.26808772398363",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000424",
"Environment : Pre-prod",
"Inventory Code : dev-stoc",
"Name : ex-dev-stoc-1077"
]
},
{
"currentType": "m4.xlarge",
"name": "ex-io-duct-1080",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.39807888629148",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Name : ex-io-duct-1080",
"Environment : Production",
"Inventory Code : io-duct",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-4",
"name": "gl08.coa_clt-562",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "n1-highmem-2",
"savingsEstimate": "34.159469104507295",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Advisors",
"department : Core"
]
},
{
"currentType": "r4.2xlarge",
"name": "ec-tst-oop-1933",
"recommendationType": "Modernize",
"recommendedType": "r5a.2xlarge",
"savingsEstimate": "45.42351453979499",
"divider": "------------------------",
"Resource Tags": [
"Inventory Code : tst-oop",
"Environment : Pre-prod",
"Product Code : PR003634",
"Owner : Kozak Kor",
"Name : ec-tst-oop-1933"
]
},
{
"currentType": "n1-standard-8",
"name": "gl02.camp_gas-502",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 940",
"business_unit : IT",
"owner : Kozak Kor",
"department : Services",
"application : Infrastructure"
]
},
{
"currentType": "standard_d4_v2",
"name": "st01-prepro-jaws-114",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b8ms",
"savingsEstimate": "422.92039603591894"
},
{
"currentType": "t2.medium",
"name": "ex-prepro-appx-1202",
"recommendationType": "Downsize",
"recommendedType": "t3.small",
"savingsEstimate": "14.479142164260848",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Inventory Code : prepro-appx",
"Owner : Ed Watkins",
"Name : ex-prepro-appx-1202",
"Product Code : PR000282"
]
},
{
"currentType": "m4.2xlarge",
"name": "ex-pro-kotl-102",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "162.95687710406492",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : pro-kotl",
"Product Code : PR002124",
"Name : ex-pro-kotl-102",
"Owner : Francis Robinson"
]
},
{
"currentType": "c4.xlarge",
"name": "ex-dev-edge-974",
"recommendationType": "Downsize",
"recommendedType": "c5.large",
"savingsEstimate": "64.14598140509042",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : dev-edge",
"Name : ex-dev-edge-974",
"Owner : Francis Robinson",
"Product Code : PR000690"
]
},
{
"currentType": "n1-standard-8",
"name": "gl04.mln_gas-506",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-8",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "t2.small",
"name": "ex-prepro-jaws-1935",
"recommendationType": "Just Right",
"recommendedType": "t2.small",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Environment : Test",
"Name : ex-prepro-jaws-1935",
"Inventory Code : prepro-jaws",
"Product Code : PR001564",
"Owner : Ed Watkins"
]
},
{
"currentType": "db.r3.2xlarge",
"name": "bion-prepro-io-586",
"recommendationType": "Just Right",
"recommendedType": "db.r3.2xlarge",
"savingsEstimate": "0.0"
},
{
"currentType": "n1-standard-1",
"name": "gl04.hosa_gas-292",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-1",
"savingsEstimate": "0.0"
},
{
"currentType": "standard_d1_v2",
"name": "st01-io-dvc-388",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2s",
"savingsEstimate": "20.600495439056395"
},
{
"currentType": "standard_d2_v2",
"name": "st01-tst-kotl-428",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "99.44434156958013"
},
{
"currentType": "n1-standard-4",
"name": "gl08.coa_fap-98",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"business_unit : Sales",
"owner : Roger Witt",
"application : Apps",
"department : Core"
]
},
{
"currentType": "r3.xlarge",
"name": "ex-pro-imco-926",
"recommendationType": "Modernize",
"recommendedType": "r4.xlarge",
"savingsEstimate": "37.96394618588267",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR000414",
"Inventory Code : pro-imco",
"Name : ex-pro-imco-926",
"Environment : Production",
"Owner : Irina Yashina"
]
},
{
"currentType": "n1-standard-4",
"name": "gl04.mln_gas-192",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"application : BDR",
"business_unit : Manufacturing",
"department : Product",
"owner : James Pillsbury",
"cost_center : 40409"
]
},
{
"currentType": "standard_d2",
"name": "st01-tst-emsg-121",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b2ms",
"savingsEstimate": "43.85047623359686"
},
{
"currentType": "n1-standard-4",
"name": "gl08.ttr_xtr-554",
"recommendationType": "Just Right",
"recommendedType": "n1-standard-4",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"cost_center : 409",
"owner : Irina Yashina",
"business_unit : Marketing",
"application : Leads",
"department : Core"
]
},
{
"currentType": "c4.xlarge",
"name": "ex-prepro-stoc-410",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5.large",
"savingsEstimate": "41.36370017428592",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-stoc-410",
"Environment : Pre-prod",
"Inventory Code : prepro-stoc",
"Owner : Kozak Kor",
"Product Code : PR001654"
]
},
{
"currentType": "m4.large",
"name": "mobile-web-stream-api",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "c5.large",
"savingsEstimate": "8.516910459747304",
"divider": "------------------------",
"Resource Tags": [
"Environment : Datasource",
"Inventory Code : io-kotl",
"Product Code : PR002893",
"Owner : James Pillsbury",
"Name : ec-io-kotl-1444"
]
},
{
"currentType": "t2.medium",
"name": "ec-pro-jaws-1601",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Product Code : PR002668",
"Environment : Pre-prod",
"Name : ec-pro-jaws-1601",
"Owner : Kozak Kor",
"Inventory Code : pro-jaws"
]
},
{
"currentType": "m3.large",
"name": "ec-prepro-bion-1186",
"recommendationType": "Modernize",
"recommendedType": "m4.large",
"savingsEstimate": "18.73719885754399",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Inventory Code : prepro-bion",
"Owner : Francis Robinson",
"Name : ec-prepro-bion-1186",
"Product Code : PR000690"
]
},
{
"currentType": "standard_a2_v2",
"name": "st02-edb-appx-682",
"recommendationType": "Just Right",
"recommendedType": "standard_a2_v2",
"savingsEstimate": "0.0"
},
{
"currentType": "m4.large",
"name": "ex-prepro-asop-297",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "t3a.large",
"savingsEstimate": "14.800368144683889",
"divider": "------------------------",
"Resource Tags": [
"Name : ex-prepro-asop-297",
"Inventory Code : prepro-asop",
"Environment : Pre-prod",
"Product Code : PR002699",
"Owner : Kozak Kor"
]
},
{
"currentType": "m4.xlarge",
"name": "ec-tst-imco-1912",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "r5a.large",
"savingsEstimate": "49.296465402496395",
"divider": "------------------------",
"Resource Tags": [
"Environment : Dev",
"Name : ec-tst-imco-1912",
"Owner : Francis Robinson",
"Product Code : PR001949",
"Inventory Code : tst-imco"
]
},
{
"currentType": "db.r3.large",
"name": "jaws-prepro-aurora-150",
"recommendationType": "Just Right",
"recommendedType": "db.r3.large",
"savingsEstimate": "0.0"
},
{
"currentType": "t2.medium",
"name": "ex-tst-appx-217",
"recommendationType": "Just Right",
"recommendedType": "t2.medium",
"savingsEstimate": "0.0",
"divider": "------------------------",
"Resource Tags": [
"Owner : Kaybok Issarra",
"Product Code : PR000263",
"Inventory Code : tst-appx",
"Environment : Pre-prod",
"Name : ex-tst-appx-217"
]
},
{
"currentType": "standard_d13_v2",
"name": "st02-edb-duct-501",
"recommendationType": "Downsize - Optimal Family",
"recommendedType": "standard_b12ms",
"savingsEstimate": "242.54868794281035"
}
]
}
- name: Getting Cloud Subscription Status by ID
request:
auth:
type: basic
basic:
- key: password
value: admin
type: string
- key: username
value: admin
type: string
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/{{subscriptionRef2}}/status"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- "{{subscriptionRef2}}"
- status
description: "Get the webhook and notification status of a particular cloud subscription by providing the subscription reference ID in the URL request.\r\n\r\nNote:\r\n> The `{{subscriptionRef2}}` environment variable is used to identify the subscription. This variable was set in a previous request. If you want to retrieve status for a specific subscription, update the `{{subscriptionRef2}}` variable in the url with your desired subscription reference ID.\r\n\r\n> If you are an administrative user, you have access to all global and all private subscriptions.\r\n\r\n> If you are a non-administrative user, you have access to all global and your own private subscriptions.\r\n\r\nSee example. Refer to [Subscriptions: Status](https://www.densify.com/docs-api/Content/API_Guide/Subscriptions_Status.htm)."
response:
- name: GET status by subscription ID - lastTriggered and webhookStatus message
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/4503e5ff-7a1e-4f4c-a106-0f31ca38dc22/status"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- 4503e5ff-7a1e-4f4c-a106-0f31ca38dc22
- status
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "259"
- key: Date
value: Fri, 03 Jan 2020 22:33:51 GMT
cookie: []
body: |-
{
"lastTriggered": "Scheduled Failure. java.net.ConnectException: Connection refused (Connection refused) Thu Jan 02 16:41:53 EST 2020",
"webhookStatus": "Failure. java.net.ConnectException: Connection refused (Connection refused). Thu Jan 02 16:41:53 EST 2020"
}
- name: GET subscriptions status - lastTriggered status
originalRequest:
method: GET
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/2db7753a-26a3-4cba-be84-8e4e3a12daa1/status"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- 2db7753a-26a3-4cba-be84-8e4e3a12daa1
- status
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "68"
- key: Date
value: Fri, 03 Jan 2020 19:53:49 GMT
cookie: []
body: |-
{
"lastTriggered": "On-Demand Success. Fri Jan 03 09:29:30 EST 2020"
}
- name: DELETE Cloud Subscription by ID
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: DELETE
header: []
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud/{{subscriptionRef1}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
- "{{subscriptionRef1}}"
description: "Delete a single cloud subscription by providing the subscription reference ID in the URL.\r\n\r\nThis example deletes a subscription (`{{subscriptionRef1}}`) that was created previously in the \"Creating Cloud Subscriptions\" request.\r\n\r\n\r\nNote:\r\n> If you do not have administrative privileges, you can only delete your own private subscription.\r\n\r\n> If you have administrative privileges, you can delete any subscription.\r\n\r\nSee example. Refer to [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm)."
response:
- name: DELETE failed - '404 Not Found' is returned when you have no delete privileges for the subscription provided.
originalRequest:
method: DELETE
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/a4b0281a-6082-4b6c-b13f-9488613c4a5c"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- a4b0281a-6082-4b6c-b13f-9488613c4a5c
status: Not Found
code: 404
_postman_previewlanguage: json
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: content-type
value: application/json;charset=UTF-8
- key: content-length
value: "0"
- key: date
value: Wed, 29 Jan 2020 19:29:43 GMT
- key: x-envoy-upstream-service-time
value: "55"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
cookie: []
body: ""
- name: DELETE Subscription by ID - successful "204 No Content"
originalRequest:
method: DELETE
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/{{subscriptionRef1}}"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- "{{subscriptionRef1}}"
status: No Content
code: 204
_postman_previewlanguage: plain
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Date
value: Tue, 30 Jun 2020 18:48:52 GMT
cookie: []
body: ""
- name: DELETE subscription successful - '204 No Content' is returned for a successful delete
originalRequest:
method: DELETE
header: []
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions/a4b0281a-6082-4b6c-b13f-9488613c4a5c"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
- a4b0281a-6082-4b6c-b13f-9488613c4a5c
status: No Content
code: 204
_postman_previewlanguage: plain
header:
- key: access-control-allow-credentials
value: "true"
- key: access-control-allow-methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: access-control-allow-headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: access-control-expose-headers
value: Content-Range
- key: cache-control
value: no-cache,no-store,max-age=0
- key: expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: access-control-max-age
value: "1728000"
- key: date
value: Wed, 29 Jan 2020 19:41:17 GMT
- key: x-envoy-upstream-service-time
value: "85"
- key: server
value: istio-envoy
- key: x-envoy-decorator-operation
value: web-service.customer1.svc.cluster.local:8086/*
cookie: []
body: ""
- name: DELETE Bulk Cloud Subscriptions
request:
auth:
type: basic
basic:
- key: password
value: admin
type: string
- key: username
value: admin
type: string
method: DELETE
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"subscriptionRef\": \"{{subscriptionRef1}}\"\r\n },\r\n {\r\n \"subscriptionRef\": \"{{subscriptionRef2}}\"\r\n },\r\n {\r\n \"subscriptionRef\": \"{{subscriptionRef3}}\"\r\n }\r\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/cloud"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- cloud
description: |-
Delete multiple cloud subscriptions.
Each subscriptionRef provided in the list is deleted independently of each other. An error in one delete subscription operation does not affect the other delete operations.
In the Body section of this request, we specify the subscription references we are deleting:
- `{{subscriptionRef1}}`
- `{{subscriptionRef2}}`
- `{{subscriptionRef3}}`
Ensure that the Kubex user making this request has permission to delete all the subscriptions above.
Note:
> If you do not have administrative privileges, you can only delete your private subscriptions.
> If you have administrative privileges, you can delete any subscription.
See examples. Refer to [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm).
response:
- name: DELETE Bulk Subscriptions - 2 successful, 1 failed deletes
originalRequest:
method: DELETE
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"subscriptionRef\": \"{{subscriptionRef1}}\"\r\n },\r\n {\r\n \"subscriptionRef\": \"{{subscriptionRef2}}\"\r\n },\r\n {\r\n \"subscriptionRef\": \"{{subscriptionRef3}}\"\r\n }\r\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
status: Bad Request
code: 400
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "238"
- key: Date
value: Tue, 30 Jun 2020 18:57:42 GMT
- key: Connection
value: close
cookie: []
body: |-
{
"message": [
"The following subscription(s) are deleted [3cb09179-7329-4e50-ac4f-bf3eef22e15e, 8203588f-6669-4833-be39-0c9577774526].",
"The following subscription(s) cannot be deleted. [a0f22188-84cc-4ced-b06a-9db15a186a67]"
],
"status": 400
}
- name: DELETE bulk subscriptions - successful - '204 No Content'
originalRequest:
method: DELETE
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n\t{\r\n \"subscriptionRef\": \"f5c9ac81-56c5-4843-98a4-75ef544b64a8\"\r\n },\r\n \t{\r\n \"subscriptionRef\": \"7540e2df-9740-43e2-bd44-a93c92cc4198\"\r\n }\r\n ]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}:{{port}}/{{root}}/subscriptions"
protocol: "{{scheme}}"
host:
- "{{host}}"
port: "{{port}}"
path:
- "{{root}}"
- subscriptions
status: No Content
code: 204
_postman_previewlanguage: plain
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Date
value: Mon, 20 Jan 2020 00:29:29 GMT
cookie: []
body: ""
description: "Subscribe to a set of\_Densify\_recommendation notifications using the\_Densify\_Subscription Service (DSS) API framework. See [Subscribing to Kubex Recommendations](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscribing_to_Recommendations.htm)."
- name: 5.5.2 Container Subscriptions
item:
- name: Creating Container Subscriptions
event:
- listen: test
script:
exec:
- "var Listsize = pm.response.json().length;\r"
- "if (Listsize > 1 )\r"
- " {\r"
- " var firstdata = pm.response.json()[0];\r"
- " pm.environment.set(\"subscriptionRef1\", firstdata.subscriptionRef);\r"
- " var seconddata = pm.response.json()[1];\r"
- " pm.environment.set(\"subscriptionRef2\", seconddata.subscriptionRef);\r"
- " }"
type: text/javascript
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: POST
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n\t{\r\n\t\t\"subscriptionName\": \"CONTAINERS_1\",\r\n\t\t\"owner\": \"{{DensifyUser}}\",\r\n\t\t\"description\": \"Simple containers query\",\r\n\t\t\"outputType\": \"application/json\",\r\n\t\t\"active\": false,\r\n\t\t\"propertyReferences\": [{\r\n\t\t\t\"propertyID\": \"{{namespacePropRef}}\",\r\n \"operator\": \"like\",\r\n \t\"values\": [\"default\"]\r\n \t}]\r\n },\r\n {\r\n \"subscriptionName\": \"CONTAINERS_2\",\r\n \"description\": \"Memory and CPU request range checks; return data and some attribute info\",\r\n \"active\": false,\r\n \"propertyReferences\": [\r\n {\r\n \"propertyID\": \"{{currentCpuRequestPropRef}}\",\r\n \"operator\": \"[]\",\r\n \"values\": [100,1000]\r\n },\r\n {\r\n \"propertyID\": \"{{currentMemRequestPropRef}}\",\r\n \"operator\": \"[]\",\r\n \"values\": [256,4096]\r\n }\r\n ],\r\n \"returnStructure\": {\r\n \"properties\": [\r\n {\r\n \"propertyID\": \"{{displayNamePropRef}}\",\r\n \"useAlias\": false\r\n },\r\n {\r\n \"propertyID\": \"{{currentCpuRequestPropRef}}\",\r\n \"useAlias\": false\r\n },\r\n {\r\n \"propertyID\": \"{{hostNamePropRef}}\",\r\n \"useAlias\": false\r\n },\r\n {\r\n \"propertyID\": \"{{namespacePropRef}}\",\r\n \"useAlias\": false\r\n },\r\n {\r\n \"propertyID\": \"{{currentMemRequestPropRef}}\",\r\n \"useAlias\": false\r\n }\r\n ]\r\n }\r\n\r\n }\r\n] "
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
description: "The *POST /subscriptions/containers* resource allows you to create a subscription to retreive Kubex container recommendations.\r\n\r\nNotes:\r\n> If you are an administrative user and do not set the \"owner\" parameter, the subscription is considered global.\r\n\r\n> If you are a non-administrative user and do not set the \"owner\" parameter, the \"owner\" parameter is automatically set to your username.\r\n\r\nIn this example, two subscription definitions are created: CONTAINERS_1 and CONTAINERS_2 \r\n\r\nNotes:\r\n> This example uses environment variables (i.e. property references), which were set after executing requests from the \"1. Reviewing Existing Subscriptions Artifacts\" folder.\r\n\r\n> In this example, `{{subscriptionRef1}}` and `{{subscriptionRef2}}` environment variables are set to the first two returned subscription reference IDs, for furture use.\r\n\r\n\r\nSee example. Refer to [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm)."
response:
- name: Creating Container Subscriptions
originalRequest:
method: POST
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n\t{\r\n\t\t\"subscriptionName\": \"CONTAINERS_1\",\r\n\t\t\"owner\": \"{{DensifyUser}}\",\r\n\t\t\"description\": \"Simple containers query\",\r\n\t\t\"outputType\": \"application/json\",\r\n\t\t\"active\": false,\r\n\t\t\"propertyReferences\": [{\r\n\t\t\t\"propertyID\": \"{{namespacePropRef}}\",\r\n \"operator\": \"like\",\r\n \t\"values\": [\"default\"]\r\n \t}]\r\n },\r\n {\r\n \"subscriptionName\": \"CONTAINERS_2\",\r\n \"description\": \"Memory and CPU request range checks; return data and some attribute info\",\r\n \"active\": false,\r\n \"propertyReferences\": [\r\n {\r\n \"propertyID\": \"{{currentCpuRequestPropRef}}\",\r\n \"operator\": \"[]\",\r\n \"values\": [100,1000]\r\n },\r\n {\r\n \"propertyID\": \"{{currentMemRequestPropRef}}\",\r\n \"operator\": \"[]\",\r\n \"values\": [256,4096]\r\n }\r\n ],\r\n \"returnStructure\": {\r\n \"properties\": [\r\n {\r\n \"propertyID\": \"{{displayNamePropRef}}\",\r\n \"useAlias\": false\r\n },\r\n {\r\n \"propertyID\": \"{{currentCpuRequestPropRef}}\",\r\n \"useAlias\": false\r\n },\r\n {\r\n \"propertyID\": \"{{hostNamePropRef}}\",\r\n \"useAlias\": false\r\n },\r\n {\r\n \"propertyID\": \"{{namespacePropRef}}\",\r\n \"useAlias\": false\r\n },\r\n {\r\n \"propertyID\": \"{{currentMemRequestPropRef}}\",\r\n \"useAlias\": false\r\n }\r\n ]\r\n }\r\n\r\n }\r\n] "
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "188"
- key: Date
value: Wed, 16 Sep 2020 19:37:45 GMT
cookie: []
body: |-
[
{
"subscriptionRef": "7ec0a08a-ba26-4a00-aae4-3324c1fcb832",
"SubscriptionName": "CONTAINERS_1"
},
{
"subscriptionRef": "9dcc3c98-7269-42ee-b20d-2ecd76312798",
"SubscriptionName": "CONTAINERS_2"
}
]
- name: Getting Container Subscription Details by ID
protocolProfileBehavior:
disableBodyPruning: true
request:
auth:
type: bearer
bearer:
- key: token
value: "{{token}}"
type: string
method: GET
header:
- key: Content-Type
type: text
value: application/json
- key: Accept
type: text
value: application/json
body:
mode: raw
raw: ""
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers?subscriptionRef={{subscriptionRef2}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
query:
- key: subscriptionRef
value: "{{subscriptionRef2}}"
description: "Get details of a container subscription definition by providing the subscription's reference ID in the query request.\r\n\r\nNote:\r\n> The `subscriptionRef2` environment variable is used to identify the subscription. This variable was set in a previous request (\"Creating Container Subscriptions\"). If you want to search for a specific subscription, modify the `subscriptionRef` option in the URL.\r\n\r\n> If you are an administrative user, you have access to all global and all private subscriptions.\r\n\r\n> If you are a non-administrative user, you have access to global and your own private subscriptions.\r\n\r\n\r\nSee example. Refer to [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm)."
response:
- name: Getting Container Subscription Details by ID
originalRequest:
method: GET
header:
- key: Content-Type
type: text
value: application/json
- key: Accept
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers?subscriptionRef={{subscriptionRef2}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
query:
- key: subscriptionRef
value: "{{subscriptionRef2}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Content-Type
value: application/json;charset=UTF-8
- key: Content-Length
value: "787"
- key: Date
value: Wed, 16 Sep 2020 19:40:19 GMT
cookie: []
body: |-
[
{
"subscriptionRef": "9dcc3c98-7269-42ee-b20d-2ecd76312798",
"subscriptionName": "CONTAINERS_2",
"description": "Memory and CPU request range checks; return data and some attribute info",
"owner": "",
"outputType": "application/JSON",
"active": false,
"propertyReferences": [
{
"values": [
256,
4096
],
"propertyID": "a865a463-a257-4efb-b345-8b3694264dcf",
"operator": "[]"
},
{
"values": [
100,
1000
],
"propertyID": "8243d912-a49e-42e8-9171-8373711ae5eb",
"operator": "[]"
}
],
"returnStructure": {
"properties": [
{
"propertyID": "8243d912-a49e-42e8-9171-8373711ae5eb"
},
{
"propertyID": "8844fe4a-61eb-4231-aab3-138d278b94da"
},
{
"propertyID": "938f59b0-535f-4af6-985a-5d4b38ab0009"
},
{
"propertyID": "a865a463-a257-4efb-b345-8b3694264dcf"
},
{
"propertyID": "c1ad08a0-3742-4914-bed9-f1f43f36c8b1"
}
]
},
"lastTriggered": "",
"webhookStatus": ""
}
]
- name: Retrieving Container Subscription Results On-Demand by ID
request:
auth:
type: basic
basic:
- key: password
value: admin
type: string
- key: username
value: admin
type: string
method: GET
header:
- key: Content-Type
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/api/v2/subscriptions/containers/{{subscriptionRef2}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- api
- v2
- subscriptions
- containers
- "{{subscriptionRef2}}"
description: |-
Get on-demand results of a container subscription notification by providing the subscription's reference ID in the URL request.
Note:
> The `{{subscriptionRef2}}` environment variable is used to identify the subscription. This variable was set in a previous request (i.e. "Creating Container Subscriptions"). If you want to retrieve results for a specific subscription, update the `{{subscriptionRef2}}` variable in the URL with your desired subscription reference ID.
> If you are an administrative user, you have access to all global and all private subscription results.
> If you are a non-administrative user, you have access to all global and your own private subscriptions. If you do not have access to the subscription reference you provided, a "404 Not Found" response is returned.
See example. Refer to [Subscriptions: Results](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions_Results.htm).
response:
- name: Retrieving Container Subscription Results On-Demand by ID
originalRequest:
method: GET
header:
- key: Content-Type
type: text
value: application/json
url:
raw: "{{scheme}}://{{host}}{{port}}/api/v2/subscriptions/containers/{{subscriptionRef2}}"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- api
- v2
- subscriptions
- containers
- "{{subscriptionRef2}}"
status: OK
code: 200
_postman_previewlanguage: json
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: vary
value: accept-encoding
- key: Content-Encoding
value: gzip
- key: Content-Type
value: application/json;charset=UTF-8
- key: Transfer-Encoding
value: chunked
- key: Date
value: Wed, 16 Sep 2020 19:42:01 GMT
cookie: []
body: |-
{
"subscription": {
"name": "CONTAINERS_2",
"description": "Memory and CPU request range checks; return data and some attribute info",
"created": "Wed Sep 16 19:37:45 UTC 2020",
"createdBy": "admin",
"owner": ""
},
"count": 317,
"results": [
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "48cb8b44-98c6-30d0-95ef-6ca2dfc7fbac",
"namespace": "partner1"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "fcccb536-7677-3987-b149-838fd27742ec",
"namespace": "sgn"
},
{
"currentCpuRequest": "850.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "dbb0535c-8c90-3bd8-984f-9fd8141b37dc",
"namespace": "densifyoperations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "2b376b53-73a8-3692-8488-24a9a9ed8190",
"namespace": "kohlsk8s"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "environment-deployment__environment",
"hostName": "de49e120-d0cd-3f58-98b9-b6612b87ebc7",
"namespace": "fedex"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "699104c1-37c6-376a-9bd9-07a3a0c4af7a",
"namespace": "hux"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "614.0",
"displayName": "jasper-baseline-report-email-regular-cron-job__integrations",
"hostName": "ceeddf10-d50c-3bc6-87e1-2c334b140af3",
"namespace": "apleona-integrations"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "500.0",
"displayName": "sensor__sensor",
"hostName": "f25666f7-6468-30eb-87b2-b2e0ced988e3",
"namespace": "stackrox"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "653f62a0-c49e-30aa-8475-bef332f5f398",
"namespace": "ibmbanorte"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "4096.0",
"displayName": "web-deployment__web",
"hostName": "195ebfaa-14a9-32c0-a593-34f7f5861675",
"namespace": "experian"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "2c77d637-e260-3277-9ff5-0bc08181d662",
"namespace": "moneta"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "c1a5923e-12fe-37e3-b10e-45dd3206751b",
"namespace": "apleona"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "442bac34-4951-34a3-bd27-a5498c78214e",
"namespace": "spirent"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "3072.0",
"displayName": "audit-deployment__audit",
"hostName": "c09976fd-ea1d-3ee1-80a2-c7b2d6c3e505",
"namespace": "netskope"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "istio-pilot__discovery",
"hostName": "c0b36856-64db-354a-ac67-a4ade75ce9b0",
"namespace": "istio-system"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "9b1c6606-edc8-3da5-8b9e-20ccc8bf341e",
"namespace": "sgn"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "istio-pilot__discovery",
"hostName": "3fdac6a7-0778-32c9-af06-c213f29f3016",
"namespace": "istio-system"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "819.0",
"displayName": "environment-deployment__environment",
"hostName": "ddfb94e0-f222-3f97-a594-fc922a1a1247",
"namespace": "wiprobldcsandp"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "0c77e16e-dadc-348b-9db2-d1f2ba859e54",
"namespace": "rbcz"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "3e861b02-7239-3673-ae44-b7d676f3f3e6",
"namespace": "bns"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "4096.0",
"displayName": "environment-deployment__environment",
"hostName": "214f8c3d-6992-3f7e-91ec-17fd4f034e45",
"namespace": "northerntrust"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "256.0",
"displayName": "resize-report-emailer-cron-job__integrations",
"hostName": "f475d8fa-c44e-3801-b581-4bb26d6b78a2",
"namespace": "fis-integrations"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "700.0",
"displayName": "splunk-connect-splunk-kubernetes-metrics-agg__splunk-fluentd-k8s-metrics-agg",
"hostName": "c2bfd5aa-ad98-3e3f-a595-de5fdd775efb",
"namespace": "splunk"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "loader-deployment__loader",
"hostName": "a1957ea2-8ed2-3752-a6ed-10bf209b0d64",
"namespace": "demo"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "ef276f07-b733-3980-83e7-2b6e9c76e461",
"namespace": "aws"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "512.0",
"displayName": "audit-deployment__audit",
"hostName": "86890be5-7218-373a-ae6e-d0481ed82745",
"namespace": "aval"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "ce5fec76-6da5-36d2-8d32-c5067edd082a",
"namespace": "ibmgrouporomero"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "9961adea-b42f-35f2-865b-54e8bad884a9",
"namespace": "juniper"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "576779f5-534d-3993-9396-dab106aef3ef",
"namespace": "ibmmotiva"
},
{
"currentCpuRequest": "100.0",
"currentMemRequest": "800.0",
"displayName": "redis-redis-ha-server__redis",
"hostName": "3443ccd5-8deb-3b04-b27e-8f2085087919",
"namespace": "redis"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "b15a7a23-96f4-366a-92a2-bbc0d2999424",
"namespace": "rbhr"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "18dde272-c7b5-3b2e-9d2a-1f39b41a4835",
"namespace": "soneparus"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "256.0",
"displayName": "compare-accounts-cron-job__integrations",
"hostName": "0321fedd-37e4-32d3-b6fe-3fa57afcc181",
"namespace": "forgeautodesk-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "0b8e973c-e803-303e-88e5-08775b33eb2b",
"namespace": "greenshield"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "8aaad273-ad26-3932-996e-b80528fc2f5c",
"namespace": "eksopsdemo"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "b6b578ab-08ca-3164-993c-4341f97084f6",
"namespace": "rbbg"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "loader-deployment__loader",
"hostName": "3938bda7-9e3e-3a25-bc89-a9dd41ed1dbb",
"namespace": "ibmatt"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "f5ad1f60-df03-3f25-bdf2-38f1b80e2145",
"namespace": "juniper"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "b8edece6-7349-3bd8-bd6b-6cc59f517b8e",
"namespace": "getnet"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "eba8e5ca-bcf0-3cad-8ca7-942c4e4b2f1f",
"namespace": "aval"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "loader-deployment__loader",
"hostName": "7d7edcbf-7e9b-3097-8481-56d449a9d8be",
"namespace": "partner1"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "9d412d0a-02f9-340d-8f9c-18acd46866fb",
"namespace": "greenshielduat"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "datadog-integration-cron-job__integrations",
"hostName": "ac71557d-87b3-35b2-8cc5-09ea15138b7d",
"namespace": "hux-integrations"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "3072.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "8c64ac21-d9ad-3723-bf9b-8fecb69b9cdc",
"namespace": "rbhr"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "c482b447-9e79-3fdf-90e1-6c7fad9a16ca",
"namespace": "rbbh"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "33f1352c-93ba-3408-bca4-9f9ae6283a18",
"namespace": "hilton"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2048.0",
"displayName": "environment-deployment__environment",
"hostName": "e8b393a3-31b3-31da-8180-3b07cb980c97",
"namespace": "duluxgroup"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "f09cfede-1ee2-3297-96d0-564dacff552e",
"namespace": "apleona"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "istio-pilot__discovery",
"hostName": "533f0b48-a315-31f8-9fcd-cf31ccb8bc03",
"namespace": "istio-system"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "750.0",
"displayName": "splunk-connect-splunk-kubernetes-metrics-agg__splunk-fluentd-k8s-metrics-agg",
"hostName": "f848510c-8ed7-3adb-840f-b3a73bb1802a",
"namespace": "splunk"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "5e899378-41d1-301f-b606-028fa51af567",
"namespace": "tfg"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "3072.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "51d3567f-93f8-3f24-a895-720ba9533ad0",
"namespace": "hilton"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "cc6fe493-90f9-31cd-b944-87342f156676",
"namespace": "bns"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "03f864bd-14c1-3396-9482-e741cac1aefc",
"namespace": "natera"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "300.0",
"displayName": "splunk-connect-splunk-kubernetes-metrics-agg__splunk-fluentd-k8s-metrics-agg",
"hostName": "24582c3d-62d5-3e52-8442-f6ebec1a6701",
"namespace": "splunk"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "2ca4d968-9de2-3d37-bdba-7af7bd249a85",
"namespace": "ibmmeijer"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "3072.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "d665279f-11d1-3a25-b482-e75c9a3d0aa5",
"namespace": "kohls"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "8ebaa891-8f29-372d-9682-5f89277c8797",
"namespace": "ibmpnp"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "memory-metrics-cron-job__integrations",
"hostName": "4133c4c8-a45a-3368-ad7d-155fd34d8c5d",
"namespace": "forgeautodesk-integrations"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "dd8c8e91-3271-3298-a8c2-be362362e29a",
"namespace": "ibmhertz"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "34762929-19dc-392f-a909-9640f2ba2a83",
"namespace": "rbbh"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "ba6ae9e9-ec16-3a20-9973-0440411a517a",
"namespace": "eksopsdemo"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "3072.0",
"displayName": "web-deployment__web",
"hostName": "2f19694a-85de-39b0-8bf6-86e14c9b8166",
"namespace": "disneycur"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "ff35cbbe-bd90-38c6-aa87-37136b2c4b4e",
"namespace": "autodeskpoc1"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "192721a0-637c-37af-a3fc-e4583d10f542",
"namespace": "parkland"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "287adea7-d243-3d66-836b-16484495ad90",
"namespace": "autodeskpoc1"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "500.0",
"displayName": "sensor__sensor",
"hostName": "e521aa25-7a53-3a0e-a97d-e870dd1a8b0b",
"namespace": "stackrox"
},
{
"currentCpuRequest": "600.0",
"currentMemRequest": "1024.0",
"displayName": "loader-deployment__loader",
"hostName": "06eb5900-b4d2-3748-91a5-7909ac28dc6b",
"namespace": "eksqademo"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "040b4be4-3071-3aad-9ed3-7b624aae247e",
"namespace": "demo"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1536.0",
"displayName": "loader-deployment__loader",
"hostName": "a0974c07-35e4-3739-bcbb-e5db5da2439c",
"namespace": "hilton"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "datadog-integration1-cron-job__integrations",
"hostName": "206b2c65-cf7f-3c40-83e2-2d0e48051471",
"namespace": "libertymutual-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "ce4d8b41-34af-3068-83a1-b8a77e398789",
"namespace": "canopius"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "3072.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "fdc23449-9628-3a15-afd2-ed0d724b1c9d",
"namespace": "experian"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "5fae87da-b590-3343-9871-77fa69f1a0ea",
"namespace": "parkland"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "8bd3076c-5cc5-3cc2-a804-f4c5029b16dc",
"namespace": "h3g"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "2f69afec-d819-3cbe-b366-63c6b4bc0223",
"namespace": "shadow-nine"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "f789169b-764b-38c9-bffd-a128770af43a",
"namespace": "parkland"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "update-bu-by-aws-account-cron-job__integrations",
"hostName": "cff3bd4e-ffeb-3f6c-98c0-bf5599322ab3",
"namespace": "hux-integrations"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "audit-deployment__audit",
"hostName": "ecfb99c6-0ac9-3cfe-b3ed-bfc6911a7da7",
"namespace": "densifyoperations"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "96927edb-e01d-3615-8d52-a8280eb85e6d",
"namespace": "ibmbanorte"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "7edffd3e-0733-3e84-a0a6-2feb8a9a8e02",
"namespace": "apleona"
},
{
"currentCpuRequest": "520.0",
"currentMemRequest": "2048.0",
"displayName": "densify1__data-forwarder",
"hostName": "06a33729-2bd9-3717-aa5b-965c22ad9f2a",
"namespace": "default"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "3722243f-d4a7-3798-9602-d26624e7305b",
"namespace": "shadow-nine"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "4c159bba-f26e-3110-bd30-23255fb75b29",
"namespace": "canopius"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "0e45ca2f-7af8-30d7-ad1d-718a217a75bc",
"namespace": "getnet"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "953.0",
"displayName": "istio-telemetry__mixer",
"hostName": "47d7824a-873a-3cc9-b940-938ce64def8b",
"namespace": "istio-system"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "cf039ea5-b6ea-3c1a-ba15-92d4937ed641",
"namespace": "ibmpnp"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "256aa3b7-66f1-3db4-b3e5-72ec14e47152",
"namespace": "soneparus"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "0d8c51d8-d393-387b-9082-e6d3bda71465",
"namespace": "unitingcare"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "a2df5669-c46a-3928-8c66-86e2de3d8119",
"namespace": "juniper"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "2fb5748a-8211-3d07-9771-2ed361fe0aba",
"namespace": "greenshield"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "37f875b1-9f44-3b7f-9284-a6b8604837d0",
"namespace": "onelinkbpo"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "8ad73666-1c92-3b7e-a171-8ede5c4fcb92",
"namespace": "parkland"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "cab8f385-572e-3237-84d1-7c480b7d0cd4",
"namespace": "atb"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "loader-deployment__loader",
"hostName": "4aa29634-6881-3e56-bb03-a50f3c5ae0b0",
"namespace": "netskope"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "liberty-s3-d3-cron-job__integrations",
"hostName": "5c544049-16c1-30ae-b41e-e6a99fecc1e3",
"namespace": "libertymutual-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "5726d459-5f3e-3478-ae28-0081154678f3",
"namespace": "moneta"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "0d0023cc-5792-33cd-9395-750fc5874433",
"namespace": "sgn"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "loader-deployment__loader",
"hostName": "a7828cdb-5f3a-310e-a1bc-4950281c81f7",
"namespace": "ikea"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "512.0",
"displayName": "audit-deployment__audit",
"hostName": "7bb29ec2-65eb-317e-b474-f7a083887fe1",
"namespace": "unitingcare"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "4096.0",
"displayName": "kohls-integration-pull-cron-job__integrations",
"hostName": "a7525399-aca2-3959-b1b1-625c36bd3e38",
"namespace": "kohls-integrations"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "cfb171f9-2548-3678-80f6-6e09ef5f13ba",
"namespace": "ikea"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "d76d7b4f-29cc-32bf-8f8c-728dbc234382",
"namespace": "moneta"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "drs-moves-populate-cron-job__integrations",
"hostName": "56a8dd94-f78f-354e-9473-c28f1c2a6ba5",
"namespace": "hux-integrations"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "5bc9e5a6-8a28-385b-aa9b-f7268404d511",
"namespace": "autodeskpoc1"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "a101c0b8-57e9-378c-bb0a-11e07202ecf7",
"namespace": "eksedge-orc"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "dc891bda-14e7-35c8-9475-f479e8277f2b",
"namespace": "netskope"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "724a968f-f4cb-3c31-9af2-b3ba12c46f85",
"namespace": "ibmgrouporomero"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "70b7900d-4f51-36fc-b20f-f11c2f1dcf64",
"namespace": "spirent"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "b6b57361-ee1f-3c2f-955c-e277a6518170",
"namespace": "ikea"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "drs-moves-populate-cron-job__integrations",
"hostName": "149e9506-777a-30ec-9ddf-8956ccc3bff5",
"namespace": "parkland-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "deffd714-f1f0-3520-8742-d7643545bb11",
"namespace": "aws"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "527aa0f7-5a48-38e7-87b1-19cda2261c66",
"namespace": "ibmmeijer"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "256.0",
"displayName": "testperf-v2-sched-cron-job__integrations",
"hostName": "f2b7827e-d8c7-3583-9971-fe2c200ee07f",
"namespace": "forgeautodesk-integrations"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "istio-pilot__discovery",
"hostName": "eca32448-fda8-34b8-9d55-47502925feb1",
"namespace": "istio-system"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "0b58a278-8177-3af4-a54e-bddc10a77aea",
"namespace": "natera"
},
{
"currentCpuRequest": "300.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "7f882886-b813-37a0-af8e-b3fa21f7990f",
"namespace": "unitingcare"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "37462f4a-0589-3fb0-a030-cc919afc2021",
"namespace": "juniper"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "6281f082-d15a-3489-8f6b-3b96fbf2f81e",
"namespace": "ibmpnp"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "b57421e1-8cc2-3843-8ec4-800e66b9677a",
"namespace": "kohlsk8s"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "drs-moves-populate-cron-job__integrations",
"hostName": "d1e0ef43-b7d3-3c7a-a77a-82628826a14e",
"namespace": "soneparus-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "3eb83630-0538-3225-91f6-982124722e4e",
"namespace": "tfg"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "4096.0",
"displayName": "web-deployment__web",
"hostName": "5cd8f9e2-5bb4-3f6d-8b13-90af2352d7fa",
"namespace": "spirent"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1536.0",
"displayName": "loader-deployment__loader",
"hostName": "4e6e1387-3f2f-3d3b-8398-20da959134fe",
"namespace": "atriumuw1"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "tbm-report-emailer-cron-job__integrations",
"hostName": "6ac41bd5-d75d-359e-b889-ee29d219172a",
"namespace": "fedex-integrations"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "093d852b-8341-3e73-a921-c01b885fe6ec",
"namespace": "healthefx"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "16ebf290-86ce-3563-a909-db9925679535",
"namespace": "hfurtado"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "300.0",
"displayName": "splunk-connect-splunk-kubernetes-metrics__splunk-fluentd-k8s-metrics",
"hostName": "56a9d313-4973-3678-b78e-a427409a81ac",
"namespace": "splunk"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "ea91bb94-ae50-3416-985a-8763c7c5eb39",
"namespace": "getnet"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1536.0",
"displayName": "environment-deployment__environment",
"hostName": "2e648c16-82c4-33a9-a867-2e801f8babfc",
"namespace": "libertymutual"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "3072.0",
"displayName": "audit-deployment__audit",
"hostName": "3cd09ec8-0a1b-35ec-8454-819f168a82e4",
"namespace": "manulife"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "4b7c27fd-aa6f-3e9b-bec8-be40ff975583",
"namespace": "greenshielduat"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "500.0",
"displayName": "sensor__sensor",
"hostName": "bf5ed02e-4360-3cdd-8be0-877256ac934e",
"namespace": "stackrox"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "cc1326ed-a550-31ee-af58-09ebfddaeace",
"namespace": "ibmbnsf"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "ca5642dc-9e46-3ac9-a253-9371b17759a4",
"namespace": "soneparus"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "e521a349-77e0-37e4-b18e-46b69ce21a16",
"namespace": "ibmmeijer"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "e868d75d-8f4a-3002-83e0-dfbb83d58b48",
"namespace": "onelinkbpo"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "3072.0",
"displayName": "audit-deployment__audit",
"hostName": "91d5bb49-1b7b-373b-816e-9c4d61511587",
"namespace": "fis"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "3072.0",
"displayName": "audit-deployment__audit",
"hostName": "e1201dc3-2108-36a0-96d9-ac36725448ca",
"namespace": "northerntrust"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "953.0",
"displayName": "istio-telemetry__mixer",
"hostName": "8e4bfd7d-e06a-3043-b789-c51a285fb905",
"namespace": "istio-system"
},
{
"currentCpuRequest": "100.0",
"currentMemRequest": "256.0",
"displayName": "nginx__nginx",
"hostName": "db1ead3f-33cf-31cd-bf1c-6d0d1e3290f4",
"namespace": "default"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "drs-moves-populate-cron-job__integrations",
"hostName": "63871e71-6f0a-3d0d-9fad-a6784fe00ee1",
"namespace": "ibmbanorte-integrations"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "loader-deployment__loader",
"hostName": "4f570c4c-2f66-30dd-8387-51d6e1a29531",
"namespace": "manulife"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1536.0",
"displayName": "environment-deployment__environment",
"hostName": "dd63f4d9-77f6-33a1-a376-a2fbe758e44a",
"namespace": "blackberry"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "f2ea1e8a-c6e2-3c11-927d-e406b6960b80",
"namespace": "ibmmotiva"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "716.0",
"displayName": "environment-deployment__environment",
"hostName": "df88c34b-817e-39ae-b155-1139f5387f71",
"namespace": "experian"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "loader-deployment__loader",
"hostName": "ba639cf8-3be6-3ada-ac08-6d054996be0b",
"namespace": "eksedge-orc"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "04ef769a-9f64-3929-8087-13bea030bac0",
"namespace": "greenshield"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "300.0",
"displayName": "splunk-connector-splunk-kubernetes-metrics-agg__splunk-fluentd-k8s-metrics-agg",
"hostName": "16ac23b4-26ab-3aba-a7d4-03aee94ea76b",
"namespace": "splunk"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "bb6ba7a6-2667-3b56-8687-8d4c5a722f54",
"namespace": "atriumuw1"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "vmware-change-tracking-emailer-cron-job__integrations",
"hostName": "5a732113-bfe3-374e-aed7-95cf69d12c73",
"namespace": "parkland-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "a34a5d25-b4da-3608-b157-28edf0d5469c",
"namespace": "ibmmeijer"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "47486015-35d9-3f2a-9f5f-9f7cffcd20b8",
"namespace": "ibmgrouporomero"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "1af4d252-1755-3cd7-ae05-c53213a7e9d2",
"namespace": "eksedge-orc"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "1536.0",
"displayName": "loader-deployment__loader",
"hostName": "31477183-bc7c-3c06-86e2-357704872c19",
"namespace": "densifyoperations"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "500.0",
"displayName": "splunk-connect-splunk-kubernetes-metrics__splunk-fluentd-k8s-metrics",
"hostName": "6a43ed70-24e6-38ac-8a8a-8744ecc1bbf8",
"namespace": "splunk"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "300.0",
"displayName": "splunk-connect-splunk-kubernetes-metrics-agg__splunk-fluentd-k8s-metrics-agg",
"hostName": "d3de4875-c779-3efb-bf1a-e2809dd15c5e",
"namespace": "splunk"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "datadog-integration2-cron-job__integrations",
"hostName": "cb1c9307-e621-3b23-a4df-e3cd0841177a",
"namespace": "libertymutual-integrations"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "500.0",
"displayName": "splunk-connect-splunk-kubernetes-metrics__splunk-fluentd-k8s-metrics",
"hostName": "2b93a6f7-6695-362d-81db-2734e7c3605f",
"namespace": "splunk"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "jasper-baseline-report-email-weekly-cron-job__integrations",
"hostName": "f9f48384-4773-3274-93b0-dfdc283f2741",
"namespace": "parkland-integrations"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "512.0",
"displayName": "audit-deployment__audit",
"hostName": "efa3fd63-b4fc-3705-9040-91fbe71ec4db",
"namespace": "soneparus"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "2bbb6f6f-98f0-33a4-bef4-d723789f34d1",
"namespace": "onelinkbpo"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "loader-deployment__loader",
"hostName": "6566c151-252c-3b96-97df-6dac90ef65e7",
"namespace": "moneta"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1536.0",
"displayName": "environment-deployment__environment",
"hostName": "042ab396-df06-3e6f-aa1e-4cb4a75ee705",
"namespace": "densifyoperations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "512.0",
"displayName": "environment-deployment__environment",
"hostName": "92e7f0ef-762f-37e9-b597-484713c5ec97",
"namespace": "rbbh"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "b620e71a-56c3-3853-b822-4c771ae00f82",
"namespace": "bns"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "clusters-forecast-cron-job__integrations",
"hostName": "27928276-a1ab-3de2-a8f6-468d0c4c5a4f",
"namespace": "northerntrust-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "73594ba4-01bf-31d3-99f9-c2a94aa811aa",
"namespace": "rbhr"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "744508c8-6433-3a0e-a890-79ff77eb735d",
"namespace": "juniper"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "loader-deployment__loader",
"hostName": "c6c33e3e-423f-33db-8b6d-d7e451f318d4",
"namespace": "fis"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "ea54a980-7902-367b-9c3c-36a20e49980c",
"namespace": "ibmmotiva"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "da3a9293-a6cd-3713-8475-ac27e5074ea9",
"namespace": "healthefx"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "512.0",
"displayName": "audit-deployment__audit",
"hostName": "051e0d9f-a48f-3f32-98a4-e0e5545c7fd4",
"namespace": "partner1"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "drs-moves-populate-cron-job__integrations",
"hostName": "08171ea3-0004-349f-b43a-564148770843",
"namespace": "greenshield-integrations"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "forge-recommendations-cron-job__integrations",
"hostName": "50d64cb1-a937-38bd-93e8-2769f14b497f",
"namespace": "forgeautodesk-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "7d4f2a7d-85cb-3494-a597-9d5f5bb281b5",
"namespace": "apleona"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2560.0",
"displayName": "loader-deployment__loader",
"hostName": "dc3ae9f7-88d7-3933-ae31-84971fe390b1",
"namespace": "atb"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "b88cda8f-c74e-3409-9356-e8039c2ef08c",
"namespace": "tfg"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "98c7b8aa-e405-3aa4-89a2-a4883bcb6a96",
"namespace": "partner1"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "7df73eee-d80f-3f20-b415-2c2981de98c1",
"namespace": "canopius"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "953.0",
"displayName": "istio-telemetry__mixer",
"hostName": "a016a5c7-739f-3e7d-800e-cdccf81b82c0",
"namespace": "istio-system"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "c38a9f87-3d1f-350e-b6d5-749b27a919c8",
"namespace": "netskope"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "953.0",
"displayName": "istio-telemetry__mixer",
"hostName": "dc8c22ef-02bb-3d58-9f7e-e1c8ad16c1de",
"namespace": "istio-system"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1536.0",
"displayName": "environment-deployment__environment",
"hostName": "11b551f6-4a3b-36f3-9561-71d6925fea16",
"namespace": "desautodesk"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "6e4b2a7f-5c80-330c-9d93-d404c6c98a38",
"namespace": "ibmmeijer"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "953.0",
"displayName": "istio-telemetry__mixer",
"hostName": "b24de8a6-7aea-3f04-a2f7-d1f9ab096550",
"namespace": "istio-system"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "71f63fc3-ff48-3d57-9cdb-1343dbc5728c",
"namespace": "ibmgrouporomero"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "6b52320d-9c98-3fdf-9998-eb56d2ae7f2c",
"namespace": "ibmmotiva"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "jasper-report-mailing-cron-job__integrations",
"hostName": "d47c5a9c-7570-361f-9456-9562ad295d8d",
"namespace": "bns-integrations"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "3072.0",
"displayName": "audit-deployment__audit",
"hostName": "612c8925-e915-3ffa-a0be-b21a5a1787d9",
"namespace": "ibmbnsf"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "e67e8c1c-5fab-3cc8-86bd-8c8d25d6466b",
"namespace": "demo"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "50e42542-e55c-3b00-8517-8b1739c88c50",
"namespace": "ibmatt"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1536.0",
"displayName": "loader-deployment__loader",
"hostName": "52a14423-34ac-3bab-8759-bd95dd0216cc",
"namespace": "rbhr"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "300.0",
"displayName": "splunk-connect-splunk-kubernetes-metrics__splunk-fluentd-k8s-metrics",
"hostName": "5704681d-2886-3e7c-9d61-4eb1524729d1",
"namespace": "splunk"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "3da7eb61-47f5-3ccc-8237-b96c372e5147",
"namespace": "rbbg"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "attributeimportbycostcenter-cron-job__integrations",
"hostName": "3b999934-86ea-3bd1-bf75-8eb650298416",
"namespace": "manulife-integrations"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "5421397d-e838-3a7f-af03-ad25583d649b",
"namespace": "ibmpnp"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "7286ff13-fa0c-3f9e-9795-9982b4dde56a",
"namespace": "eksedge-orc"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "liberty-dynamodb-d3-cron-job__integrations",
"hostName": "a2429973-5610-3d71-aeb0-0df1a0aeb08e",
"namespace": "libertymutual-integrations"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "combined-tagger-cron-job__integrations",
"hostName": "356aa7a4-cae2-31ab-9f15-9cc5dbdbb93d",
"namespace": "fedex-integrations"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1536.0",
"displayName": "environment-deployment__environment",
"hostName": "e41f8d99-7b35-3168-9e72-5d7ebe2ced8f",
"namespace": "verisk"
},
{
"currentCpuRequest": "600.0",
"currentMemRequest": "1024.0",
"displayName": "loader-deployment__loader",
"hostName": "009a4f8f-16a5-31a8-9c5c-d770e2c27cb3",
"namespace": "eksopsdemo"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "94146001-3218-34e1-a6a4-47858a737993",
"namespace": "healthefx"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "513bff22-621d-3485-95d5-9760be3a94b6",
"namespace": "vodafoneuk"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "8b458e8c-534b-398a-a457-4d887d65e011",
"namespace": "atriumuw1"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "3072.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "c9929fb1-c089-3210-8b5c-1eed4dd89cb9",
"namespace": "wiprobldcsandp"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "bfbb8dc8-03c3-3ba9-addf-b57dde28224e",
"namespace": "eksqademo"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "86f46d94-1e3c-353c-a0c8-0070de782738",
"namespace": "ibmbanorte"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "jasper-baseline-report-email-weekly-cron-job__integrations",
"hostName": "e7b7209a-85dd-35f2-81a2-8d70a309fd98",
"namespace": "ibmatt-integrations"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "fcefb3a3-f184-33f6-b700-e4a041c4863c",
"namespace": "densifyoperations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "72a102f9-c424-3cc8-909c-6414f73aacd0",
"namespace": "healthefx"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "440120ac-0148-310a-baf2-d4349e68e221",
"namespace": "pentest"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "a4aaa6d1-4275-36f9-9966-9a10a5864938",
"namespace": "fis"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "web-deployment__web",
"hostName": "fc973e7d-078f-3541-b498-3ee70aa3154d",
"namespace": "eksopsdemo"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "84b8140f-db6b-302f-8ea6-7c00cc22802d",
"namespace": "getnet"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "300.0",
"displayName": "splunk-connect-splunk-kubernetes-metrics-agg__splunk-fluentd-k8s-metrics-agg",
"hostName": "54a95789-a7be-350e-86a3-87f806aa8410",
"namespace": "splunk"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "guest-disk-report-populate-cron-job__integrations",
"hostName": "293d2fba-9a1c-3352-940d-0ce82abe2dfa",
"namespace": "chubb-integrations"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "0396229d-c3cb-3713-8ad3-99694decea93",
"namespace": "chubb"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "417224e2-3ab6-340a-b4e8-4ccb4d61ba54",
"namespace": "greenshielduat"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "43dbb3b5-f5d9-3889-8ec0-bbdf73d59174",
"namespace": "chubb"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "a4cd4989-ec5c-3136-88c6-f9201f5f8ffb",
"namespace": "rbcz"
},
{
"currentCpuRequest": "136.0",
"currentMemRequest": "256.0",
"displayName": "metrics-server__metrics-server",
"hostName": "d65fbeae-cac9-35b6-aa6d-549f549d4130",
"namespace": "kube-system"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "web-deployment__web",
"hostName": "c7b42fbb-61e7-3f3c-b7aa-61626b64c423",
"namespace": "eksqademo"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "1a4095c1-7248-3124-aa6b-37776f64df34",
"namespace": "ibmpnp"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "eba5b174-8bd9-326b-8403-e0b79f1d6fbc",
"namespace": "canopius"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "aadb466f-a901-38b9-90f0-f36db9f2d123",
"namespace": "ibmhertz"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "b5398fbb-c479-3023-aa35-ac5d02381e64",
"namespace": "parkland"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "512.0",
"displayName": "environment-deployment__environment",
"hostName": "24ee7216-cfd1-3a7a-ae70-4f42232e79e5",
"namespace": "spirent"
},
{
"currentCpuRequest": "100.0",
"currentMemRequest": "800.0",
"displayName": "redis-redis-ha-server__redis",
"hostName": "c568c1e3-480a-3986-897e-87ab835a87a3",
"namespace": "redis"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "f0fcc9fa-3cd1-388d-9b5f-4faf6423e3c0",
"namespace": "unitingcare"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "485b5b8a-4ac6-3035-b989-69eed4825ad1",
"namespace": "natera"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "8397d10f-6ca8-3775-b691-3ab10e94e3bd",
"namespace": "greenshielduat"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "a535d05d-24b9-3801-9b28-cf432b11df87",
"namespace": "eksopsdemo"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "bb3afc81-9ac5-3dba-afd7-ea86dbc583cd",
"namespace": "hux"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "f819f142-3b72-305e-ac6a-7c726bf0dbbf",
"namespace": "blackberry"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "3072.0",
"displayName": "audit-deployment__audit",
"hostName": "39dc7df4-2874-3f4b-a392-640cfecc5f34",
"namespace": "ibmatt"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "512.0",
"displayName": "environment-deployment__environment",
"hostName": "d4137f3b-38f7-3508-a102-dc128a3610a6",
"namespace": "soneparus"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "2184d17b-bd16-343b-a010-8313d55b43ea",
"namespace": "onelinkbpo"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "03b61919-3a09-3390-a3c3-b4a2a2e07a71",
"namespace": "canopius"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "cb13c0b9-9a03-39a7-b349-5d5f6aa60a11",
"namespace": "disneycur"
},
{
"currentCpuRequest": "100.0",
"currentMemRequest": "300.0",
"displayName": "cluster-autoscaler__cluster-autoscaler",
"hostName": "9ebf1ccf-c1bb-37fd-8617-a6cdb266c196",
"namespace": "kube-system"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "b0c50190-a64e-39fe-b3d5-bde0e1dbcd1b",
"namespace": "bns"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "environment-deployment__environment",
"hostName": "c432acd9-e848-39f8-8684-86c682a15173",
"namespace": "disney"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "512.0",
"displayName": "environment-deployment__environment",
"hostName": "9453c143-f337-3d7f-bef4-6cd8f4dce49c",
"namespace": "aval"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "56cf02e0-4057-3f88-b219-5dbcd58ffe57",
"namespace": "greenshield"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "a61f5c2a-a889-35df-8488-4f0598cbc42a",
"namespace": "eksqademo"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "e90cec15-3b81-376a-b7ec-7c8de3ce412c",
"namespace": "atb"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "drs-moves-populate-cron-job__integrations",
"hostName": "d6a8179d-2a97-3476-b018-722ace4b4966",
"namespace": "atb-integrations"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "cfaf1264-a8d4-3196-8a1a-a484d7931521",
"namespace": "shadow-nine"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "3584.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "1bf5d164-8ca8-3cfb-a451-015921e95dde",
"namespace": "autodeskpoc1"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1536.0",
"displayName": "environment-deployment__environment",
"hostName": "b11a3732-6fbf-340a-8c9e-3c2aa5a89e46",
"namespace": "forgeautodesk"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "a5c78d36-d0f5-32c5-aae7-8e0bf8f5756b",
"namespace": "ibmhertz"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "fcdbd4ec-baea-3fd0-9aa7-e408bbada111",
"namespace": "experian"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "30c97a4f-4523-3179-b3df-1bf75167e864",
"namespace": "aws"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "c043f69c-3115-3cd2-acca-a3e16ca6a579",
"namespace": "healthefx"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "loader-deployment__loader",
"hostName": "cce9f472-2436-38e6-8f62-95bf08e4fb68",
"namespace": "spirent"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "loader-deployment__loader",
"hostName": "44d89713-251b-3cb0-8f8a-d5bbd3102c7c",
"namespace": "shadow-nine"
},
{
"currentCpuRequest": "400.0",
"currentMemRequest": "512.0",
"displayName": "web1__redis",
"hostName": "0c877616-a19c-37d3-b3a6-995e63db1f7b",
"namespace": "default"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "30c5916a-6545-3961-9489-e22ebb75785e",
"namespace": "rbbh"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "b9903435-e898-3f5c-a7fa-080a5064c4f6",
"namespace": "greenshield"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "260b0888-42b3-3108-a09d-30dbab2fec8f",
"namespace": "autodeskpoc1"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "drs-moves-populate-cron-job__integrations",
"hostName": "fd8d461b-5c41-397c-8566-6c546fd249e4",
"namespace": "vodafoneuk-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "512.0",
"displayName": "environment-deployment__environment",
"hostName": "222d5d44-5f6d-3d4d-a512-9c735d5bdcfa",
"namespace": "rbbg"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "953.0",
"displayName": "istio-telemetry__mixer",
"hostName": "8ebff8f4-f4d6-305a-97e8-489d079989e6",
"namespace": "istio-system"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "3bbd2efb-1ce8-312c-bf1d-1567b2490924",
"namespace": "ibmbnsf"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "621c16be-b5c6-3913-9d0c-a8867759080f",
"namespace": "rbbg"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "8b5f5b1d-6aa7-3a67-b6ee-69bf43a1ef17",
"namespace": "ibmmotiva"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "500.0",
"displayName": "sensor__sensor",
"hostName": "8eb7a01d-5a57-35e2-91bc-b4a8b2a4859e",
"namespace": "stackrox"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "452d7a76-f0ab-35b8-ad8d-e033953b4c33",
"namespace": "vodafoneuk"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "512.0",
"displayName": "audit-deployment__audit",
"hostName": "64c7e05f-e95d-3db7-a57f-f690b372044e",
"namespace": "wiprobldcsandp"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "58d08516-a180-39b5-aa5b-bb5f964e4348",
"namespace": "manulife"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "56bd081c-af56-3274-9656-fe81302e92dc",
"namespace": "aws"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "a1070932-259a-3aa2-9ca3-0952e3286ae0",
"namespace": "rbcz"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "3072.0",
"displayName": "audit-deployment__audit",
"hostName": "b4b205cc-9df0-35a2-94ea-500c3b0a1f4b",
"namespace": "ikea"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "b81b5ee2-3592-3f9f-827a-db57d7be8836",
"namespace": "atriumuw1"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "f0170a9f-d95b-34d8-b10b-ab3ab1d00a1e",
"namespace": "ibmgrouporomero"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "512.0",
"displayName": "environment-deployment__environment",
"hostName": "857ae838-e291-3108-9d43-40c000e1e22e",
"namespace": "partner1"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "28307b63-95c1-3b98-b249-c84a70e9a61d",
"namespace": "ibmbanorte"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "d41ad823-bf49-3352-95e1-0521a656c28c",
"namespace": "aws"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "1af3012c-e8c3-3623-ae44-2c94c8830791",
"namespace": "onelinkbpo"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "guest-disk-report-populate-cron-job__integrations",
"hostName": "a31589d1-ff70-366c-9660-8a4599b2f720",
"namespace": "ibmbanorte-integrations"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "49c5d574-1354-3eaa-8171-b36689d1155e",
"namespace": "northerntrust"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "fc80d9e8-31e1-37bf-a851-20586d0c88f6",
"namespace": "rbhr"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "datadog-integration-cron-job__integrations",
"hostName": "819eaf10-fb0c-3ba6-ac9b-a8e30045b303",
"namespace": "hilton-integrations"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1536.0",
"displayName": "loader-deployment__loader",
"hostName": "0120b563-a94d-3dd4-a3b7-894258e55bc1",
"namespace": "hux"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "ri-status-report-email-cron-job__integrations",
"hostName": "8b8c5ef9-09d7-3af3-8055-29cc714678f4",
"namespace": "citi-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "loader-deployment__loader",
"hostName": "05fa4100-1e9b-37cd-981c-50d00f8c4d20",
"namespace": "rbbh"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "loader-deployment__loader",
"hostName": "4464f3fa-2d56-3549-939f-be2a6252b33a",
"namespace": "chubb"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "bd576067-b6a6-397b-a65d-2ecc96a63280",
"namespace": "ibmhertz"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "300.0",
"displayName": "splunk-connector-splunk-kubernetes-metrics__splunk-fluentd-k8s-metrics",
"hostName": "e1e310ed-c7eb-371a-b557-6afdddc68957",
"namespace": "splunk"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "79730f97-cfeb-3051-b437-03927a66102a",
"namespace": "kohlsk8s"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "1024.0",
"displayName": "monetaicingaworkload-cron-job__integrations",
"hostName": "1f4cfffe-2f31-35e2-8b62-75278744677d",
"namespace": "moneta-integrations"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "37863c8b-b16b-3c9c-9be8-f9dbfcdb2442",
"namespace": "eksqademo"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "drs-moves-populate-cron-job__integrations",
"hostName": "70e17776-33bf-3c8e-976b-b34505911775",
"namespace": "disney-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "1d367a05-8c42-3289-9bcd-16780f1cf6bf",
"namespace": "ibmhertz"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "e1e0b9a1-a3a7-36c4-9233-51d365191b66",
"namespace": "tfg"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "8ac8ef58-2b17-343d-a364-eadeffa139bf",
"namespace": "manulife"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "loader-deployment__loader",
"hostName": "47e80b33-56fa-3df2-b609-017338f3879a",
"namespace": "natera"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "loader-deployment__loader",
"hostName": "0f97c486-fba2-323f-aa72-4318b293cc7b",
"namespace": "ibmbnsf"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "045bb316-e7be-356a-90e2-de087cac25c3",
"namespace": "getnet"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "3072.0",
"displayName": "audit-deployment__audit",
"hostName": "1c254f00-b258-3e39-a703-8d8c0ad3cdb0",
"namespace": "chubb"
},
{
"currentCpuRequest": "100.0",
"currentMemRequest": "300.0",
"displayName": "cluster-autoscaler__cluster-autoscaler",
"hostName": "80236277-9129-340d-be8e-82e65d04b7e6",
"namespace": "kube-system"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "500.0",
"displayName": "sensor__sensor",
"hostName": "94c2d8e5-10b0-306f-aaa0-c89552f8d793",
"namespace": "stackrox"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "51bffa8d-d9e9-33e5-b4bf-f104c8911558",
"namespace": "fis"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "788c5165-6b08-3880-ab38-fa2145a4f291",
"namespace": "demo"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "audit-deployment__audit",
"hostName": "a7fbbfa9-f0d8-346c-84ae-5c1cabaf55b4",
"namespace": "vodafoneuk"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "attribute-import-by-virtual-cluster-cron-job__integrations",
"hostName": "374d3080-5488-3d18-9ed3-d057831e0954",
"namespace": "fedex-integrations"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "b259985a-81f8-3f1b-b812-9b12f91da830",
"namespace": "aval"
},
{
"currentCpuRequest": "750.0",
"currentMemRequest": "3584.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "07c5106b-a18c-366b-b743-8e368679d48e",
"namespace": "ibmatt"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "1024.0",
"displayName": "loader-deployment__loader",
"hostName": "774826cc-6bec-3809-9dc2-dc07cd9a1564",
"namespace": "rbbg"
},
{
"currentCpuRequest": "200.0",
"currentMemRequest": "300.0",
"displayName": "splunk-connect-splunk-kubernetes-metrics__splunk-fluentd-k8s-metrics",
"hostName": "321666fb-b938-389e-af57-b076ed1dd201",
"namespace": "splunk"
},
{
"currentCpuRequest": "250.0",
"currentMemRequest": "2048.0",
"displayName": "loader-deployment__loader",
"hostName": "4a25f829-1726-37d6-a399-9df03c6b0738",
"namespace": "bns"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "512.0",
"displayName": "environment-deployment__environment",
"hostName": "a30ba6a0-31e4-3de8-a538-2db5eaaa26ce",
"namespace": "unitingcare"
},
{
"currentCpuRequest": "1000.0",
"currentMemRequest": "2048.0",
"displayName": "web-deployment__web",
"hostName": "658b1ba3-79df-3cfb-adae-657aa3392302",
"namespace": "hilton"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "ad91a0a1-b444-3183-846b-b00b8c01207c",
"namespace": "greenshielduat"
},
{
"currentCpuRequest": "500.0",
"currentMemRequest": "1024.0",
"displayName": "environment-deployment__environment",
"hostName": "245ed8b4-d0d6-3db6-8ccc-64572312aff5",
"namespace": "citi"
},
{
"currentCpuRequest": "150.0",
"currentMemRequest": "2560.0",
"displayName": "scheduler-deployment__scheduler",
"hostName": "d0f0709f-8618-3b8f-854e-acf89b4556c7",
"namespace": "natera"
}
]
}
- name: DELETE Bulk Container Subscriptions
request:
auth:
type: basic
basic:
- key: password
value: admin
type: string
- key: username
value: admin
type: string
method: DELETE
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"subscriptionRef\": \"{{subscriptionRef1}}\"\r\n },\r\n {\r\n \"subscriptionRef\": \"{{subscriptionRef2}}\"\r\n }\r\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
description: |-
Delete multiple container subscriptions.
Each subscriptionRef provided in the list is deleted independently of each other. An error in one delete subscription operation does not affect the other delete operations.
In the Body section of this request, we specify the subscription references we are deleting:
- `{{subscriptionRef1}}`
- `{{subscriptionRef2}}`
Ensure that the Kubex user making this request has permission to delete all the subscriptions above.
Note:
> If you do not have administrative privileges, you can only delete your private subscriptions.
> If you have administrative privileges, you can delete any subscription.
See examples. Refer to [Subscriptions](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm).
response:
- name: DELETE Bulk Container Subscriptions (successful == 204 No Content)
originalRequest:
method: DELETE
header:
- key: Content-Type
name: Content-Type
type: text
value: application/json
body:
mode: raw
raw: "[\r\n {\r\n \"subscriptionRef\": \"{{subscriptionRef1}}\"\r\n },\r\n {\r\n \"subscriptionRef\": \"{{subscriptionRef2}}\"\r\n }\r\n]"
options:
raw:
language: json
url:
raw: "{{scheme}}://{{host}}{{port}}/{{root}}/subscriptions/containers"
protocol: "{{scheme}}"
host:
- "{{host}}{{port}}"
path:
- "{{root}}"
- subscriptions
- containers
status: No Content
code: 204
_postman_previewlanguage: plain
header:
- key: Access-Control-Allow-Credentials
value: "true"
- key: Access-Control-Allow-Methods
value: GET, POST, OPTIONS, DELETE, PUT
- key: Access-Control-Allow-Headers
value: Cache-Control, Pragma, Origin, Authorization, Accept, Content-Type, Content-Range, If-None-Match, X-Requested-With, Content-Disposition
- key: Access-Control-Expose-Headers
value: Content-Range
- key: Cache-Control
value: no-cache,no-store,max-age=0
- key: Expires
value: Thu, 01 Jan 1970 00:00:00 GMT
- key: Access-Control-Max-Age
value: "1728000"
- key: Date
value: Wed, 16 Sep 2020 19:49:43 GMT
cookie: []
body: ""
description: "Subscribe to a set of\_Densify\_recommendation notifications using the\_Densify\_Subscription Service (DSS) API framework. See [Subscribing to Kubex Recommendations](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscribing_to_Recommendations.htm)."
description: Define your custom subscription notifications.
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
description: The Kubex Subscription Service (DSS) framework is a set of API resources that allow you to define customized subscriptions for third-party applications to receive Kubex recommendations. The DSS enables you receive recommendations for specific systems by using property or attribute filters. See [Subscription](https://www.densify.com/docs-api/WebHelp_Densify_API_Cloud/Content/API_Guide/Subscriptions.htm) for details.
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript
event:
- listen: prerequest
script:
exec:
- ""
type: text/javascript
- listen: test
script:
exec:
- ""
type: text/javascript