Ran out of Default Licenses - How to see who was logged in/analyze if we have enough licensces?

I’m having a hard time getting help from Epicor support in regards to our license usage. This past week we had several users that couldn’t access the system as we had used all available Default licenses. I haven’t heard of this in quite some time(we bought more licenses a couple years back), so I’d like to see some data so we can understand who all had an active session when we ran out(was it a case of the perfect storm, was someone using multiple licenses, etc), and I’d like to be able to see this data with respect to time so we can make data driven decisions.

Our logs are verbose and include session and license information, so I’m fairly confident the data I’m looking for is in our log files which I have handy. The problem is I don’t fully understand the syntax of the log file, and it’s quite verbose so it’s not clear how to slice and dice it to see who was logged in when so I can get the data I’m after. I would think other companies would have a similiar need, so wanted to reach out to see how others have addressed this issue? Epicor supports recommendation was to login to the Epicor Admin Console and effectively poll it manually to collect the data we want(not an ideal solution…).

If you have the logs you can add them to the Performance and Diagnostics Tool (PDT) for a more excel friendly export, in addition it will convert UTC times to your specified timezone in PDT Settings.

The other option is you can poll the data for a while via SQL if on prem, BO AdminSession or BAQ.

SELECT * FROM Ice.SessionState;
1 Like

It’s the most accurate! However, logging into the EAC is not necessary nor desirable.

Have I ever mentioned REST? :thinking:

Going all the way back to 10.1.500, you can make a REST call to return all of the same information that is available.

You can schedule a PowerShell script to run this, evaluate the results (getting close to license limit, identify multiple log-ins by one person, etc.), log the result if you want to analyze the data, and then notify if necessary.

Works for cloud and/or on-prem users. :wink:

2 Likes

I made an Epicor Function that writes to a UD table every 30 seconds. Then I put it into Excel because I just have not had the motivation to make it an actual screen in Epicor, since only I care about this.

Funny, we all used different BOs/methods. This is the one I saw in the trace of the User Tracker screen.

image

6 Likes

@JasonMcD - That’s slick!

Would it be simple to have the names of the sessions recorded to the UD table as well? This way (in Excel), you could filter to that time and retroactively see who was consuming the licenses.

Or tweak it to only dump that when >90% of open licenses are consumed, so the log file doesn’t grow too quickly.

@SJenkins (our reporting guru) created a Grafana dashboard to do this:

3 Likes

This must be a different method. The one I used is just numbers. It’s already over 300k rows, I think, after 3-ish months. I haven’t deleted any data yet.

My use case was:

  1. We were running out of default licenses
  2. Determining if it was due to
    a. An excess of MES/DC users that got kicked over to Default,
    b. Or was it true default users
  3. Deciding what additional licenses to buy. If the cause was 2a then we only needed more MES licenses. But if 2b then more default licenses.

In the words of Shakespeare, it was not 2b.

I am intrigued by Grafana now.

Edit - This was a pic from May (before I had the sense to not show EVERY data point and instead just the max per hour).

We had 20 of each license type. My hunch was proven right, where we’d peg out the MES and then Defaults would climb. So we bought more MES and have been good since.

3 Likes

Whoa, never knew that’s what Epicor’s default behavior was, but that makes sense. Thanks!

At the same time, we also unchecked ‘Allow Multiple Sessions’ for our MES users. This free’d up a bunch, but there was some whining at the time.

So cool Jason.

Wow, much better than User Tracker!

I never run out of licenses, we just buy in 500’s :smiley:

1 Like

Don’t forget the license trace flag. How can I track concurrent active users? - #12 by Bart_Elia

1 Like