Version: V7.1x & V7.2x
Modules: Governance
Product Area: Charts, Multi Series
Note: A summary of all RSA IGL recipes can be found here: (TBC)
Time to apply: ~20 minutes
Please share your results and ideas below!
Summary:
This recipe shows you how to create a very simple multi-series chart, displaying the total number of joiners AND leavers you have had each week, over the previous 8 weeks.
You can use this data to understand trending within your organisation and potentially look into how automation of the joiners and leavers process, could save you time/money
Prerequisites:
- RSA IGL v7.1x or v7.2x
- Identity data collections running, with some new joiners and leavers in the environment
- You may want to test these out first, which are single series charts:
Make sure you thoroughly test any changes in lower environments first before promoting them to Production.
Optional Changes to the Chart
If you want to change this chart to display more/less than 8 weeks, you need to update 3 key values in the SQL.
- "CONNECT BY LEVEL <= 8" - the 8 here, is the number of weeks you want to display, so you could change this to be 5 or 15
- "where creation_date > sysdate - 56" - the 56 here, is the number of total days, depending on how many weeks you have selected.
- So if you have 10 weeks, you would have 10weeks * 7 days = 70
- So if you have 12 weeks, you would have 12weeks * 7 = 84
- "where deletion_date > sysdate - 56" - same as the point above
I would strongly recommended you do not have too many weeks, otherwise it will not display very well in the UI.
The SQL to use:
Please test this works first, within your environment.
(select * from
(select
T1.tmpWeek as "Week",
CASE WHEN T2.TotalPerWeek IS NULL THEN CAST(('0') AS NUMBER(20)) ELSE CAST(T2.TotalPerWeek AS NUMBER(20)) END AS "# Leavers",
CASE WHEN T3.TotalPerWeek IS NULL THEN CAST(('0') AS NUMBER(20)) ELSE CAST(T3.TotalPerWeek AS NUMBER(20)) END AS "# Joiners"
from
(
SELECT
to_char(sysdate - (7 * level) +7,'YYYYMMDD') as FullDate,
to_char(sysdate - (7 * level) +7,'WW') as tmpWeek
FROM dual
CONNECT BY LEVEL <= 8
) t1
left join
(
select
'Leavers' as AppAction,
tmpWeek,
count(deletion_date) as TotalPerWeek
from
(
select distinct
ID,
deletion_date,
to_char(deletion_date,'WW') as tmpWeek
from avuser.pv_users
where deletion_date > sysdate - 56
)
group by tmpWeek
) t2
ON t2.tmpWeek = t1.tmpWeek
left join
(
select -- this will tell you how many accounts have been created per week
'Joiners' as AppAction,
tmpWeek,
count(creation_date) as TotalPerWeek
from
(
select distinct
ID,
creation_date,
to_char(creation_date,'WW') as tmpWeek
from avuser.pv_users
where creation_date > sysdate - 56 --change this to be the same number of days, as per the total weeks selected
)
group by tmpWeek
) t3
ON t3.tmpWeek = t1.tmpWeek
order by FullDate asc)
)
The output looks like this in my environment. Showing that there were 1651 new joiners in week 23 of this year and 41 leavers in week 27 of the year
Steps to create within the RSA IGL UI
- Log into RSA IGL as a user who can create charts. In my example, im using AveksaAdmin
- Go to "Reports" / "Charts"
- Select "+ Create Chart" button
- Under the "General Tab" add the following details:
- Name
- Description
- Type = Multiple Series Chart
- Under the "Query" Tab, copy the SQL from above and hit "Preview", you should see some results.
If you get an error at this stage, please test your SQL in a Query tool, like "SQL Developer" or "SQL Squirrel" to ensure it works first. If it still doesn't work, please share your SQL and a screen shot of the issue below. - Under the "Columns" Tab, please use the configuration shown in the image below, however you can change this to be whatever you like. I think that using red for leavers and green for joiners, looks good.
- Under the "Display Attributes" tab, you should select "Style = MS Line". Please also apply these settings
- Under "Title and Axis Names"
- Caption: "Weekly Joiners and Leavers"
- Sub Caption: "For the Previous 8 Weeks"
- X Axis Name: "Week #"
- Y Axis Name: Total
- Under "Functional attributes"
- Select "Animation" checkbox (ticked)
- Select "Show Labels" (Ticked)
- Select "Show Values" (Ticked)
- Under "Title and Axis Names"
There are MANY other "display attributes" you can play with on this screen, so please update and make changes as you see fit.
Final Result
Next Steps
Add this chart to a dashboard, so you can easily see the data.
Related Articles
Email templates that use HTML markup tags insert unwanted blank lines in the body of the email in RSA Identity Governance … 51Number of Views RSA Governance & Lifecycle Recipes: User Summary - Joiners & Leavers 20Number of Views Unable to join a new cluster to a group; no failures are reported when joining the clusters 33Number of Views RSA Identity Governance & Lifecycle - Joiners Movers Leavers whitepaper 72Number of Views Looping fulfillment workflows cause multiple issues in SecurID Governance & Lifecycle 324Number of Views
Trending Articles
RSA MFA Agent 2.3.6 for Microsoft Windows Installation and Administration Guide RSA Release Notes for RSA Authentication Manager 8.8 RSA Authentication Manager 8.9 Release Notes (January 2026) Supported On-Demand Authentication (ODA) SMS providers for use with RSA Authentication Manager 8.x Deploying RSA Authenticator 6.2.2 for Windows Using DISM