This repository was archived by the owner on Jan 22, 2026. It is now read-only.
generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 33
change of description #24
Open
olileach
wants to merge
15
commits into
aws-samples:main
Choose a base branch
from
olileach:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
|
Hi, thanks for opening, we'll take a look to review the code.
Thanks. |
Comment on lines
+1
to
+93
| # Amazon CodeGuru Profiler Python Demo Application | ||
|
|
||
| Simple Python applications for demonstrating the features of [Amazon CodeGuru Profiler](https://aws.amazon.com/codeguru/) using the Python agent that is open-sourced at [aws/amazon-codeguru-profiler-python-agent](https://github.com/aws/amazon-codeguru-profiler-python-agent). | ||
|  | ||
|
|
||
| Check the individual folders for each specific demo application. | ||
| ## How it works | ||
|
|
||
|  | ||
| The application does some basic image processing, with some CPU-heavy | ||
| operations alongside some IO-heavy operations. | ||
|
|
||
|  | ||
| It consists chiefly of two components which run in parallel, the task publisher | ||
| and the image processor. | ||
|
|
||
|  | ||
| CodeGuru Profiler Python agent runs inside the application, in the same way any real application | ||
| would use it. It collects and reports profiling data about the application, ready to | ||
| be viewed in the AWS console. | ||
|
|
||
|  | ||
| ##### [`TaskPublisher`](aws_python_sample_application/task_publisher.py) | ||
|
|
||
| ## License | ||
| Checks the S3 bucket for available images, and submits the name of some of these images | ||
| to the SQS queue. | ||
|
|
||
| This code is licensed under the Apache-2.0 License. See the [LICENSE](LICENSE) file. | ||
| ##### [`ImageProcessor`](aws_python_sample_application/image_processor.py) | ||
|
|
||
| Polls SQS for names of images to process. Processing an image involves downloading | ||
| it from S3, applying some image transforms (e.g. converting to monochrome), and | ||
| uploading the result back to S3. | ||
|
|
||
| ## Setup | ||
|
|
||
| Here is the summary of the steps that follow. | ||
|
|
||
| 1. Make sure you have installed the latest version of [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html). | ||
| Use an IAM entity for the AWS CLI that has permissions to access CodeGuru Profiler, S3 and SQS to create all the required components for the demo application to run. | ||
| 2. Create a profiling group in CodeGuru Profiler, named `PythonDemoApplication`. | ||
| 3. Create a S3 bucket, e.g. `s3://python-demo-application-test-bucket`. Note, the bucket name must be unique across all of Amazon S3. | ||
| See [here](https://docs.aws.amazon.com/cli/latest/reference/s3/mb.html) for more details. | ||
| 4. Create an SQS queue, e.g. `DemoApplicationQueue`. See [here](https://docs.aws.amazon.com/cli/latest/reference/sqs/create-queue.html) | ||
| for more details. | ||
| 5. Create virtual environment with venv, e.g. `python3 -m venv ./venv`. | ||
| 6. Activate the virtual environment, e.g. `source venv/bin/activate`. | ||
| 7. Install dependency `boto3` and `skimage` through pip3 that are used for the demo application. | ||
| 8. Install the Python agent `codeguru_profiler_agent` through pip3. | ||
|
|
||
| Here are the commands to run on your machine. | ||
|
|
||
| ```bash | ||
| aws configure # Set up your AWS credentials and region as usual. | ||
| ``` | ||
|
|
||
| ```bash | ||
| aws codeguruprofiler create-profiling-group --profiling-group-name PythonDemoApplication | ||
|
|
||
| # It is required to set the DEMO_APP_BUCKET_NAME and DEMO_APP_SQS_URL environment applications for later running the demo application. | ||
|
|
||
| # Make sure you update `YOUR-BUCKET-NAME-REPLACE-ME`with a bucket name that is unique across all of Amazon S3. | ||
| export DEMO_APP_BUCKET_NAME=YOUR-BUCKET-NAME-REPLACE-ME | ||
| aws s3 mb s3://${DEMO_APP_BUCKET_NAME} | ||
|
|
||
| # Make sure you update `YOUR-AWS-REGION-REPLACE-ME` and `YOUR-ACCOUNT-ID-REPLACE-ME`. | ||
| aws sqs create-queue --queue-name DemoApplicationQueue | ||
| export DEMO_APP_SQS_URL=https://sqs.${YOUR-AWS-REGION-REPLACE-ME}.amazonaws.com/YOUR-ACCOUNT-ID-REPLACE-ME/DemoApplicationQueue | ||
| ``` | ||
|
|
||
| ```bash | ||
| python3 -m venv ./venv | ||
| source venv/bin/activate | ||
|
|
||
| pip3 install boto3 scikit-image | ||
| pip3 install codeguru_profiler_agent | ||
| ``` | ||
|
|
||
| For Python 3.9, installing `scikit-image` may cause failures; this is a known issue, discussed in https://github.com/scikit-image/scikit-image/issues/5060. | ||
|
|
||
| ## How to run | ||
|
|
||
| The main entry point of this application is in the ``aws_python_sample_application/main.py`` in the ``SampleDemoApp`` class. | ||
|
|
||
| ```bash | ||
| # Run the demo application with the CodeGuru Profiler Python Agent. | ||
| python3 -m codeguru_profiler_agent -p PythonDemoApplication aws_python_sample_application/main.py | ||
| ``` | ||
|
|
||
| Let it run for at least 15 to 20 minutes to get plenty of data shown for the PythonDemoApplication profiling group. | ||
|
|
||
| **Note**: When running the demo application for the first time, it is expected to see the error message such as | ||
| `No messages exists in SQS queue at the moment, retry later.` and | ||
| `Failed to list images in demo-application-test-bucket-1092734-YOUR-BUCKET-REPLACE-ME under input-images/` | ||
| printing to the terminal. Our demo application would handle the upload of the image and the publish of SQS message | ||
| after a few seconds. | ||
|
|
||
| ## How to see the results | ||
|
|
||
| Go to the [AWS CodeGuru Profiler console](https://console.aws.amazon.com/codeguru/profiler) to check the results. Choose the region you picked and your profiling group. |
Contributor
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you move this here? This was intentionally moved inside each folder as this repository contains multiple sample applications.
| serviceAccountName: codeguru-profiler | ||
| containers: | ||
| - name: codeguru-python-app-deployment | ||
| image: 338918620411.dkr.ecr.eu-west-1.amazonaws.com/codeguru-python-app-deployment:latest |
Contributor
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is your personal account, it shouldn't be here.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue #, if available:
Description of changes:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.