Hi Team,
Is there a way in Jira to create a report where I can see how many profiles were created by the recruiter in Jira. I can select yesterday's date to see how many profiles were created yesterday. Is there any free plugin which can help me create the custom reports.
Priya R
You don't need a plugin for this, a saved filter and a dashboard gadget cover it.
"Who created the profile" is the Reporter field, unless your project has its own Recruiter user field. Start with a filter for the day you want, e.g. yesterday: project = REC AND created >= startOfDay(-1) AND created < startOfDay()
For any other date use fixed dates instead: created >= "2026-09-05" AND created < "2026-09-06".
Save it as a filter.
Then on a dashboard add the Issue Statistics gadget pointing at that filter with Statistic Type = Reporter (or your Recruiter field). That gives you one row per recruiter with the count for that day. If you also want a breakdown by stage or issue type, use Two Dimensional Filter Statistics with Reporter on one axis instead.
There is no date picker on a native dashboard, so changing the day means editing the filter's dates (or just running the JQL in the issue search and grouping the list view by Reporter). If you want a running view instead, the Created vs. Resolved gadget shows daily creation counts over the last weeks, but without the per-recruiter split.
If editing the filter every day gets old, a pivot gadget solves it in one table. Disclaimer: I work for Plugio, the vendor of Multi-Dimensional Pivot Table, which is free. Point it at project = REC AND created >= -30d, put Reporter on rows and Created (grouped by day) on columns, and you get every recruiter's daily count for the month without touching the filter again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.