Skip to content

Commit

Permalink
fix start time of function url inferred span (#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyzhao2018 committed Apr 24, 2024
1 parent 21012cb commit 6b54aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datadog_lambda/tracing.py
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ def create_inferred_span_from_lambda_function_url_event(event, context):
InferredSpanInfo.set_tags(tags, tag_source="self", synchronicity="sync")
if span:
span.set_tags(tags)
span.start = request_time_epoch / 1000
span.start_ns = int(request_time_epoch) * 1e6
return span


Expand Down

0 comments on commit 6b54aec

Please sign in to comment.