jazzband/django-silk

Silky smooth profiling for Django

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 37 minutes ago
Added to GitGenius on September 13th, 2026
Created on May 21st, 2014
Open Issues & Pull Requests: 125 (+0)
GitHub issues: Enabled
Number of forks: 374
Total Stargazers: 4,994 (+0)
Total Subscribers: 53 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 28.1 days
Mean response time: 355.0 days
90th percentile: 1277.1 days
Tracked items: 66

Most active contributors

Sign in to see contributor activity.

How this project is maintained

92% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Three people close 86% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 25
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 1,274 days
Stale 30+ days: 24
Stale 90+ days: 19

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • bug (6)
  • good first issue (5)
  • documentation (4)
  • question (4)
  • integration with 3rd-party (3)
  • cleanup (2)
  • enhancement (2)
  • feature (2)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Django Silk is a live profiling and inspection tool for the Django framework.

Silk solves the problem of understanding request performance and database behavior during development by intercepting HTTP requests, responses, and SQL queries, then storing them for inspection through a web interface. The tool works by installing middleware that captures request and response data along with associated database queries, allowing developers to examine execution time, query counts, headers, bodies, and stack traces without leaving the browser.

Developers should adopt Silk if they need visibility into request handling and database performance during development. It suits Django projects where understanding query patterns and request timing is valuable for optimization. The tool requires careful middleware ordering, specifically ensuring that GZipMiddleware appears before SilkyMiddleware to avoid encoding errors, and that no preceding middleware returns a response without invoking get_response. Installation is straightforward via pip, with configuration through Django settings and URL routing, and the interface is accessible at /silk/ after running migrations.

The project maintains active support across recent Django and Python versions. Development shows consistent engagement with configuration flexibility, including options for selective request recording, path ignoring, and custom middleware subclassing. The codebase demonstrates attention to practical deployment concerns such as request and response data limiting and the ability to clear logged data.