Questions about how to gather, manage or deal with data usage statistics of any software. Usage statistics may include button and menus clicks, memory usage, preferences, features most used, etc... Usually all data are anonymous information.
Questions tagged [usage-statistics]
382 questions
3
votes
1 answer
Which processor instructions are used most commonly?
My objective is to do comparative study of a few instruction set architectures.
For each instruction set architecture, how can i find the most commonly used instructions?
This is the steps i am thinking of:
Find common ISAs for a chosen domain
Find…

wolfram77
- 2,841
- 3
- 23
- 33
3
votes
0 answers
glmnet computation time differences - Why?
glmnet seems to slow down in an application I'm doing (Joint Lasso) if one parameter increases.
I figured out that the matrix I am giving to glmnet increases in its second half. It is comparable to the code below where the first half of X has the…

BB27
- 31
- 2
3
votes
1 answer
How to get total data usage of an android device programmatically?
In the settings menu on my android smartphone, I can see the total data usage of the current and past cycles. Can I somehow retrieve that information programmatically in my app?
Thanks in advance.

Ginso
- 459
- 17
- 33
3
votes
1 answer
Is Google Analytics Secure to Track Business Application Usage?
I have recently been required to implement some Usage Tracking to a web-based Business Application. Basically what needs to be tracked is what pages in the application are being used and for how long users stay on those pages. The application is…

Chris Pietschmann
- 29,502
- 35
- 121
- 166
3
votes
1 answer
calculate app uptime - android
I am trying to get the power consumption details made by each installed app in a list. But since I do not have root access, I know I won't be able to use adb shell commands to get battery usage info for all processes.
What I think I can do is get…

Kunal Chawla
- 33
- 4
3
votes
1 answer
Getting information about process in Swift
I am trying to get some data about a process in Swift.
I am using this code as a starting point:
pid_t pid = 10000;
rusage_info_current rusage;
if (proc_pid_rusage(pid, RUSAGE_INFO_CURRENT, (void **)&rusage) == 0)
{
cout <<…

inexcitus
- 2,471
- 2
- 26
- 41
3
votes
1 answer
How to check which MySQL-databases are still in use? #CleaningUp
I am having a cleaning situation over here, the old programmer didn't clean up his out-of-use databases & users.
While some of the databases are still in use by external sites (on other ftp-servers), some are obsolete and just cluttering up the…

K. Tromp
- 350
- 1
- 13
3
votes
2 answers
Can I track button clicks without Google Tag Manager?
I want to track button clicks, which lead to external website. I want to put them in Google Analytics Goals.
Is there any option to this without Google Tag Manager?

Petyo DImitrov
- 85
- 1
- 9
3
votes
2 answers
Get Averages Between Timestamps with multiple Statuses
I am trying to gather simple statistics on data, such as time a service is online, time a service is offline, averages, etc. I've found a few solutions already, but they all rely on certain things, such as the rows being back to back (ROW_NUMBER -1)…

mrUlrik
- 150
- 11
3
votes
1 answer
How to collect statistics from firebase dynamic links created manually?
I've created dynamic link manually and I would like to collect statistics for it in firebase console.
Is it possible?
Link that I've created contains:
link, apn, utm_source ,utm_medium

pixel
- 24,905
- 36
- 149
- 251
3
votes
1 answer
Is there any way to programmatically determine when an app was last opened?
I would like to know when an app (i.e., Facebook or WhatsApp) was last opened.
Without root, is there any way to programmatically determine when an app was last opened in Android?
Important Info:
One issue I have regarding previous suggestions is,…

fraruphe
- 31
- 1
- 4
3
votes
1 answer
Is android.permission.PACKAGE_USAGE_STATS Only for System Apps?
I am accessing user stats in the following ways:
UsageStatsManager userStatsMgr = (UsageStatsManager)getSystemService("usagestats");
List userStats = mUsageStatsManager.queryUsageStats(UsageStatsManager.INTERVAL_BEST, timeStamp -…

MuayThai
- 441
- 1
- 5
- 19
3
votes
2 answers
real time network usage statistics monitoring/capture?
I would appreciate any advice from experience from the community regarding the following challenge I've given myself - i.e. any pointers re best approach / direction here?
Requirements
Allow collection / real-time-monitoring of network usage from a…

Greg
- 34,042
- 79
- 253
- 454
3
votes
3 answers
Google Play statistics "Active users" show dramatic decrease in June 2014?
This is what my "Active users" statistics look like in Google Play Developer Console. As you can see there is a dramatic decrease in june 2014.
At the same time, the "Active installs per device" looks like this.
What's going on here? Did Google…

Magnus
- 17,157
- 19
- 104
- 189
3
votes
1 answer
Using usageStats.getTotalTimeInForeground() to get the time every application in a device spent in foreground
I want to know the time spent by all applications running in an android device . I am getting all packages names using the following code .Please guide me how to link packages and the above method to get time spent by applications
Here is the…

Royce Raju Beena
- 711
- 4
- 20