Skip to content

New filter on threads overview page: long running threads #85

@drauf

Description

@drauf

Achieve something similar to the regexp below:

grep -E -h '^"http.*-exec-[0-9]+' jira_threads.* | sed 's/"//g' | sort -k1,1 -s | grep -E " runnable | Object.wait\(\) | monitor " | awk '{print $1, $2, $3}' | uniq -c | awk '($1 >= 2) {print}' | sort -nr

Basically, only display threads that are running for 2+ consecutive windows. The filter can be useful especially for thread dumps with hundreds+ of threads or a huge number of dumps where it's not easy to visually scan everything.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions