Ir para o conteúdo

Filtered List in AWS console

1

New to the Workspace admin console, how can I see a filtered list of just unhealthy workspaces ?

feita há 4 anos711 visualizações

3 Respostas
1

It is not possible to filter by state using the AWS Console however this can be achieved with the AWS CLI and the jq library

aws workspaces describe-workspaces | jq '.Workspaces[] | select(.State == "UNHEALTHY")'
AWS

respondido há 4 anos

1

You can sort the console output by Status, but you cannot filter by it. As suggested, the best way to get this information is via the CLI or API. In PowerShell it would be

Get-WKSWorkspace | Where-Oject {$_.State -like "Unhealthy"}

and in python it would be something like

import boto3
client = boto3.client('workspaces')
wks = client.describe_workspaces()
for wk in wks['Workspaces']:
   if wk['State'] == 'UNHEALTHY':
      print(wk)
ESPECIALISTA

respondido há 4 anos

0

Every time they ask for feedback on AWS console i give it 1 star and rant about how unusable it is. Such a simple thing to filter by state or other things for ALL workspaces, not just for single page. We have thousands of them. What the actual F. Who designs this console? For humans? Thank you others posting CLI commands, which AWS documentations is not that helpful to come up with.

respondido há 2 anos

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.