The [OTLP gRPC examples](https://github.com/open-telemetry/opentelemetry-go/blob/main/exporters/otlp/otlpgrpc/example_test.go#L56) set a batch timeout of 5ns. This should probably be 5s. ```go tp := sdktrace.NewTracerProvider( sdktrace.WithConfig(sdktrace.Config{DefaultSampler: sdktrace.AlwaysSample()}), sdktrace.WithBatcher( exp, // add following two options to ensure flush sdktrace.WithBatchTimeout(5), sdktrace.WithMaxExportBatchSize(10), ), ) ``` Please update all examples to use `sdktrace.WithBatchTimeout(5 * time.Second)`.