mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
c1709c9301
* Refactor Tempo datasource backend to support multiple queryData types. Added traceId query type that is set when performing the request but doesn't map to a tab. * WIP data is reaching the frontend * WIP * Use channels and goroutines * Some fixes * Simplify backend code. Return traces, metrics, state and error in a dataframe. Shared state type between FE and BE. Use getStream() instead of getQueryData() * Handle errors in frontend * Update Tempo and use same URL for RPC and HTTP * Cleanup backend code * Merge main * Create grpc client only with host and authenticate * Create grpc client only with host and authenticate * Cleanup * Add streaming to TraceQL Search tab * Fix merge conflicts * Added tests for processStream * make gen-cue * make gen-cue * goimports * lint * Cleanup go.mod * Comments * Addressing PR comments * Fix streaming for tracel search tab * Added streaming kill switch as the disableTraceQLStreaming feature toggle * Small comment * Fix conflicts * Correctly capture and send all errors as a DF to client * Fix infinite error loop * Fix merge conflicts * Fix test * Update deprecated import * Fix feature toggles gen * Fix merge conflicts
32 lines
1.1 KiB
Go
32 lines
1.1 KiB
Go
package extensions
|
|
|
|
import (
|
|
_ "cloud.google.com/go/kms/apiv1"
|
|
_ "cloud.google.com/go/kms/apiv1/kmspb"
|
|
_ "github.com/Azure/azure-sdk-for-go/sdk/azidentity"
|
|
_ "github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys"
|
|
_ "github.com/Azure/azure-sdk-for-go/services/keyvault/v7.1/keyvault"
|
|
_ "github.com/Azure/go-autorest/autorest"
|
|
_ "github.com/Azure/go-autorest/autorest/adal"
|
|
_ "github.com/beevik/etree"
|
|
_ "github.com/blugelabs/bluge"
|
|
_ "github.com/blugelabs/bluge_segment_api"
|
|
_ "github.com/crewjam/saml"
|
|
_ "github.com/go-jose/go-jose/v3"
|
|
_ "github.com/gobwas/glob"
|
|
_ "github.com/googleapis/gax-go/v2"
|
|
_ "github.com/grafana/dskit/backoff"
|
|
_ "github.com/grafana/dskit/flagext"
|
|
_ "github.com/grpc-ecosystem/go-grpc-middleware"
|
|
_ "github.com/jung-kurt/gofpdf"
|
|
_ "github.com/linkedin/goavro/v2"
|
|
_ "github.com/m3db/prometheus_remote_client_golang/promremote"
|
|
_ "github.com/robfig/cron/v3"
|
|
_ "github.com/russellhaering/goxmldsig"
|
|
_ "github.com/stretchr/testify/require"
|
|
_ "github.com/vectordotdev/go-datemath"
|
|
_ "golang.org/x/time/rate"
|
|
)
|
|
|
|
var IsEnterprise bool = false
|