We help DevOps run open source based perf testing on any website, app or API at massive scale to validate performance
Go to siteThe BlazeMeter API allows you to automate performance testing by integrating with Pipedream's serverless platform. You can trigger tests, fetch test results, and manage your testing environment programmatically. With Pipedream, connecting BlazeMeter with other apps and services streamlines performance data analysis and alerts, enhancing continuous integration and deployment (CI/CD) pipelines.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
blazemeter: {
type: "app",
app: "blazemeter",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://a.blazemeter.com/api/v4/user`,
auth: {
username: `${this.blazemeter.$auth.api_key}`,
password: `${this.blazemeter.$auth.api_secret}`,
},
})
},
})
Automated Performance Test Triggering: Trigger BlazeMeter performance tests automatically after code commits using a webhook from GitHub. This ensures your application undergoes necessary testing with each update, maintaining performance standards.
Performance Test Result Analysis and Reporting: After a test run, use Pipedream to send the results to Google Sheets for easy analysis and visualization. Set up alerts through Slack or email if performance metrics fall below a certain threshold, keeping your team informed.
Dynamic Test Configuration Based on Real-time Data: Adjust test parameters dynamically by using incoming data from a monitoring tool like Datadog. This allows stress testing to reflect real-world scenarios, ensuring your application can handle unexpected traffic spikes.
Creates a new project in a specific workspace. See the documentation
List projects from a specified workspace in BlazeMeter. See the documentation
List all workspaces associated with the specified account. See the documentation
Blazemeter uses API keys for authentication. When you connect your Blazemeter account, Pipedream securely stores the keys so you can easily authenticate to Blazemeter APIs in both code and no-code steps.
Sign in to your Blazemeter account.