Skip to content

criteo/data-aggregation-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ca07faf · Jan 7, 2025
Jan 7, 2025
Jan 7, 2025
Jan 7, 2025
Aug 18, 2023
Jan 7, 2025
Jun 30, 2023
Jul 3, 2023
Jul 12, 2023
Jun 30, 2023
Jul 1, 2024
Jul 1, 2024
Jun 30, 2023
Jul 12, 2023
Jan 7, 2025
Jan 7, 2025
Feb 13, 2024
Jul 1, 2024

Repository files navigation

Go status CI GitHub

Criteo Data Aggregation API

This API aggregates data from their sources of truth: the Network CMDB or possibly any other data source you may have.

Then, it computes this data to provide OpenConfig JSON for each device as an output.

ygot is used to validate the output against the OpenConfig YANG models.

HowTo: add new config namespace/option

Note: in future release, we aim to simplify the integration as much as possible.

You need to update the following part in the code:

  1. add your ingestor in ingestors/cmdb/<yournewingestor>.go:

    • GetBGPGlobal()
    • PrecomputeBGPGlobal()
  2. register your ingestor in internal/ingestors/repository.go:

    • DataPerDevice struct
    • IngestorRepository struct
    • FetchAll()
    • Precompute()
  3. store the preprocessed ingestor data into internal/convertors/device/device.go:

    • Device struct
    • NewDevice()
  4. add your convertor in internal/convertors/...

  5. execute your convertor (internal/convertors/device/device.go):

    • Generateconfigs()