
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@baselime/cdk
Advanced tools
Baselime CDK offers the most effective approach to adding observability to a serverless CDK application.
baselime.Config.init(stack, {
apiKey: 'xxxxxx',
});
new Alert("service-errors", {
parameters: {
query: {
filters: [
filter.inArray("LogLevel", ["ERROR", "WARN"]),
],
},
channels: [{ type: "slack", targets: ["baselime-alerts"] }]
},
});
npm i @baselime/cdk
Get your baselime api key from the Baselime console or using the Baselime CLI with the command baselime iam.
// Initialize Config, you must do this in a construct before adding querys, alerts and dashboards.
baselime.Config.init(stack, {
apiKey: 'xxxxxx',
});
// Create Query
const query = new baselime.Query("ColdStarts", {
description: "optional",
parameters: {
datasets: [
"lambda-logs",
],
calculations: [
max("@initDuration"),
p90("@initDuration"),
min("@initDuration"),
],
filters: [
eq("@type", "REPORT"),
],
}
});
// Add an alert
query.addAlert({
enabled: true,
parameters: {
frequency: '30mins',
threshold: gt(500),
window: '1 hour',
},
channels: [{ targets: ['baselime-alerts'], type: 'slack' }],
});
// Create Dashboard
new baselime.Dashboard('ServiceHealth', {
parameters: {
widgets: [{ query, type: WidgetType.TIMESERIES}],
},
});
© Baselime Limited, 2023
Distributed under MIT License (The MIT License).
See LICENSE for more information.
FAQs
Define your observability as code using the AWS CDK
We found that @baselime/cdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.