Latest news about Bitcoin and all cryptocurrencies. Your daily crypto news habit.
In order to build HA & Resilient applications in AWS, you need to assume that everything will fail. Therefore, you always design and deploy your application in multiple AZ & regions. So you end up with many unused AWS resources (Snapshots, ELB, EC2, Elastic IP, etc) that could cost you a fortune.
One pillar of AWS Well-Architected Framework is Cost optimization. Thatâs why you need to have a global overview of your AWS Infrastructure. Fortunately, AWS offers many fully-managed services like CloudWatch, CloudTrail, Trusted Advisor & AWS Config to help you achieve that. But, they require a deep understanding of AWS Platform and they are not straighforward.
Thatâs why I came up with Komiser a tool that simplifies the process by querying the AWS API to fetch information about almost all critical services of AWS like EC2, RDS, ELB, S3, Lambda ⊠in real-time in a single Dashboard.
Note: To prevent excedding AWS API rate limit for requests, the response is cached in in-memory cache by default for 30Â minutes.
Komiser supported AWS Services:
Compute:
- Running/Stopped/Terminated EC2 instances
- Current EC2 instances per region
- EC2 instances per family type
- Lambda Functions per runtime environment
- Disassociated Elastic IP addresses
- Total number of Key Pairs
- Total number of Auto Scaling Groups
Network & Content Delivery:
- Total number of VPCs
- Total number of Network Access Control Lists
- Total number of Security Groups
- Total number of Route Tables
- Total number of Internet Gateways
- Total number of Nat Gateways
- Elastic Load Balancers per family type (ELB, ALB, NLB)
Management Tools:
- CloudWatch Alarms State
- Billing Report (Up to 6Â months)
Database:
- DynamoDB Tables
- DynamoDB Provisionned Throughput
- RDS DB instances
Messaging:
- SQS Queues
- SNS Topics
Storage:
- S3 Buckets
- EBS Volumes
- EBS Snapshots
Security Identity & Compliance:
- IAM Roles
- IAM Policies
- IAM Groups
- IAM Users
1âââConfiguring Credentials
Komiser needs your AWS credentials to authenticate with AWS services. The CLI supports multiple methods of supporting these credentials. By default the CLI will source credentials automatically from its default credential chain. The common items in the credentials chain are the following:
Environment Credentials:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
- AWS_DEFAULT_REGION
Shared Credentials file (~/.aws/credentials)
EC2 Instance Role Credentials
To get started, create a new IAM user, and assign to it this following IAMÂ policy:
Next, generate a new AWS Access Key & Secret Key, then update ~/.aws/credentials file as below:
2âââInstallation
2.1âââCLI
Find the appropriate package for your system and download it. For linux:
wget https://s3.us-east-1.amazonaws.com/komiser/1.0.0/linux/komiserchmod +x komiser
Note: The Komiser CLI is updated frequently with support for new AWS services. To see if you have the latest version, see the project Github repository.
After you install the Komiser CLI, you may need to add the path to the executable file to your PATH variable.
2.2âââDocker Image
Use the official Komiser Docker Image:
docker run -d -p 3000:3000 -e AWS_ACCESS_KEY_ID=ââ -e AWS_SECRET_ACCESS_KEY=ââ -e AWS_DEFAULT_REGION=âââââname komiser mlabouardy/komiser
3âââOverview
Once installed, start the Komiser server:
komiser startâââport 3000âââduration 30
If you point your favorite browser to http://localhost:3000, you should see Komiser Dashboard:
Hope it helps ! The CLI is still in its early stages, so you are welcome to contribute to the project on Github.
Komiser: AWS Environment Inspector was originally published in Hacker Noon on Medium, where people are continuing the conversation by highlighting and responding to this story.
Disclaimer
The views and opinions expressed in this article are solely those of the authors and do not reflect the views of Bitcoin Insider. Every investment and trading move involves risk - this is especially true for cryptocurrencies given their volatility. We strongly advise our readers to conduct their own research when making a decision.