Skip to content

Commit

Permalink
Fix observation count trace collection
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Apr 26, 2024
1 parent 0b5e912 commit 6d32e00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def make_analysis_in_a_day(params: MakeAnalysisParams) -> dict:
failures += 1

span.set_attribute("total_failure_count", failures)
span.set_attribute("total_observation_count", failures)
span.set_attribute("total_observation_count", observation_count)
span.set_attribute("no_experiment_results_count", no_exp_results)
span.set_attribute("day", day.strftime("%Y-%m-%d"))
span.set_attribute("probe_cc", probe_cc)
Expand Down

0 comments on commit 6d32e00

Please sign in to comment.