@@ -30,7 +30,7 @@ Every collector needs the following environmental variables for setup:
-`COLLECTOR_INTERVAL_SECONDS`: the amount of time in seconds the collector needs to sleep before beginning the next round of collection.
-`TARGET_URL`: the base domain url for where the requests are going to be sent to when collecting. For example, `https://example.com`.
-`LOOK_BACK_DAYS`: represents how old of a dataset (measured in days) do we want the collectors to collect data from (for example pull requests that were update 365 days ago for gitlab-scm-collector)
-`GO_RUN_ENV`: represents the environment type (can be "production" or "development" only).
-`GO_RUN_ENV`: mode of operation for the collector (can be "production" or "development" only).
-`COLLECTOR_TARGETS_INTRVL_SECS`: represents the amount of time that the top level collection (collector target collection) must wait before collecting again. Ideally 24 hours.
-`MAX_REQUESTS_PER_MINUTE`: represents the threshold for the amount of requests that can be sent to `TARGET_URL` in a minute before the collector instance needs to stop sending requests for a brief period of time.
-`ACCESS_TOKEN`: the token that must be set in order for the collector to retrieve data from whatever API might need the token (example: GitLab, Jira etc.).
...
...
@@ -45,7 +45,7 @@ The API needs the following environmental variables for the setup:
-`SSO_ENABLED`: determines whether the SSO is enabled or not (can only be one of "true" or "false" as value).
-`SSO_ADMIN_GROUP`: the SSO group name for admin access.
-`SSO_LEADERSHIP_GROUP`: the SSO group name for leadership access.
-`SSO_GROUPS_KEY`: the key found in user token indicating the list of groups a user is part of (this can include `SSO_ADMIN_GROUP`, `SSO_LEADERSHIP_GROUP` in the list). This list will determine what SSO permissions a user has.
-`SSO_GROUPS_KEY`: the key found in user token indicating the list of groups a user is part of (this can include `SSO_ADMIN_GROUP`, `SSO_LEADERSHIP_GROUP`values in the list). This list will determine what SSO permissions a user has.
-`SSO_USERNAME_KEY`: the key found in user token indicating the user's username.
-`OPENAPI_VERSION`: the open api version for the app to use.
-`MODE`: the mode of operation for the app (can be "production" or "development")