Menu
Scroll for more
This is documentation for the next version of Grafana k6 documentation. For the latest stable release, go to the latest version.
Open source
Client.connect()
Establishes a connection to an MQTT broker. When the connection is successfully established, the connect event is triggered.
Signature
JavaScript
client.connect(url, options)Parameters
| Parameter | Type | Description |
|---|---|---|
| url | string | Broker URL (for example, mqtt://broker.emqx.io:1883) |
| options | object | Optional connection configuration |
| options.keepalive | number | Keep-alive interval in seconds (default: 60) |
| options.connect_timeout | number | Connection timeout in milliseconds (default: 30000) |
| options.clean_session | boolean | Whether to start with a clean session (default: true) |
| options.servers | string[] | Array of broker URLs for failover |
| options.tags | object | Custom tags for metrics (key-value pairs) |
Supported broker URL schemas
| Schema | Description |
|---|---|
mqtt:// | Plain TCP connection (no encryption) |
mqtts:// | Secure connection over SSL/TLS |
tcp:// | Alias for mqtt:// |
ssl:// | Alias for mqtts:// |
tls:// | Alias for mqtts:// |
ws:// | MQTT over WebSocket |
wss:// | MQTT over secure WebSocket |
If the schema is omitted, mqtt:// is used as the default.
SSL/TLS configuration
The extension uses standard k6 TLS configuration for all SSL/TLS settings. Configure certificates, verification, and other TLS-related options using k6’s environment variables and configuration files.
Was this page helpful?
Related resources from Grafana Labs
Additional helpful documentation, links, and articles:
Video

Performance testing and observability in Grafana Cloud
Optimize user experiences with Grafana Cloud. Learn real-time insights, performance testing with k6, and continuous validation with Synthetic Monitoring.
Events

User-centered observability: load testing, real user monitoring, and synthetics
Learn how to use load testing, synthetic monitoring, and real user monitoring (RUM) to understand end users' experience of your apps. Watch on demand.