We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb3b302 commit bcb570aCopy full SHA for bcb570a
pkg/plugin/client.go
@@ -38,7 +38,7 @@ func NewDataSetClient(dataSetUrl string, apiKey string) *DataSetClient {
38
39
// TODO Are there alternate approaches to implementing rate limits via the Grafana SDK?
40
// Consult with Grafana support about this, potentially there's a simplier option.
41
- rateLimiter := rate.NewLimiter(rate.Every(1 * time.Minute), 100) // 100 requests / minute
+ rateLimiter := rate.NewLimiter(100 * rate.Every(1 * time.Minute), 100) // 100 requests / minute
42
43
return &DataSetClient{
44
dataSetUrl: dataSetUrl,
0 commit comments