You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On running the following command for listing appinstances, various ports (especially HTTP/DEBUG/OTHER) also would be a good addition to the output
drove -c stage appinstances list my-application-01
Example Output (PORT(s) column requirement) -
Instance ID Executor Host State Error Message Created Last Updated
------------ ------------------------ ---------- ------------- --------------------- --------------------
AI-INSTANCE stg-instance.website.com HEALTHY 18/09/2024, 11:00:00 18/09/2024, 18:00:00
Proposal:
Addition of Ports column
Addition of comma separated name, port as values Eg = admin: 23959,http: 27271
Implementation:
In list_instances -
Addition of "Ports" in headers list & following snippet -
try:
instance_row.append(", ".join("{}: {}".format(key, value['hostPort']) for key, value in instance["localInfo"]["ports"].items()))
except KeyError:
instance_row.append("")
Sorry missed this. Can be done, need to figure out a way to show this in a consistent manner. It would be an issue since the ports list can change in length. Will address in next release.
On running the following command for listing appinstances, various ports (especially HTTP/DEBUG/OTHER) also would be a good addition to the output
drove -c stage appinstances list my-application-01
Example Output (PORT(s) column requirement) -
Proposal:
Ports
columnadmin: 23959,http: 27271
Implementation:
In
list_instances
-Addition of "Ports" in
headers
list & following snippet -Sample ports raw output -
The text was updated successfully, but these errors were encountered: