Hello, Again, Community:
I am revisiting my previous automation rules for computing elapsed time-in-current-status and I'm trying to identify the errors in my system date-time arithmetic. I have three automation rules:
Here is the date arithmetic to compute "Status_Elapsed_WrkDays":
When the automation rule executes, it generates a error in the log:
Does anyone know the proper date arithmetic for this?
Continued "Thanks"!
-John Tucci
Megabyte Systems, Inc.
Hi @John Tucci
For a question like this, please post an image of your complete automation rule(s), images of any relevant actions / conditions / branches, an image of the audit log details showing the rule execution, and explain what is not working as expected. Those will provide context for the community to offer ideas. Thanks!
Until we see those...
Have you considered merging your second and third rules?
What are the types of your custom fields: text, date, date / time, etc.? If they are text, please try converting them with toDate prior to performing the diff() operation: https://support.atlassian.com/cloud-automation/docs/examples-of-using-smart-values-with-dates/#Converting-text-to-dates
Kind regards,
Bill
Hi, @Bill Sheboy :
My apology for this delayed response...and my sincere "Thanks" for your interest and suggestions, especially the "toDate()" hint, as my date values are text.
Here are the rules:
I hope this provides enough info to explain what I'm attempting to accomplish, and to provide insight into what I've missed.
Thanks, again.
-John Tucci
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for that information, John.
To summarize, it appears the purpose of your rule set is: detect when an issue has been in the same status for more than 4 working days (i.e., Monday - Friday), in order to add an indictor label.
With text fields to represent the dates, they will need to be converted with toDate before the difference can be done. To eliminate that, why not store them as date fields rather than text?
Your second and third rules could be combined, eliminating any possible timing problems for rule trigger scheduling. I'd recommend performing the calculation and saving the result in a created variable, reducing the need for so many re-fetch issue actions. After the issue updates, the condition from your "StatusElapsedFlagger" rule could be done to set the label.
A couple of follow-up questions:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Again, @Bill Sheboy :
I'm glad my screenshots made this all clearer. I believe that your pointer to store the date info as date values (instead of text) is the key to making this work! I do also like your suggestion about combining the date update and arithmetic/time-limit detection into a single rule. I will make these changes this week and let you know the results.
For your follow-up questions:
I believe I've mentioned this upcoming opinion in this forum in prior postings, but, I feel that real-time time-in-status data for each issue should be a basic Jira feature. I believe that there is a long-standing request for this already submitted; I even voted for that request!! It just isn't clear to me how many votes are necessary to move a request into the "being developed" stage.
My sincere "Thanks" to you again for your outstanding help. You are one more element of evidence for the value and character of this Community.
Kind Regards,
-John Tucci
Megabyte Systems, Inc.|
Rocklin, CA
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Uhhh...One More Thing, @Bill Sheboy :
Apology for the serial replies...does simply having the date-tracking fields be a date-value field suffice for having the date-timestamp info stored as a date value, or do I need to specify the date as a formatted string and then use the to_date() function?
Thanks,
-John
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Using a date or date / time field type for the custom field eliminates the need for conversion with toDate() as that is used to convert text-representations to those types.
That function helps when using text variables for dates (or date / times) and when the value comes from another source, such as typed in by a person or from another system as text.
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.
Hello, Again, @Bill Sheboy :
I verified that the Status_Elapsed_ChkDate and Status_Start_Date fields are Date Fields:
I removed the date-formatting and just used the values from the {{now}} function:
I took your suggestion to unify the two separate rules, and when I ran all of this, the log file contained:
Is there a preferred way to do the date arithmetic rather than the .diff function? It seems that we're getting closer.
Thanks, again, for your diligence and patience.
Regards,
-John Tucci
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, John!
Would you please post an image of the edit issue action, and the text of the smart value expression, which lead to that error?
As it shows in the audit log, it seems there are literal values in the expression rather than valid smart values, and that does not work for date functions in rules.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Bill:
Here is the Edit Issue action showing what I capture for Status_Elapsed_ChkDate ({{now}}):
And here's the date arithmetic to calculate Status_Elapsed_WrkDays:
Continued "Thanks".
-John
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please post the expression you have in that edit for Status_Elapsed_WrkDays, as it is not fully visible in the image.
Also reviewing your log again, I see your diff() call is trying to use a units of measure of "wrkdays". That is not a valid unit for the function; you could use businessDays instead to count weekdays.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
{{issue.Status_Elapsed_ChkDate}}.diff({{issue.Status_Start_Date}}).wrkdays
Thanks for "businessDays" tip...will apply that at next edit.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, the syntax is incorrect with the placement of curly brackets. Please try this:
{{issue.Status_Elapsed_ChkDate.diff(issue.Status_Start_Date).businessDays}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Used your suggested syntax and combined the check-date update and elapsed days calculation into a single rule. The rule ran successfully...
...but the elapsed workdays calculation still doesn't seem to work, as that custom field has "None" as the value
Sorry to keep pestering...but your suggestions are leading me in the right direction.
Continued "Thanks",
-John
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To limit the scope of your testing, I recommend first changing the scheduled trigger to only process a single issue. (Or add a condition to test for only one issue key.) Those can be undone after the rule works.
Next, write both of the date values to the audit log before the diff() to confirm they contain what you expect.
Please try that and then post the audit log details to learn what happened.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I updated the rule to select a single issue, and I added 2 additional Log Action steps so that each Log Action step writes a single value to the log. Will check the rule results in the morning and update.
Regards,
-John
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For scheduled trigger rules, you may run them immediately when you need to test them: just look under the ... menu at the top-right to run the rule.
Of course if that will cause problems due the issue edits, please wait for the schedule.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Again:
FINALLY!!!!!
I cannot thank you enough for your diligence, patience, and dedication in seeing me through this. BTW: Here's the Status_Elapsed_WrkDays equation:
{{issue.Status_Elapsed_ChkDate.diff(issue.Status_Start_Date).businessDays.abs}}
On to nightly automated execution!
Would you mind telling me where you work and your position/title? I will inform the appropriate people on our development and management teams that this is now working, and I want to give you full attribution. This never would have happened without your efforts, knowledge, and generosity.
Sincere Thanks & Deep Gratitude,
-John
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome; I am glad to learn that helped!
For any attribution, I recommend listing the Atlassian Community as that may help your team when looking for additional solutions in the future. As for me, I'm between positions at this time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I will mention the Community, as you have suggested. Good luck with your search for your next position. I'm sure that you have plenty of colleagues as references, but I would be pleased, and proud, to be a reference if you so choose.
Please keep me posted. I'm also on LinkedIn, if you want to connect.
Godspeed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.