7 types
Amazon CodeGuru Profiler collects runtime performance data from your live applications, and provides recommendations that can help you fine-tune your application performance.
Import to your project:
require 'aws-cdk-lib'
Here's how to setup a profiling group and give your compute role permissions to publish to the profiling group to the profiling agent can publish profiling information:
# The execution role of your application that publishes to the ProfilingGroup via CodeGuru Profiler Profiling Agent. (the following is merely an example)
publish_app_role = AWSCDK::IAM::Role.new(self, "PublishAppRole", {
assumed_by: AWSCDK::IAM::AccountRootPrincipal.new,
})
profiling_group = AWSCDK::CodeGuruProfiler::ProfilingGroup.new(self, "MyProfilingGroup")
profiling_group.grant_publish(publish_app_role)
Code Guru Profiler supports multiple compute environments.
They can be configured when creating a Profiling Group by using the compute_platform property:
profiling_group = AWSCDK::CodeGuruProfiler::ProfilingGroup.new(self, "MyProfilingGroup", {
compute_platform: AWSCDK::CodeGuruProfiler::ComputePlatform::AWS_LAMBDA,
})