mirror of https://github.com/pulumi/pulumi.git
16 lines
533 B
JavaScript
16 lines
533 B
JavaScript
// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
|
|
|
|
"use strict";
|
|
const pulumi = require("@pulumi/pulumi");
|
|
|
|
const config = new pulumi.Config();
|
|
const iterations = config.getNumber("count") || 1000;
|
|
|
|
// Emit many, many diagnostic events from the engine to stress test the
|
|
// ability to record those events on the Pulumi Service.
|
|
console.log("Starting to spam a bunch of diagnostic messages...");
|
|
for (let i = 0; i < iterations; i++) {
|
|
console.log(`${i}: The current time is ${new Date()}`);
|
|
}
|
|
console.log("done");
|