diff --git a/gso/oss-params-example.json b/gso/oss-params-example.json index 595c22f950da70a4348b67c29926ae1fdff3c8aa..d5882de16eb3bd9d89b178f6aa4b1fa2d733bced 100644 --- a/gso/oss-params-example.json +++ b/gso/oss-params-example.json @@ -108,6 +108,7 @@ "user_email": "robot-user@geant.org", "api_key": "kentik_api_key", "device_type": "router", + "minimize_snmp": false, "billing_plans": { "1": "XL license", "2": "L license", @@ -116,6 +117,7 @@ }, "sample_rate": 100, "bgp_type": "device", + "bgp_lookup_strategy": "lu_global_fallback", "ASN": 137, "route_selection": "both directions", "snmp_community": "secret community string", diff --git a/gso/settings.py b/gso/settings.py index a8fa96d7f40fc6860862ed06008111e526dbcfc9..ed6387ba6700662dd752d90a10a5e83e28288530 100644 --- a/gso/settings.py +++ b/gso/settings.py @@ -180,9 +180,11 @@ class KentikParams(BaseSettings): user_email: str api_key: str device_type: str + minimize_snmp: bool billing_plans: dict[SiteTier, str] sample_rate: int bgp_type: str + bgp_lookup_strategy: str ASN: int route_selection: str snmp_community: str