How do admins find censored posts/ is there a count of censored words per User?

I am trying to get my community to self-regulate and hence chucked most swear words/sensitive information (RegEx phrases) into the censored watched words.

However, I noticed, it does not notify admins when posts are censored. Ideally we want to make a count of the number of times a User has used a bad word/phrase so we can silence them if need be for too many inappropriate postings.

Does discourse count censored posts per User/ how can admins get pinged for censored posts?

@Nesha

Or from another angle, is it possible to use advanced search filters to list censored or flagged posts?

And yes, we did our search first:

We compiled our own list of what (kinda) works:

More cool tips for listing topics

List all archived topics:
https://datalabcommonstrial.discourse.group/latest?status=archived

List all closed topics:
https://datalabcommonstrial.discourse.group/latest?status=closed

List all deleted topics:
https://datalabcommonstrial.discourse.group/latest?status=deleted

List all bumped topics:
https://datalabcommonstrial.discourse.group/latest?status=bumped

List all deferred topics:
https://datalabcommonstrial.discourse.group/latest?status=deferred

List all unlisted topics:
https://datalabcommonstrial.discourse.group/latest?status=unlisted

List all assigned topics:
https://datalabcommonstrial.discourse.group/latest?status=assigned

List all unanswered topics:
https://datalabcommonstrial.discourse.group/latest?max_posts=1

? visible or invisible?

More:

This can be used in the Search box:
You can do this in search with in:pinned and status:archived

Even more:

How to search/filter untagged topics

advanced_filter(/^status:open$/) do |posts|
advanced_filter(/^status:closed$/) do |posts|
advanced_filter(/^status:archived$/) do |posts|
advanced_filter(/^status:noreplies$/) do |posts|
advanced_filter(/^status:single_user$/) do |posts|
advanced_filter(/^in:first|^f$/) do |posts|
advanced_filter(/^in:pinned$/) do |posts|
advanced_filter(/^in:unpinned$/) do |posts|
advanced_filter(/^in:(likes|bookmarks)$/) do |posts, match|
advanced_filter(/^in:posted$/) do |posts|
advanced_filter(/^in:seen$/) do |posts|
advanced_filter(/^in:unseen$/) do |posts|
advanced_filter(/^in:wiki$/) do |posts, match|
advanced_filter(/^posts_count:(\d+)$/) do |posts, match|
advanced_filter(/^min_post_count:(\d+)$/) do |posts, match|
advanced_filter(/^badge:(.)$/) do |posts, match|
advanced_filter(/^with:images$/) do |posts|
advanced_filter(/^#([\p{L}0-9-:=]+)$/) do |posts, match|
advanced_filter(/^group:(.+)$/) do |posts, match|
advanced_filter(/^user:(.+)$/) do |posts, match|
advanced_filter(/^@([a-zA-Z0-9_-.]+)$/) do |posts, match|
advanced_filter(/^before:(.
)$/) do |posts, match|
advanced_filter(/^after:(.*)$/) do |posts, match|
advanced_filter(/^tags?:([\p{L}0-9,-+]+)$/) do |posts, match|
advanced_filter(/^-tags?:([\p{L}0-9,-
+]+)$/) do |posts, match|
advanced_filter(/^filetypes?:([a-zA-Z0-9,-_]+)$/) do |posts, match|