Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@pepperize/cdk-route53-health-check
Advanced tools
Create Route53 HealthChecks to monitor TCP, HTTP, HTTPS endpoints, CloudWatch Alarms and other Route53 HealthChecks.
Create Route53 HealthChecks to monitor TCP, HTTP, HTTPS endpoints, CloudWatch Alarms and other Route53 HealthChecks.
Currently supported types of Route53 HealthChecks:
Easily create a CloudWatch Alarm based on the Route53 HealthCheck:
const healthCheck = new EndpointHealthCheck(stack, "HealthCheck", {
domainName: "pepperize.com",
});
const alarm = new cloudwatch.Alarm(this, "Alarm", {
metric: healthCheck.metric(),
comparisonOperator: cloudwatch.ComparisonOperator.LESS_THAN_THRESHOLD,
threshold: 1,
evaluationPeriods: 1,
});
See more options API Reference
npm install @pepperize/cdk-route53-health-check
or
yarn add @pepperize/cdk-route53-health-check
pip install pepperize.cdk-route53-health-check
dotnet add package Pepperize.CDK.Route53HealthCheck
<dependency>
<groupId>com.pepperize</groupId>
<artifactId>cdk-route53-health-check</artifactId>
<version>${cdkRoute53HealthCheck.version}</version>
</dependency>
npm install @pepperize/cdk-route53-health-check
See API.md.
new EndpointHealthCheck(stack, "HealthCheck", {
domainName: "pepperize.com",
});
Generates
Resources:
Type: AWS::Route53::HealthCheck
Properties:
HealthCheckConfig:
FullyQualifiedDomainName: "pepperize.com"
Port: 443
Type: "HTTPS"
EnableSNI: true
See for more options API Reference - EndpointHealthCheckProps
const endpointHealthCheck = new EndpointHealthCheck(stack, "HealthCheck", {
domainName: "pepperize.com",
});
new CalculatedHealthCheck(stack, "CalculatedHealthCheck", {
childHealthChecks: [healthCheck],
});
See for more options API Reference - CalculatedHealthCheckProps
const alarm = cloudwatch.Alarm.fromAlarmArn(
stack,
"Alarm",
"arn:aws:cloudwatch:us-east-1:123456789012:alarm:any-alarm"
);
new AlarmHealthCheck(stack, "HealthCheck", {
alarm: alarm,
});
See for more options API Reference - AlarmHealthCheckProps
FAQs
Create Route53 HealthChecks to monitor TCP, HTTP, HTTPS endpoints, CloudWatch Alarms and other Route53 HealthChecks.
The npm package @pepperize/cdk-route53-health-check receives a total of 148 weekly downloads. As such, @pepperize/cdk-route53-health-check popularity was classified as not popular.
We found that @pepperize/cdk-route53-health-check demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.