Skip to main content

Filters In JIRA

JIRA Issue tracking software provides much better functionality for filtering too. We will learn this in this article. It will display you particular data whatever you needed. If you have thousand of bugs, hundreds of software project still you can easily find what you want perfectly.

If we have posted issues on earlier days of the project and you need it in middle of the software project then you can find it by searching functionality. If you want to Change or Edit the issue then you can do it and again save it.

Here are the steps for searching your issues:

Click on 'Issue' and select 'Open My Issue'. It will display you the issues which have been posted by you.


After wards you can able to see below screen where you can see list of issues. We just completed one step for finding our issues.


Now you can see different options on the left hand dashboard. 'My Open Issue’,’ Reported by me', 'Recently Viewed’,’ All Issues' this are the option for filtering issues of software project.


If you will click on 'Reported by me' option then JIRA will display all the issues which have been reported by you. In 'Recently Viewed' option you can find the issue which has been reviewed recently.
'All Issues' button displays all the posted issues.

Below Image displays another way to search your issue. Here you can able to see different fields with drop down menu.


As shown in figure, we can search issues by selecting particular software project.
For example, you are having more than 10 project and you want to find an issue which have been posted a long time ago. Now you need to just select that project from drop down menu. Once you click on project then it will display you drop down menu from where you can select your software project and find an issue for it.

Same way you can find issue by selecting Issue Type. See the below image.


Here you can see that, we can search by one issue type and more than one issue type.
For Example, if you want to search issue which have issue type as ‘Bug’ then select Type as Bug and click on search button. JIRA will displayed you all the Bug type Issues.


In this image you can see that, Issues can be finding by status also. If you want to find issues by its status then you can find it from here. For example if developer want to verify that how many issues are still in ‘ÓPEN’ status then he just needs to select ‘OPEN’ status from the status drop down.
Then JIRA will display all the issues which have Open status.

Here you can verify issues by more than one filter, like select Project first and then select Issue Type and Status after wards click on search button.
Thus, JIRA will display you proper result for particular project’s issues with selected issue type and status.

You can search issues by selecting assigned person also. For Example if you want to find issues which have been assigned to a group or a person then you can do it from here.


You can search issues by its text. Enter text on search field and click on search button. After wards JIRA will display you all the issues which will related to this context.

This all Filter can be managed by JIRA project management software too. By clicking on ‘Save as’ button you can create new filter.
After creating filter, you can save your filtered issues in it. This is the key feature of JIRA.


As per the image you can see the favorite Filters on left hand side. This has been created for saving needed issues. You can Delete this filter and Edit it.

Go to ‘Issues’ from main screen and then select ‘Manage Filters’. You can see below screen here.



You can see here, all the filters have been managed here. You can Delete and edit it. Even if you will have more filters then you can search it from here also.

You can verify issues from ‘Issues Navigator’ from profile tab.

This is the whole procedure how you can filter all the issues and manage it accordingly.

Comments

Popular posts from this blog

JMeter Exceeded Maximum Number of Redirects Error Solution

While running performance test, JMeter allows maximum 5 redirects by default. However, if your system demands more than 5 redirects, it may result in JMeter exceeded maximum number of redirects error. In this post, we have listed down steps to overcome this error. Actual error in JMeter: Response code: “Non HTTP response code: java.io.IOException” Response message: “Non HTTP response message: Exceeded maximum number of redirects: 5” This error is noticed because  JMeter  allows maximum 5 redirects by default and your system may be using more than 5 redirects. You need to increase this count to more than 5 in jmeter.properties file. Follow below steps to achieve this. Navigate to /bin directory of your JMeter installation. Locate jmeter.properties file and open it in any editor. Search for “httpsampler.max_redirects” property in opened file. Uncomment the above property by removing # before it. Change to value to more than 5 Eg. 20. Save the file and restart JMeter. If

SSO with SAML login scenario in JMeter

SAML(Security Assertion Markup Language) is increasingly being used to perform single sign-on(SSO) operations. As WikiPedia puts it, SAML is an XML-based open standard data format for exchanging authentication and authorization data between parties, in particular, between an identity provider and a service provider. With the rise in use of SAML in web applications, we may need to handle this in JMeter. This step-by-step tutorial shows SAML JMeter scenario to perform login operation. First request from JMeter is a GET request to fetch Login page. We need to fetch two values ‘SAMLRequest’ and ‘RelayState’ from the Login page response data. We can do this by using  Regular Expression Extractor . These two values need to be sent in POST request to service provider. Refer below image to see how to do this. We will get an HTML login page as a response to the request sent in 1st step. We need to fetch values of some hidden elements to pass it in the next request. We can do this b

A Tutorial to Send Email using JMeter

Sending email is a mundane activity in any professional’s life. It’s a common medium for communication nowadays. Therefore performance testing of email server is not only important but necessary for an organization. JMeter can be helpful to perform load testing in such scenarios. In this tutorial, we will see how JMeter can be used to send email. We will use SMTP Sampler of JMeter to send an email. JavaMail API is needed to enable email functionality in JMeter. Download it from  here  and paste the jar in JMeter’s lib folder. Now, perform below steps to configure SMTP Sampler. Add a new Thread Group under Test Plan. Right click on Thread Group and select Add–>Sampler–>SMTP Sampler. We need to populate SMTP server’s details in this sampler. We will use GMail for sending an email. For this, enter these values in SMTP Sampler fields. Server: smtp.googlemail.com, Port: 587. Provide values in Email Address From and To fields of Mail Settings section to specify sender and reci