Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RFC 0673: ApplicationSignals - ServiceLevelObjective L2 #714

Open
wants to merge 11 commits into
base: main
Choose a base branch
from

Conversation

liunia-amazon
Copy link

This is a request for comments about adding L2 constructs for simplifying Application Signals SLO process. See #673 for
additional details.

APIs are signed off by @ moelasmar.

By submitting this pull request, I confirm that my contribution is made under
the terms of the Apache-2.0 license

@moelasmar moelasmar changed the title Create 0673-aws-applicationsignals-slo-l2.md RFC 0673: ApplicationSignals - ServiceLevelObjective L2 Mar 18, 2025
Copy link
Contributor

@moelasmar moelasmar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for raising this RFC. I left some minor comments.


### CHANGELOG

`feat(cloudwatch): introduce new Application Signals L2 constructs for simplifying SLO creation and management`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the new module will be added to the package aws-applicationsignals , so I recommend change the title to be feat(applicationSignals)

Comment on lines 106 to 107
* ERIOD_SLI_METRIC
* REQUEST_SLI_METRIC
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

seems these lines are mistakenly added.

|name |string |The name of the SLO |
|keyAttributes |IResolvable \| { [string]: string } |The key attributes for the SLO |
|operationName? |string |The operation name for the SLO (optional) |
|goal |SLOGoalConfig |The goal configuration for the SLO |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are SLOGoalConfig type, and GoalConfig Type (you mentioned in line 33) the same? If yes, so please use one of these names

|name |string |The name of the SLO |
|keyAttributes |IResolvable \| { [string]: string } |The key attributes for the SLO |
|operationName? |string |The operation name for the SLO (optional) |
|goal |SLOGoalConfig |The goal configuration for the SLO |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same comment on PeriodBasedSloProps.goal

Comment on lines 18 to 31
#### IntervalProps

|Name |Type |Description |
|--- |--- |--- |
|duration |number |Duration value |
|unit |DurationUnit |Unit of duration <br>One of the following enum values:<br>`HOUR`<br>`DAY`<br>`MINUTE`|

#### CalendarIntervalProps

|Name |Type |Description |
|--- |--- |--- |
|duration |number |Duration value |
|startTime? |number |Start time for the calendar interval.<br> default is now |
|unit |DurationUnit (enum) |Unit of duration. the following enum values:<br>`MONTH` |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you mention that both types implement IInterval, as below you refer to IInterval.

|metricType? |MetricType(enum) |Optional metric type. <br>One of the following enum values:<br>`LATENCY`<br>`AVAILABILITY` |
|keyAttributes? |string |Optional key attributes |
|operationName? |string |Optional operation name |
|comparisonOperator? |ComparisonOperator(enum( |Optional comparison operator. <br> One of the following enum values:<br>`GREATER_THAN`<br>`LESS_THAN`<br>`GREATER_THAN_OR_EQUAL`<br>`LESS_THAN_OR_EQUAL`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo in (enum(

Comment on lines 67 to 81
#### PeriodBasedMetricProps

|Name |Type |Description |
|--- |--- |--- |
|periodSeconds? |number |Period in seconds, default is 60s |
|statistic |MetricStatistic |Statistic |
|metricDataQueries |MetricDataQuery[] |Array of metric queries |

#### RequestBasedMetricProps

|Name |Type |Description |
|--- |--- |--- |
|goodCountMetrics? |MetricDataQuery[] |Optional good count metrics |
|totalCountMetrics |MetricDataQuery[] |Total count metrics |
|badCountMetrics? |MetricDataQuery[] |Optional bad count metrics |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please mention that both of these types implements SliMetricBaseProps

|Name |Type |Description |
|--- |--- |--- |
|name |string |The name of the SLO |
|keyAttributes |IResolvable \| { [string]: string } |The key attributes for the SLO |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove IResolvable.
Also, based on the docs .. KeyAttributes seems it accepts only limited set of keys:

  • Type: designates the type of object this is.
  • ResourceType: specifies the type of the resource. This field is used only when the value of the Type field is Resource or AWS::Resource.
  • Name: specifies the name of the object. This is used only if the value of the Type field is Service, RemoteService, or AWS::Service.
  • Identifier: identifies the resource objects of this resource. This is used only if the value of the Type field is Resource or AWS::Resource.
  • Environment: specifies the location where this object is hosted, or what it belongs to.

If my understanding is correct, so why not to create a new Type KeyAttributes that contain the previous properties, and make all of them optional (if some of them are required, so you can mark them as required).

|Name |Type |Description |
|--- |--- |--- |
|name |string |The name of the SLO |
|keyAttributes |IResolvable \| { [string]: string } |The key attributes for the SLO |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

similar to line 88 comment


`feat(cloudwatch): introduce new Application Signals L2 constructs for simplifying SLO creation and management`

### README
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this the design, not readme

@mergify mergify bot dismissed moelasmar’s stale review March 25, 2025 19:24

Pull request has been modified.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants