Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

User100000's avatar
User100000
Icon for Nimbostratus rankNimbostratus
May 20, 2026

How to send statistics for a specific pool by email

Hello,

We need to send this specific view, as shown below, by email every two hours

 

We need have the status of a specific virtual server, the related pool, with the pool members' status and statistics every two hours 

What I mean by statistics here is like what we see in BIG IP GUI, as below

Bits (In/Out)

Packets (In/Out)

Connections (Current/Maximum/Total)

Requests (Total)

 

How can it be done from BIG IQ if exist and how can it be done from BIG IP itself?

1 Reply

  • Hi,

    not out of the Box and I have no idea about BigIQ but for BigIP you can fetch those statistics over CLI.

    Virtual Server:
    tmsh show ltm virtual <virtual_server_name> field-fmt

     

    Pool and the Member:
    tmsh show ltm pool <pool_name> field-fmt
    tmsh show ltm pool <pool_name> members field-fmt

    Now you need to ask your favorite LLM for creating a BashScript executing those commands and parsed it.

     

    And execute this with a cronjob every 2 hours:

    0 */2 * * * /root/pool_report.sh | mail -s "F5 pool report - http_pool" yourteam@example.com