github.com/prebid/prebid-server/v2@v2.18.0/analytics/agma/README.md (about)

     1  # agma Analytics
     2  
     3  In order to use the Agma Analytics Adapter, please adjust the accounts / endpoint with the data provided by agma (https://www.agma-mmc.de).
     4  
     5  ## Configuration
     6  
     7  ```yaml
     8  analytics:
     9      agma:
    10          # Required: enable the module
    11          enabled: true
    12          # Required: set the accounts you want to track
    13          accounts:
    14          - code: "my-code" # Required: provied by agma
    15            publisher_id: "123" # Required: Exchange specific publisher_id
    16            site_app_id: "openrtb2-site.id-or-app.id" # optional: scope to the publisher with an openrtb2 Site object id or App object id
    17          # Optional properties (advanced configuration)
    18          endpoint: 
    19              url: "https://go.pbs.agma-analytics.de/v1/prebid-server" # Check with agma if your site needs an extra url
    20              timeout: "2s"
    21              gzip: true
    22          buffers: # Flush events when (first condition reached)
    23              # Size of the buffer in bytes
    24              size: "2MB" # greater than 2MB (size using SI standard eg. "44kB", "17MB")
    25              count : 100 # greater than 100 events
    26              timeout: "15m" # greater than 15 minutes (parsed as golang duration)
    27  
    28  ```