Real-time token usage and cost monitoring for AWS Bedrock
Project description
bedrock-lens
Real-time token usage and cost monitoring for AWS Bedrock — because Cost Explorer won't tell you until tomorrow.
The problem
When running Bedrock agents, you're flying blind. AWS Cost Explorer has a 24–48 hour lag. CloudWatch has live data, but getting to it requires knowing the log group name, converting dates to epoch milliseconds, parsing deeply nested JSON, and doing the cost math yourself.
There's no bedrock usage command. This is that command.
Install
pip install bedrock-lens
Or with uv:
uv tool install bedrock-lens
Usage
bedrock-lens # today's usage (default)
bedrock-lens --yesterday
bedrock-lens --week
bedrock-lens --since 2h # last 2 hours
bedrock-lens --since 30m # last 30 minutes
bedrock-lens --since 1d # last 1 day
bedrock-lens --live # tail mode, refreshes every 5s
bedrock-lens --since 1h --live # live tail for the last hour
bedrock-lens --live --threshold 2 # alert when spend crosses $2
bedrock-lens --setup # one-time setup wizard
# different profile / region
bedrock-lens --profile my-profile --region us-west-2
First-time setup
Bedrock doesn't log invocations by default. Run the setup wizard once per AWS account:
bedrock-lens --setup
This creates the CloudWatch log group, an IAM role for Bedrock to write to it, and enables model invocation logging. Takes about 10 seconds. After that, every Bedrock call shows up within ~30 seconds.
By default, the log group is created with no retention policy (AWS keeps logs forever). Use --retention to control this:
bedrock-lens --setup --retention 90 # expire logs after 90 days
bedrock-lens --setup --retention 0 # remove any existing retention policy
Omitting --retention leaves any existing policy untouched.
If you don't have IAM permissions to create roles, the wizard prints the exact policies and CLI command to hand off to your admin.
How it works
Bedrock writes a JSON record to /aws/bedrock/model-invocations in CloudWatch for every model call. Each record contains the model ID, input token counts, and output token count. bedrock-lens reads those records, applies per-model pricing, and renders the table.
Prompt cache tracking: Bedrock logs cache writes and cache reads as separate token counts from regular input tokens, each billed at a different rate. bedrock-lens tracks all three buckets independently and prices them correctly. Cache Write and Cache Read columns appear in the table automatically when any model in the current window has cache activity.
Live mode (--live) polls every 5 seconds with a 90-second overlap window to handle CloudWatch's ingestion delay, deduplicating events by ID so nothing gets double-counted.
Pricing
Prices are fetched live at startup from two AWS sources and merged:
AmazonBedrockFoundationModels price list CSV — the primary source for Anthropic/Claude models (including the latest 4.x releases), Cohere, AI21, and legacy models. Downloaded via list_price_lists + get_price_list_file_url for your specific region. Uses the standard on-demand Global rate rather than the geo-CRIS regional premium.
AmazonBedrock Price List API — covers all other providers: Meta (Llama), Mistral, DeepSeek, Google (Gemma), Amazon Nova, Nvidia, Qwen, and 50+ more. Prices are region-specific and update automatically.
For any model not yet in either source — typically new releases in the days before AWS adds them to the catalogue — the tool prompts you to enter the price once and saves it to ~/.config/bedrock-lens/overrides.json. The entry is removed automatically the next time the model appears in the live pricing data.
Token counts are always accurate for every model regardless of pricing status — they come directly from CloudWatch logs written by Bedrock itself. Unknown models show N/A for cost but token counts are never affected.
Requirements
- Python 3.9+
- AWS credentials with:
logs:FilterLogEventson/aws/bedrock/model-invocationsbedrock:ListFoundationModelsandbedrock:ListInferenceProfilesfor live model discoverypricing:ListPriceListsandpricing:GetPriceListFileUrlfor live pricing
- Bedrock model invocation logging enabled (run
--setupif not)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bedrock_lens-0.2.0.tar.gz.
File metadata
- Download URL: bedrock_lens-0.2.0.tar.gz
- Upload date:
- Size: 496.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebf5a6141d1845c0415654543e00d10793edaa5a15f13ee3da319f890e97a70a
|
|
| MD5 |
1cc41ef2ec23505c7983ab8eefa72de1
|
|
| BLAKE2b-256 |
54e376febedffd84998b1313ae78602a445d66743f5420d4a8389e2a2b7d708e
|
File details
Details for the file bedrock_lens-0.2.0-py3-none-any.whl.
File metadata
- Download URL: bedrock_lens-0.2.0-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99562f29d0af40e5ccf269b2138096ac024beadeda6af2748b8f667b3d9dcd63
|
|
| MD5 |
fc41b669c1642a774d329703f28db81c
|
|
| BLAKE2b-256 |
03bfc9d39b7bbb5093ae9ea7cf530697bc9788bda1b58171015dacf4b0f83e10
|