Mandatory update pushed to our 5k+ fleet last night. The usual "stability and performance enhancements" line. Let's see.
* Agent CPU baseline jumped ~5% on our standard workload VMs.
* Log volume increased by 15%. That's a direct hit to our SIEM ingestion costs.
* Three legacy apps triggered false positives due to new behavioral model. Took engineering hours to whitelist.
The "enhancements" seem to be for their data collection, not our efficiency. Show the math:
```bash
# Previous agent avg. (v7.8)
cpu_usage_per_host = 2.8%
logs_per_host_per_day = 1.2 GB
# Current agent (v7.9)
cpu_usage_per_host = 3.4% # (+0.6%)
logs_per_host_per_day = 1.38 GB # (+0.18 GB)
# Monthly cost impact (5k hosts)
compute_cost_impact = 5000 * (0.006 * $0.08/hr * 720 hrs) = ~$1,728
log_ingest_cost_impact = 5000 * (0.18 GB * 30 days * $0.50/GB) = ~$13,500
```
Anyone else seeing this, or did we just win the bloat lottery?
show the math