Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
dynamodb-time-series-manager
Advanced tools
Managing Time Series Statistics with TimeSeriesStatisticsManager and AWS DynamoDB
A simple and efficient library for managing time series statistics using AWS DynamoDB. It is based on the implementation described in this blog post.
The TimeSeriesStatisticsManager is a TypeScript library designed to manage time series statistics using AWS DynamoDB. It provides an easy-to-use interface for adding and retrieving statistics, with built-in support for multiple time partitions, such as minutes, hours, days, months, and years.
Install the library using npm:
npm install dynamodb-time-series-manager
First, import the TimeSeriesStatisticsManager class and create a new instance with your desired options:
import { TimeSeriesStatisticsManager } from 'time-series-statistics-manager';
// Create a new instance of the TimeSeriesStatisticsManager:
const manager = new TimeSeriesStatisticsManager({});
// Add a statistic:
await manager.addStatistic("example_topic", Date.now());
// Get statistics:
const stats = await manager.getStatistics("example_topic", startTime, endTime);
Here's a simple example demonstrating how to use the TimeSeriesStatisticsManager:
import { TimeSeriesStatisticsManager } from 'time-series-statistics-manager';
const manager = new TimeSeriesStatisticsManager({});
(async () => {
await manager.addStatistic("example_topic", Date.now());
const startTime = Date.now() - (60 * 60 * 1000); // 1 hour ago
const endTime = Date.now();
const stats = await manager.getStatistics("example_topic", startTime, endTime);
console.log(stats);
})();
The TimeSeriesStatisticsManager provides a simple and efficient way to manage time series statistics using AWS DynamoDB. With built-in support for multiple time partitions, it makes it easy to add and retrieve statistics for various time ranges. Give it a try and see how it can help you manage your time series data.
FAQs
Managing Time Series Statistics with TimeSeriesStatisticsManager and AWS DynamoDB
The npm package dynamodb-time-series-manager receives a total of 1 weekly downloads. As such, dynamodb-time-series-manager popularity was classified as not popular.
We found that dynamodb-time-series-manager demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.