Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This How-to will show you how you can use user based Metadata to step up your service game by adding Service Levels.

If you are not sure what Service Levels are, you can learn more about Service Levels here.

Instructions

Add Service Levels to the Metadata Customer & User Screen

  1. Login to your Jira account.
  2. Click on the ⚙️ Settings Button on the top right corner and chose Add-ons.


  3. Click on Metadata configuration.


  4. Change the User Screen and Customer Screen to include a Service Level by adding the following to the existing configuration:
Code Block
titleAdd Service Level to User Screen & Customer Screen
		{
          "key": "Company",
          "group": "Customer",
          "hidden": false,
          "schema": {
            "type": "string"
          }
        },
        {
          "key": "Service Level",
          "group": "Customer",
          "hidden": true,
          "schema": {
            "type": "select"
          },
          "allowedValues": [
            {
              "name": "Platinum"
            },
            {
              "name": "Gold"
            },
            {
              "name": "Silver"
            }
          ]
        }
      ]
    }


Info
In our example we set "hidden" to "true" for the Service Level. If you set "hidden" to "false" the Customer will be able to see his/her Service Level on his/her profile.

You can learn more about how to customize the Metadata User Screen here.

Set the Service Level for your Customer

  1. Go to a project and click on Customers.


  2. Mouse over will show you the Metadata hover menu. Here you can set the Customers Service Level. (Or click on the Customers name to change the Service Level there.)

Create a Service Level Goal for the Service Level Metadata

  1. Click on the ⚙️ Project Settings Button in the bottom left corner.
  2. Click on SLAs.


  3. Click on Edit SLA.


  4. Scroll down to Goals. Here you can search for issues with JQL and set a goal for them. For example:


    Code Block
    titleJQL
    reporter in usersMetadata("Service Level", "Platinum")

    If you set the goal for this JQL to 1h (1 hour) all Issues from Service Level Platinum Customers will have set the time to resolution to 1 hour.



  5. Click on Add, scroll up and click on Save.


To learn more about check out this article on how to set up Service Levels.

Now whenever a Customer with the Service Level Platinum creates a new issue, it will come with the set goal of (in our case) 1 hour to resolution.

Filter by label (Content by label)
showLabelsfalse
max5
spacescom.atlassian.confluence.content.render.xhtml.model.resource.identifiers.SpaceResourceIdentifier@943
showSpacefalse
sortmodified
reversetrue
typepage
cqllabel = "user" and type = "page" and space = "JM"
labelskb-how-to-article


Page Properties
hiddentrue


Related issues