Dear readers,
For reporting reasons we would really like to now where our customers are based. Because we work very international we want to make a report on which country is the most demanding. For example and what kind of infrastructuur is as most effected and so on.
For now I did not find such thing in Jira..
Thanks in advance!
Kind regards, Marthine
You can use the visitorsa IP address to get their 'country', 'city', 'isp' etc...
Just use one of the web-services that provide you with a simple api like http://ip-api.com which provide you a JSON service at http://ip-api.com/json. Simple send a Ajax (or Xhr) request and then parse the JSON to get whatever data you need e.g
var requestUrl = "http://ip-api.com/json";
$.ajax({ url: requestUrl, type: 'GET', success: function(json)
{ console.log("My country is: " + json.country);
}, error: function(err)
{ console.log("Request failed, error= " + err);
}
});
The visitorsa IP address to get their 'country' is an option, but we also create tickets manually, with this, the trick does not work.
How difficult can it be to add an field to the customers details, so you can filter on country or city?
What is a service desk tool without customers details/contact info?
Just an email and a name is not sufficient.
A solution for this is very welcome! :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I really don't think JIRA should have the info for this. Meaning that it can't know by itself.
If you have any other way of knowing, maybe network traffic or smth similar, you could then store it.
Or even ask your customer with a simple field.
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.