-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect bidRequestsCount for bids with Twin AdUnits. #12522
Comments
Unclear if this is a bug, #4448 calls it the number of requests and IX and sharethrough and Yahoo all have the ability to have multiple requests with different placements on an ad unit, without the need to even have twins. Perhaps a third option, expose a new metric with a new name meeting your proposal item 1 definition: "Each adunit Code's auction count should be incremented only once for every GAM refresh() irrespective of the twinAdunits it might have." ? The problem is this ties us to gam, so perhaps requestBids |
I'm not sure we can do this reliably without asking publishers some other identifier to distinguish twins of an ad unit. The second auction could have the same ad unit appear with a different set of twins. |
@patmmccann @dgirardi |
We're not sure if anyone relies on the current definition, marking ready for dev to implement a new metric with the proposed definition |
@patmmccann |
Please do, also please document both metrics and attach the docs pr to your js pr. Thank you! 🎉 |
Type of issue
Bug
Description
bidRequestsCount
shows incorrect count when a Twin-Adunit is mapped. This happens when a bidder receives multiple bids with same adUnitCode within an single auction.Test page
Js fiddle Links :-
Results
Expected results
bidRequestsCount
for each unique bid Object should be1
for first Auction. If there are multiple bid Object even though they contain same adUnitCode, each should have its own counter reflecting the appropriatebidRequestsCount
.Actual results
bidRequestsCount
value is seen to be3
for all bids.Proposal
bidRequestsCount
toadUnitAuctionCount
:bidRequestsCount
currently gives impression that it is a counter for number of bid request invocations for a given adUnit.adUnitAuctionCount
would improve clarity.The text was updated successfully, but these errors were encountered: