turbot/steampipe-mod-aws-insights

Dashboard: AWS Lambda Function Dashboard

This dashboard answers the following questions:

  • How many functions are in each account and region?
  • What is the code size across all the functions in each account and region?
  • How much memory is used across all functions in each account and region?
  • How many unencrypted and publicly accessible functions are there?
  • How many functions have DLQ configured?
  • How much do my functions cost each month?
  • What are my most used functions in terms of invocation metrics?
This dashboard contains 4 cards and 1 table.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-aws-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select AWS Lambda Function Dashboard dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run aws_insights.dashboard.lambda_function_dashboard --share

Queries

This dashboard uses the the following queries:
select
a.title as "Account",
count(i.*) as "functions"
from
aws_lambda_function as i,
aws_account as a
where
a.account_id = i.account_id
group by
a.title
order by
a.title;

Tags