Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
EvgeniiMunin committed Jul 9, 2024
1 parent a70b644 commit a6a46d2
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions prebid-server/pbs-modules/greenbids-analytics-reporter.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,33 +14,29 @@ This analytics adapter communicates with Greenbids Analytics Server by sending t

Greenbids Analytics Reporter contains the static parameters defined in [application.yaml](https://github.com/EvgeniiMunin/prebid-server-java/blob/a2e376c14680108683483719d212d330f8f66742/src/main/resources/application.yaml#L296)


| Parameter | Type | Description |
| --------- | ---- | ----------- |
| analytics-server-version | string | Version of Analytics Schema Greenbids side |
| analytics-server | string | Greenbids Analytics Server URL |
| exploratory-sampling-split | float | Exploration vs Exploitation ratio of analytics traffic |
| timeout-ms | int | Timeout limit on sending POST request to Greenbids Analytics Server |


Greenbids Analytics Reporter also includes the parameters specific for each publisher setup. These parameters should be included into the extension of the bid request json: `ext.analytics.greenbids`


| Parameter | Scope | Description | Example | Type |
| --------- | ---- | ------------- | ------------- | ----------- |
| pbuid | required | The Greenbids Publisher ID | greenbids-publisher-1 | string |

Check failure on line 28 in prebid-server/pbs-modules/greenbids-analytics-reporter.md

View workflow job for this annotation

GitHub Actions / run markdownlint

Hard tabs

prebid-server/pbs-modules/greenbids-analytics-reporter.md:28:84 MD010/no-hard-tabs Hard tabs [Column: 84] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md010.md
| greenbidsSampling | optional | sampling factor [0-1] (a value of 0.1 will filter 90% of the traffic) | 1.0 | float |


The example of publisher config in the bid request extension is as follows:

```json
"ext": {
"analytics": {
"greenbids": {
"pbuid": "PBUID_FROM_GREENBIDS",
"greenbidsSampling": 0.1
}
}
"analytics": {
"greenbids": {
"pbuid": "PBUID_FROM_GREENBIDS",
"greenbidsSampling": 0.1
}
}
}
```

0 comments on commit a6a46d2

Please sign in to comment.