Documentation for automated readers
A curated documentation index is available at: https://grafana.com/llms.txt
A complete documentation index is available at: https://grafana.com/llms-full.txt
These indexes can help with page discovery before fetching individual documents.
This page is also available in Markdown, which may be easier for automated readers and AI tools to parse than HTML. The Markdown version is available at https://grafana.com/docs/k6/latest/javascript-api/k6-net-grpc/client/client-loadprotoset.md, or by sending Accept: text/markdown to https://grafana.com/docs/k6/latest/javascript-api/k6-net-grpc/client/client-loadprotoset/. For broader documentation discovery, the curated index is available at https://grafana.com/llms.txt and the complete index is available at https://grafana.com/llms-full.txt.
Client.loadProtoset(protosetPath)
Loads and parses the protoset file (serialized FileDescriptor set) so they are available to the client to marshal/unmarshal the correct request and response data structures for the RPC schema.
Must be called within the
init phase.
| Parameter | Type | Description |
|---|---|---|
| protosetPath | string | The path of the protoset file. If no import paths are provided then “.” (current directory) is assumed to be the only import path. |
Examples
import grpc from 'k6/net/grpc';
const client = new grpc.Client();
client.loadProtoset('./dummy.protoset');Was this page helpful?
Related resources from Grafana Labs

