forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ci with latest master (prebid#494)
* OTT-1058: record number of deal responses for given pub-prof-partner (prebid#485) (prebid#487) Co-authored-by: Pubmatic-Dhruv-Sonone <[email protected]> * OTT-1060: Added IncDealBidCount in stats server for selected publishe… (prebid#491) --------- Co-authored-by: ashishshinde-pubm <[email protected]> Co-authored-by: Pubmatic-Dhruv-Sonone <[email protected]> Co-authored-by: ShriprasadM <[email protected]>
- Loading branch information
1 parent
42448de
commit 9bd3c1a
Showing
4 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package pubmaticstats | ||
|
||
// IncBidResponseByDealCountInPBS counts number of bids received from aliasBidder for | ||
// publisher, profile | ||
// if dealid is not present then value would be'nodeal' | ||
var IncBidResponseByDealCountInPBS = func(publisher, profile, aliasBidder, dealId string) { | ||
} | ||
|
||
// IncPartnerTimeoutInPBS counts partner timeouts fro given publisher, profile and aliasbidder | ||
var IncPartnerTimeoutInPBS = func(publisher, profile, aliasBidder string) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package pubmaticstats | ||
|
||
import "testing" | ||
|
||
func TestIncBidResponseByDealCountInPBS(t *testing.T) { | ||
IncBidResponseByDealCountInPBS("some_publisher_id", "some_profile_id", "some_alias_bidder", "some_dealid") | ||
} | ||
|
||
func TestIncPartnerTimeoutInPBS(t *testing.T) { | ||
IncPartnerTimeoutInPBS("some_publisher_id", "some_profile_id", "some_alias_bidder") | ||
} |