npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@aws-mdaa/dataops-dashboard

v1.4.0

Published

MDAA dataops-dashboard module for CloudWatch observability dashboards

Downloads

16

Readme

DataOps Dashboard App

CloudWatch dashboard module for MDAA observability features.

Overview

The DataOps Dashboard App creates CloudWatch dashboards that aggregate metrics and logs from multiple Lambda functions across different modules. It supports SSM-based metric references for cross-module integration and automatic widget layout.

Features

  • Text Widgets: Display markdown content for dashboard headers and descriptions
  • Metric Widgets: Visualize time-series metrics with support for metric math
  • Log Insights Widgets: Display CloudWatch Logs Insights query results
  • SSM References: Reference metrics from other modules using SSM Parameter Store
  • Placeholder Resolution: Automatically resolve function names and log groups
  • Auto-wrapping: Widgets automatically wrap at 24-unit width

Configuration

Basic Dashboard

projectName: my-project
dashboards:
  - dashboardName: etl-observability
    widgets:
      - type: text
        markdown: |
          # ETL Observability Dashboard
          Monitoring for data pipeline
        width: 24
        height: 2

Metric Widget with SSM Reference

- type: metric
  title: "Error Count"
  width: 12
  height: 6
  metrics:
    - metricRef: "ssm:/mdaa/org/dev/metrics/lambda_csv_parquet/error-count"
      stat: Sum

Metric Widget with Direct Reference

- type: metric
  title: "Lambda Duration"
  width: 12
  height: 6
  metrics:
    - namespace: AWS/Lambda
      metricName: Duration
      dimensions:
        FunctionName: "{{function:lambda_csv_parquet}}"
      stat: Average

Log Insights Widget

- type: log_insights
  title: "Recent Errors"
  width: 24
  height: 6
  logGroupNames:
    - "{{function:lambda_csv_parquet:logGroup}}"
  queryString: |
    fields @timestamp, @message
    | filter @message like /ERROR/
    | sort @timestamp desc
    | limit 20

Placeholders

Function Name Placeholder

Use {{function:functionName}} to reference a Lambda function name from SSM:

dimensions:
  FunctionName: "{{function:lambda_csv_parquet}}"

Resolves to: /mdaa/lambda/lambda_csv_parquet/name

Log Group Placeholder

Use {{function:functionName:logGroup}} to reference a Lambda function's log group:

logGroupNames:
  - "{{function:lambda_csv_parquet:logGroup}}"

Resolves to: /mdaa/lambda/lambda_csv_parquet/log-group

SSM Metric References

Reference metrics created by other modules using SSM syntax:

metricRef: "ssm:/mdaa/{org}/{env}/metrics/{functionName}/{metricName}"

The construct will automatically resolve:

  • Namespace from: /mdaa/{org}/{env}/metrics/{functionName}/{metricName}/namespace
  • Name from: /mdaa/{org}/{env}/metrics/{functionName}/{metricName}/name

Deployment

  1. Deploy Lambda functions with metric filters first
  2. Wait for SSM parameters to be created
  3. Deploy dashboards
# Deploy Lambda functions
cd packages/apps/dataops/dataops-lambda-app
cdk deploy

# Deploy dashboards
cd packages/apps/dataops/dataops-dashboard-app
cdk deploy

Widget Types

Text Widget

- type: text
  markdown: "# Dashboard Title"
  width: 24
  height: 2

Metric Widget

- type: metric
  title: "Metric Title"
  width: 12
  height: 6
  period: 300
  metrics:
    - namespace: AWS/Lambda
      metricName: Duration
      stat: Average

Log Insights Widget

- type: log_insights
  title: "Query Title"
  width: 24
  height: 6
  logGroupNames:
    - "/aws/lambda/my-function"
  queryString: |
    fields @timestamp, @message
    | sort @timestamp desc

Widget Layout

Widgets are automatically laid out in rows with a maximum width of 24 units. When adding a widget would exceed 24 units, a new row is started automatically.

Example:

  • Widget 1: width 12 (row 1)
  • Widget 2: width 12 (row 1)
  • Widget 3: width 12 (row 2, new row started)
  • Widget 4: width 12 (row 2)