Query com No Data no painel Prometheus
- Query com "No Data" no painel Prometheus.
| StartPollers=10 | |
| StartIPMIPollers=5 | |
| StartJavaPollers=3 | |
| StartTrappers=5 | |
| StartHTTPPollers=5 | |
| StartICMPPollers=2 |
| Passo 1: Remover Objetos Vazios | |
| O primeiro passo para corrigir o erro é remover todos os objetos vazios do repositório Git. Isso pode ser realizado através do seu terminal, executando o seguinte comando find: | |
| find .git/objects/ -type f -empty | xargs rm | |
| Este comando busca por arquivos vazios no diretório .git/objects e os remove. Isso ajuda a limpar objetos que podem estar causando o erro. | |
| Passo 2: Atualizar o Repositório | |
| Após remover os objetos vazios, o próximo passo é atualizar o repositório Git. Use o comando a seguir para buscar e limpar referências remotas obsoletas: |
| ### Keybase proof | |
| I hereby claim: | |
| * I am fernandomullerjr on github. | |
| * I am fernandomuller (https://keybase.io/fernandomuller) on keybase. | |
| * I have a public key ASA2t0yDe-ZHYH6mbjb8Q7YYGfWL2Jl4NGNWinhtVoGFXwo | |
| To claim this, I am signing this object: |
| #!/bin/sh | |
| valores_base=0 | |
| valor_desejado=1000 | |
| while [ ${valores_base} -le ${valor_desejado} ]; | |
| do | |
| echo "Iniciando a criação dos elementos" | |
| valores_base=`expr ${valores_base} + 1` | |
| echo "Teste_${valores_base}" | |
| redis-cli -n 7 RPUSH balls "volleyballz_20${valores_base}" | |
| done |
| aws ec2 describe-network-interfaces --filters Name=group-id,Values=<group-id> --region <region> --output json | |
| aws ec2 describe-network-interfaces --filters Name=group-id,Values=sg-013b42c27e387b7a8 --region sa-east-1 --output json |
| aws apigateway get-rest-apis --region us-east-1 | |
| aws apigateway get-rest-apis --region us-east-1 --output table | cat | |
| The DNS name can be constructed from the values of REST API id and the AWS region using the following format: | |
| <id>.execute-api.<region>.amazonaws.com |