Skip to content

Commit 6746a8c

Browse files
committed
fix: updated README and logger prints
1 parent f399e70 commit 6746a8c

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

tools/target-server-validator/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,15 @@ bucket_project_id=xx-xxx-xx # GCS bucket project id
6666
file_path_in_bucket=scan_output.txt # path to output file
6767
```
6868

69+
To get the notification channel id, use the following command
70+
71+
```
72+
gcloud beta monitoring channels list --project=<project_id>
73+
```
74+
75+
This command will display all available notification channels within your project. You can select the appropriate one based on your requirements. Locate the notification channel ID under the `name` field in the format `projects/<project_id>/notificationChannels/<notification_channel_id>`, and insert it into the input.properties file.
76+
77+
6978
* Sample input CSV with target servers
7079
> **NOTE:** You need to set `check_csv=true` in the `validation` section of `input.properties`
7180

tools/target-server-validator/apigee_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def deploy_api_bundle(self, env, api_name, proxy_bundle_path, api_force_redeploy
212212
if self.get_api_revisions_deployment(
213213
env, api_name, api_rev
214214
):
215-
logger.debug(f"Proxy {api_name} active in runtime after {api_deployment_retry_count*api_deployment_sleep} seconds ") # noqa
215+
logger.info(f"Proxy {api_name} active in runtime after {api_deployment_retry_count*api_deployment_sleep} seconds ") # noqa
216216
return True
217217
else:
218218
logger.debug(f"Checking API deployment status in {api_deployment_sleep} seconds") # noqa

tools/target-server-validator/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def main():
172172
for each_api_type, each_api_type_data in api_revision_map.items() # noqa
173173
for each_api, each_api_rev in each_api_type_data["proxies"].items() # noqa
174174
)
175-
logger.debug("Exporting proxy target servers")
175+
logger.info("Exporting proxy target servers")
176176
results = run_parallel(source_apigee.fetch_api_proxy_ts_parallel, parallel_args) # noqa
177177

178178
for result in results:
@@ -192,7 +192,7 @@ def main():
192192
proxy_targets[each_te] = [
193193
f"{each_api_type} - {each_api}"
194194
]
195-
logger.debug("Exporting proxy target servers done")
195+
logger.info("Exporting proxy target servers done")
196196

197197
# Fetch API Northbound Endpoint
198198
logger.info(f"Fetching VHost with name {cfg['validation']['api_hostname']} !") # noqa

0 commit comments

Comments
 (0)