Skip to content

Commit

Permalink
Fix Alt Tag
Browse files Browse the repository at this point in the history
  • Loading branch information
metaskills committed Jul 16, 2023
1 parent 3d310a7 commit ebe9a1b
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,14 @@ config.lamby.cold_start_metrics = true
Lamby will now publish [CloudWatch Embedded Metrics](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Embedded_Metric_Format.html) in the `Lamby` namespace with a custom dimension for each application's name. Captured metrics include counts for Cold Starts vs. Proactive Initializations. Here is an example running sum of 3 days of data for a large Rails application in the `us-east-1` region.

<ThemedImage
alt="Rails in Lambda Concurrent Executions, Invocations, and Provisioned Executions & Spill Invokes"
alt="A CloudWatch Metrics graph showing a running sum of cold starts vs proactive inits for a large Rails application on Lambda"
sources={{
light: useBaseUrl("/img/docs/lamby-cloud-watch-metrics-cold-start-v-proactive-init-light.png"),
dark: useBaseUrl("/img/docs/lamby-cloud-watch-metrics-cold-start-v-proactive-init-dark.png"),
light: useBaseUrl(
"/img/docs/lamby-cloud-watch-metrics-cold-start-v-proactive-init-light.png"
),
dark: useBaseUrl(
"/img/docs/lamby-cloud-watch-metrics-cold-start-v-proactive-init-dark.png"
),
}}
/>

Expand All @@ -35,4 +39,3 @@ This data shows the vast majority of your initialized Lambda Contaienrs are proa
```rails title="config/environments/production.rb"
config.lamby.metrics_app_name = 'MyServiceName'
```

0 comments on commit ebe9a1b

Please sign in to comment.