Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
async function main() {
const result = await CostAnalyzer.analyze({
funcs,
work: async m => {
const promises = [];
for (let i = 0; i < 10; i++) {
promises.push(m.functions.random(100000));
}
await Promise.all(promises);
},
configurations: CostAnalyzer.awsConfigurations.filter(
c => c.options.memorySize! >= 1024 && c.options.memorySize! <= 2048
)
});
writeFileSync("cost.csv", result.csv());
console.log(`Wrote 'cost.csv'.`);
}
async function main() {
const result = await CostAnalyzer.analyze(
{
funcs,
work: async m => {
const promises = [];
for (let i = 0; i < 10; i++) {
promises.push(m.functions.random(100000));
}
await Promise.all(promises);
}
},
CostAnalyzer.awsConfigurations.filter(
c => c.options.memorySize >= 1024 && c.options.memorySize <= 2048
)
);
writeFileSync("cost.csv", result.csv());
console.log(`Wrote 'cost.csv'.`);
async function compareAws(Bucket: string, filter: FilterFn) {
const result = await CostAnalyzer.analyze({
funcs,
work: workload(Bucket, filter),
format,
formatCSV,
repetitions: 5,
concurrency: 5
});
writeFile("cost.csv", result.csv());
}
async function compareCloudCosts() {
const result = await CostAnalyzer.analyze({ funcs, work, configurations });
await writeFile("cost.csv", result.csv());
}