Hi everyone
We have a considerable amount of large files in our JIRA instance. From 100mb to 1gb.
I wanted to do a query for issues with attachments larger than 100mb, so we can make sure we have the file on our local archive, before deleting it.
We have ScriptRunner installed, so I tried modifying this script to return attachmentSize instead of numbers of attachments, but I can't get it to work.
import com.atlassian.jira.component.ComponentAccessor
def attachmentManager = ComponentAccessor.getAttachmentManager()
def numberAttachments = attachmentManager.getAttachments(issue).size()
// use the following instead for number of PDFs
//def numberAttachments = attachmentManager.getAttachments(issue).findAll {a ->
// a.filename.toLowerCase().endsWith(".pdf")
//}.size()
return numberAttachments ? numberAttachments as Double : null
Does anyone have a suggestion as to how I modify this script? Or another way to get a list of issues with large attachments? (We are running JIRA 6.4)
Thanks for your help,
/Nikolaj
Hi,
If you want to display in an issue the size of attachments attached to it, you can use this in a scripted custom field.
import com.atlassian.jira.issue.attachment.Attachment import com.atlassian.jira.issue.Issue import java.util.* def sizeAll = {Collection<Attachment> attachments -> def size = 0 for (Attachment attachment : attachments) { size += attachment.getFilesize() } return size; } def totalSize = sizeAll(issue.getAttachments()); for (Issue subtask : issue.getSubTaskObjects()) { totalSize += sizeAll(subtask.getAttachments()) } totalSize
Note: this sums up the attachments of the subtasks as well. Without the subtasks, the script is simpler:
import com.atlassian.jira.issue.attachment.Attachment import com.atlassian.jira.issue.Issue import java.util.* def sizeAll = {Collection<Attachment> attachments -> def size = 0 for (Attachment attachment : attachments) { size += attachment.getFilesize() } return size; } def totalSize = sizeAll(issue.getAttachments()); totalSize
Tibor
This works! Perfect
Thank you very much. I don't know what I would do without this forum.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
> What you're suggesting is to search directly on the server or?
Yes I was, but OK I understand now. Tibor's script is fine, although I would prob just write it as :
issue.attachments*.filesize.sum()
Make sure you set a Number searcher so you can find issues with a large total attachment size.
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.
thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jamie
Thank you very much for your help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @JamieA I know this is very old thread but would like to check one thing.
issue.attachments*.filesize.sum()
size += attachment.getFilesize()
Both above line is telling us the total number of files attached to issue but how If I would like to know the actual size of the attached file in MB/GB.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
just add this, thanks to Adaptavist team for the query.
import com.atlassian.jira.issue.attachment.Attachment import com.atlassian.core.util.FileSize import com.atlassian.jira.issue.Issue import java.util.* def sizeAll = {Collection<Attachment> attachments -> def size = 0 for (Attachment attachment : attachments) { size += attachment.getFilesize() } return size; } def totalSize = sizeAll(issue.getAttachments()); for (Issue subtask : issue.getSubTaskObjects()) { totalSize += sizeAll(subtask.getAttachments()) } FileSize.format(totalSize)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jamie
I was using it as a Scripted Custom Field, which is a part of the ScriptRunner addon. The script works and the custom field is updated with the amount of attachments. This led me to believe that it would be possible to modify it to return attachment size in a custom field.
Our JIRA instance is hosted at another company and I'm not an advanced user, so my ideas are limited to quite basic use of JIRA.
What you're suggesting is to search directly on the server or?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What context are you trying to use that script in? It appears to be a workflow function...?
Can you not just do this with unix find and use the attachment store on disk?
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.