Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • In the new version, to ingest the data we need to add that service name in the config.

  • user is changed into username.

  • credential is changed into password.

  • username and password of the new version are under credentials subheading.

  • There is no separate puller for any services all the services have a unified puller.

Preparing for Migration

Before starting the migration process, we recommend the following steps:

...

Code Block
# Old Version (1.x.x)
  user: <user>
  credential: <credentials>
  

Code Block
# New Version (2.x.x)
    services:
       clicksBlocked:
         start_time_in_utc_format: <start_time_in_utc_format> # example 2022-05-14T00:00:00Z
       clicksPermitted:
         start_time_in_utc_format: <start_time_in_utc_format> # example 2022-05-14T00:00:00Z
       messagesBlocked:
         start_time_in_utc_format: <start_time_in_utc_format> # example 2022-05-14T00:00:00Z
       messagesDelivered:
         start_time_in_utc_format: <start_time_in_utc_format> # example 2022-05-14T00:00:00Z

There are some changes in the params we are providing for each services in old and new configurations.

...

Code Block
# Old Version (1.x.x)
  user: <user>
  credential: <credentials>

Code Block
# New Version (2.x.x)
inputs:
  proofpoint_tap:
    id: <short_unique_id>
    enabled: true
    credentials:
      username: <username_value>
      password: <password_value>
    services:
       clicksBlocked:
         start_time_in_utc_format: <start_time_in_utc_format> # example 2022-05-14T00:00:00Z
         <override_tag>: <override_tag>
       clicksPermitted:
         start_time_in_utc_format: <start_time_in_utc_format> # example 2022-05-14T00:00:00Z
         override_tag: <override_tag>
       messagesBlocked:
         start_time_in_utc_format: <start_time_in_utc_format> # example 2022-05-14T00:00:00Z
         override_tag: <override_tag>
       messagesDelivered:
         start_time_in_utc_format: <start_time_in_utc_format> # example 2022-05-14T00:00:00Z
         override_tag: <override_tag>

...

  • user is changed into username

  • credential is changed into password

  • username and password in the new version must be put under credentials subheading.

  • Number of requests all the services can make is 1800 in a day after that new calls will be blocked for a day.

  • By default request_period_in_seconds is 240 second so if no request_period_in_seconds param is provided in the user_config each service will starting new pull cycle after waiting for 240 seconds.