Git Product home page Git Product logo

lambda-netspeed's Introduction

https://www.speedtest.net/apps/cli https://pypi.org/project/speedtest-cli/ https://hub.docker.com/r/amazon/aws-lambda-python https://docs.aws.amazon.com/lambda/latest/dg/images-create.html

region=us-west-2 virtualenv venv source venv/bin/activate

aws configure set region $region

copy files or git clone

on local source folder

https://docs.aws.amazon.com/lambda/latest/dg/troubleshooting-deployment.html chmod -R o+rX .

pip install speedtest-cli

docker build -t netspeed . aws ecr create-repository --repository-name netspeed --image-scanning-configuration scanOnPush=true --image-tag-mutability MUTABLE registryId=$(aws ecr describe-repositories --repository-name netspeed --query "repositories[0].registryId" --output text) aws ecr get-login-password --region $region | docker login --username AWS --password-stdin $registryId.dkr.ecr.$region.amazonaws.com docker tag netspeed:latest $registryId.dkr.ecr.$region.amazonaws.com/netspeed:latest docker push $registryId.dkr.ecr.$region.amazonaws.com/netspeed:latest

aws iam create-role --role-name LambdaBasicExecutionRole --assume-role-policy-document file://LambdaBasicExecutionRole-Trust-Policy.json aws iam attach-role-policy --policy arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole --role-name LambdaBasicExecutionRole

role = arn:aws:iam::$registryId:role/LambdaBasicExecutionRole

--architectures x86_64 | arm64

aws lambda create-function --function-name netspeed
--package-type Image
--timeout 60
--architectures x86_64
--memory-size 256
--code ImageUri=$registryId.dkr.ecr.$region.amazonaws.com/netspeed:latest
--role arn:aws:iam::$registryId":role/LambdaBasicExecutionRole"

aws lambda wait function-exists --function-name netspeed

aws lambda invoke --function-name netspeed response.json

aws lambda update-function-configuration --function-name netspeed --memory-size 512

run speed test loop

pip install boto3 python3 test.py

lambda-netspeed's People

Contributors

lordplumdick avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.