You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am trying to build a way to give some advanced metrics for the scriptrunner objects we use (scripted fields, listeners, etc) based on the information scriptrunner stores in the database. I see some data in the database tables, including the runtime stats, but I can't find some critical details. In the run result table, the key is obviously for each of the objects, but I can't find where that key maps to an object. In particular, I can't find where the behaviors, listeners and scripted field keys are stored. I only see fragments, jobs and resources in one of the other AO tables.
Most of the other configs are in jira application properties stored as json strings.
You can retrieve them from the db using SQL:
Select
e.PROPERTY_KEY,
t.propertyvalue As Text,
s.propertyvalue As String
From
propertyentry e Left Join
propertytext t On e.ID = t.ID Left Join
propertystring s On e.ID = s.ID
Where
(e.PROPERTY_KEY Like 'com.onresolve%' Or
e.PROPERTY_KEY Like '%Behaviour%')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Corey,
I'm Andre Serrano, ScriptRunner Product Manager I'm interested in understanding more about your metrics. What kind of metrics are you trying to get and why?
We in SR are focusing on a similar initiative so there might be some overlap.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.