Operations | Monitoring | ITSM | DevOps | Cloud

Latest News

From DigitalOcean to Linode to Google Cloud Platform: the Evolution of healthchecks.io Hosting Setup

In this article I will look at the current hosting setup of healthchecks.io, how it has evolved during the past two years, and what challenges I faced running this small but lively service.

Bleemeo is now an Amazon Web Services Technology Partner

Bleemeo has integrated the Amazon Web Services (AWS) Technology Partner program in February in order to get a closer relationship with the leader of Cloud Infrastructure market. We released at the same time our integration with AWS: CloudWatch metrics can be displayed in Bleemeo dashboards and can feed your alerts.

Amazon Kinesis: the best event queue you're not using

Instrumental receives a lot of raw data, upwards of 1,000,000 metrics per second. Because of this, we’ve always used an event queue to aggregate the data before we permanently store it. Before switching to AWS Kinesis, this aggregation was based on many processes writing to AWS Simple Queue Service (SQS) with a one-at-a-time reader that would aggregate data, then push it into another SQS queue, where multiple readers would store the data in MongoDB.

Free Amazon Web Services (AWS) Infrastructure Designer Tool.

Design Amazon Web Services Infrastructure Diagrams For Free. Site24x7's Amazon Web Services (AWS) infrastructure designer tool is a free, online design platform that helps you create and depict your Amazon Web Services architecture. Effortlessly create simple or complex cloud architecture diagrams in a matter of minutes, without even signing up. The Site24x7 AWS infrastructure designer tool has two views: the resource view on the left, and the canvas view in the center, where the action happens.

Simple Authentication with AWS Cognito

I was recently doing some work related to AWS Cognito, which I wasn’t previously familiar with, and it turns out to be pretty interesting. Stackery has a cloud-based app for building and deploying serverless applications, and we use Cognito for our own authentication. The thing I was trying to do was hard to figure out but easy once I figured it out, so I’ll include some code snippets related to my specific use case.

Dealing With the AWS Lambda Invocation Payload Limits

If you’ve dealt with Lambda functions you may have run across the RequestEntityTooLargeException - * byte payload is too large for the Event invocation type (limit 131072 bytes) AWS Lambda exception that occurs when a function is invoked with too large of a payload. Current AWS Lambda limits are set at 6 MB for synchronous/RequestResponse invocations, and 128 K for asynchronous/Event invocations.