Eugene Cheung

Results 31 comments of Eugene Cheung

The original requester had requested it a while back, but they were likely referring to [Metric Insights](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/query_with_cloudwatch-metrics-insights.html), which are usable with `MathExpression`s. It might be possible that you can just...

I seem to be hitting a similar issue as this, except the types are actually identical. In module A: ```ts export type MetricWithAlarmSupport = Metric | MathExpression; export class MetricFactory...

@Chriscbr Thanks, I've logged it as #3495 including a link to a minimal repro project.

This seems related to https://github.com/aws/jsii/issues/965

This seems like a sensible default to me too. I was looking into removing `*.ts` files from the tarball and realized that projen uses `.npmignore` and configuring it to do...

Workarounds would be to use `npm i --force`, use `legacy-peer-deps`, or use [overrides](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#overrides). --- I'm personally inclined to go with option 1 (occasionally bump our peer dependencies as a major...

Sure! The relevant files you'll likely be touching include: - https://github.com/cdklabs/cdk-monitoring-constructs/blob/main/lib/monitoring/aws-elasticache/ElastiCacheClusterMetricFactory.ts: functions for getting the relevant metrics - https://github.com/cdklabs/cdk-monitoring-constructs/blob/main/lib/monitoring/aws-elasticache/ElastiCacheClusterMonitoring.ts: where the metrics are used for dashboard and alarm purposes -...

The current strategy is just to wait for the existing alpha dependencies to go stable (2 of 4 have gone stable thus far), and no longer adding any dependencies on...

We're currently left with only `@aws-cdk/aws-redshift-alpha` after #464.

`SecretsManagerSecretMetricFactory` and `SecretsManagerSecretMonitoring` would be appropriate places to do it. SQS is a bit unique since we'd want slightly different metrics/dashboards for a DLQ vs. a regular queue.