Skip to content
New issue

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

Add monitoring for public-ip-pool usage #25

Open
robert-heinzmann-logmein opened this issue Sep 28, 2021 · 0 comments
Open

Add monitoring for public-ip-pool usage #25

robert-heinzmann-logmein opened this issue Sep 28, 2021 · 0 comments
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@robert-heinzmann-logmein

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

  • TotalAddressCount
  • TotalAvailableAddressCount
@idgenchev idgenchev added enhancement New feature or request good first issue Good for newcomers labels Sep 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants