File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
sdk/core/azure-core-tracing-opencensus Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 5858 " sdk/confidentialledger/azure-confidentialledger/**" ,
5959 " sdk/core/azure/**" ,
6060 " sdk/core/azure-common/**" ,
61- " sdk/core/azure-core-tracing-opencensus/**" ,
6261 " sdk/core/azure-core-tracing-opentelemetry/**" ,
6362 " sdk/core/azure-core/**" ,
6463 " sdk/cosmos/azure-cosmos/**" ,
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ exporter = AzureExporter(
3939tracer = Tracer(exporter = exporter, sampler = AlwaysOnSampler())
4040with tracer.span(name = " MyApplication" ) as span:
4141 client = BlobServiceClient.from_connection_string(' connectionstring' )
42- client.delete_container(' mycontainer ' ) # Call will be traced
42+ client.delete_container(' my_container ' ) # Call will be traced
4343```
4444
4545
Original file line number Diff line number Diff line change @@ -57,9 +57,9 @@ def __init__(self):
5757 self ._all_nodes = []
5858 self .parent_dict = defaultdict (list )
5959
60- def export (self , span_datas ):
60+ def export (self , span_data ):
6161 # type: (List[SpanData]) -> None
62- sp = span_datas [0 ] # type: SpanData
62+ sp = span_data [0 ] # type: SpanData
6363 node = Node (sp )
6464 if not node .span_data .parent_span_id :
6565 self .root = node
You can’t perform that action at this time.
0 commit comments