We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the plugin does only monitor the IP usage in the subnets, not the public ip pools possibly configured in "Bring your own IP" scenarios.
It would be great to also monitor for public ip pool usage
Equivalent ec2-command (see https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-public-ipv4-pools.html):
aws ec2 describe-public-ipv4-pools
Example output
{ "PublicIpv4Pools": [ { "PoolId": "ipv4pool-ec2-1234567890abcdef0", "PoolAddressRanges": [ { "FirstAddress": "203.0.113.0", "LastAddress": "203.0.113.255", "AddressCount": 256, "AvailableAddressCount": 256 } ], "TotalAddressCount": 256, "TotalAvailableAddressCount": 256 } ] }
Interesting metrics
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the plugin does only monitor the IP usage in the subnets, not the public ip pools possibly configured in "Bring your own IP" scenarios.
It would be great to also monitor for public ip pool usage
Equivalent ec2-command (see https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-public-ipv4-pools.html):
Example output
Interesting metrics
The text was updated successfully, but these errors were encountered: