Closed
Description
Section link:
Suggestion:
Import the NodeTracerProvider
:
const { NodeTracerProvider } = require("@opentelemetry/node")
Section link:
Suggestion:
Import and create BlobClient
.
Update the code as following:
import { BlobClient } from "@azure/storage-blob";
async function main() {
const blobClient = new BlobClient(
"<account connection string>",
"<container name>",
"<blob name>"
);
const result = await blobClient.exists({
tracingOptions: {
tracingContext: ctx,
},
});
}
main();
@xirzec, @jeremymeng for notification.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment