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

directus-extension-usage-analytics-api

v1.0.0

Published

API endpoint for Directus Usage Analytics - provides collection storage and activity statistics

Downloads

9

Readme

Directus Usage Analytics - API

Backend API endpoint for Directus Usage Analytics extension.

📦 COMPANION PACKAGE: This API must be installed alongside the frontend module:

npm install directus-extension-usage-analytics-module

🎯 What's This Package?

This package contains the backend API endpoint that provides:

  • ✅ Collection storage statistics endpoint
  • ✅ API activity tracking endpoint
  • ✅ Time-series data aggregation
  • ✅ IP-based traffic analysis
  • ✅ Direct database access for analytics queries

📦 Installation

NPM Installation

npm install directus-extension-usage-analytics-api

Complete Installation (Both Packages)

npm install directus-extension-usage-analytics-module directus-extension-usage-analytics-api

Docker Installation

# In your Dockerfile
RUN npm install directus-extension-usage-analytics-module directus-extension-usage-analytics-api

Or in docker-compose.yml:

services:
  directus:
    image: directus/directus:latest
    volumes:
      - ./extensions:/directus/extensions

Then install:

npm install directus-extension-usage-analytics-module directus-extension-usage-analytics-api

🚀 API Endpoints

Once installed, the following endpoints are available:

Collection Statistics

GET /usage-analytics/collections

Query Parameters:

  • include_system - Include system collections (boolean)
  • sort - Sort field: row_count, collection, name
  • order - Sort order: asc, desc
  • limit - Limit number of results

Response:

{
  "data": [...],
  "total_collections": 39,
  "total_rows": 880,
  "cached": false
}

Activity Statistics

GET /usage-analytics/activity

Query Parameters:

  • start_date - Start date (ISO 8601)
  • end_date - End date (ISO 8601)
  • collections - Filter by collections (comma-separated)
  • actions - Filter by actions (comma-separated)
  • limit - Limit results per category

Response:

{
  "total_requests": 276,
  "unique_users": 1,
  "unique_ips": 1,
  "by_collection": [...],
  "by_action": [...],
  "date_range": {...}
}

IP Analysis

GET /usage-analytics/activity/ips
GET /usage-analytics/activity/ips/:ip

🔧 Requirements

  • Directus 10.x or 11.x
  • Node.js 18+ recommended
  • Frontend module installed separately

⚠️ Important Notes

Security

This extension requires direct database access and is NOT sandboxed. It cannot be installed via Directus Marketplace for security reasons.

Manual Installation Only

  • Must be installed via npm/Docker
  • Not available in Directus Marketplace
  • Requires full Node.js runtime access

📝 License

MIT License - Copyright © 2024 Flagbit GmbH & Co. KG

🤝 Support

  • Issues: https://github.com/flagbit/directus-usage-tracker/issues
  • Email: [email protected]
  • Website: https://www.flagbit.de

🎉 Why Split Packages?

This extension is split into two packages for Directus Marketplace compatibility:

  • Module Package: Can be installed via Marketplace (UI only)
  • API Package (this one): Requires manual installation (backend logic)

This approach:

  • ✅ Allows Marketplace discovery via module package
  • ✅ Maintains full functionality with both packages
  • ✅ Complies with Marketplace security requirements

📖 Documentation

For full documentation, visit:

  • GitHub Repository: https://github.com/flagbit/directus-usage-tracker
  • Module Package: https://www.npmjs.com/package/directus-extension-usage-analytics-module

Made with ❤️ by Flagbit