The CDK Construct Library for AWS::CodeGuruProfiler
Project description
AWS::CodeGuruProfiler Construct Library
---Amazon CodeGuru Profiler collects runtime performance data from your live applications, and provides recommendations that can help you fine-tune your application performance.
Installation
Import to your project:
import aws_cdk.aws_codeguruprofiler as codeguruprofiler
Basic usage
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 = iam.Role(self, "PublishAppRole",
assumed_by=iam.AccountRootPrincipal()
)
profiling_group = codeguruprofiler.ProfilingGroup(self, "MyProfilingGroup")
profiling_group.grant_publish(publish_app_role)
Compute Platform configuration
Code Guru Profiler supports multiple compute environments.
They can be configured when creating a Profiling Group by using the computePlatform
property:
profiling_group = codeguruprofiler.ProfilingGroup(self, "MyProfilingGroup",
compute_platform=codeguruprofiler.ComputePlatform.AWS_LAMBDA
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for aws-cdk.aws-codeguruprofiler-1.177.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5bdd790fabbf17892d90100bb2a593dee0cee75df509ac9abbdb33262f6e916 |
|
MD5 | c964e940c3899354f9d2c7a266d73e43 |
|
BLAKE2b-256 | d9967defb454140cae84fa2c9cb0b28285161ba9d87a9d9696b259530573cb7b |
Close
Hashes for aws_cdk.aws_codeguruprofiler-1.177.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cfe8bd95e7c617ab36fe3cec5fd3cf19bf8577fa4bd14cf387adaea192d30411 |
|
MD5 | f971265ef5c8db496dcf17fa6d86a11d |
|
BLAKE2b-256 | ff27b386b6e7a0ab7bf61787d613a9053d7f0d900d5b041a7be7b9b235da6a48 |