Questions tagged [usage-statistics]

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.

382 questions
8
votes
3 answers

Android BatteryManager Alternatives

I'm trying to get battery stats in my application for some benchmarking. The wonderful BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER lets me query the device's micro-amps which is great. However, this was only introduced in API 21 so the number of…
David M
  • 841
  • 6
  • 23
8
votes
4 answers

Usage Tracking for Windows desktop applications

I am looking for some frameworks that can be used to collect usage information for Windows desktop application and analyze it. For example, I would like to be able to answer questions like (a) how many times do people use this application in a day…
sdaas
  • 174
  • 1
  • 5
8
votes
2 answers

How to measure desktop applicaton usage by users?

I've wrote a app in c# .NET 3.5. People download it and use. I would like to know how many users do this and how many installed it. How to do this?
Tom Smykowski
  • 25,487
  • 54
  • 159
  • 236
7
votes
1 answer

Click Tracking Windows Applications

I'm interesting in gathering usage metrics for an application that I did not write and have no control over. This is a applicaiton running on Windows. My plan for this is to register a global windows hook for mouse and keyboards events, and record…
RMD
  • 3,421
  • 7
  • 39
  • 85
7
votes
2 answers

Are there any desktop application usage tracking systems that target VB6?

We're trying to get some usage metrics on a VB6 application that we are targeting for migration into newer technologies. It is fairly massive (so big that its brushing up against the limits on numbers of forms etc. that VB6 has) and retrofitting…
Kieran Benton
  • 8,739
  • 12
  • 53
  • 77
7
votes
2 answers

How to find stats for general trends of programming language popularity using google trends

I like to keep an eye on trending browsers/OSs/languages etc... I find google trends is a very useful resource sometimes but other times I can not get the information I want. Example of very clear increase of Ubuntu (with 6 monthly peaks near…
Billy Moon
  • 57,113
  • 24
  • 136
  • 237
7
votes
4 answers

Android: get UsageStats per hour

I use UsageStats feature of Android, but the smallest interval is DAILY INTERVAL. long time = System.currentTimeMillis(); List appList = manager.queryUsageStats(UsageStatsManager.INTERVAL_DAILY, time - DAY_IN_MILLI_SECONDS, time); How…
Rougher
  • 834
  • 5
  • 19
  • 46
7
votes
2 answers

Android UsageStatsManager producing wrong output?

I am using this link to produce app usage states. My understanding with chosen interval is that for YEARLY interval, it aggregates data for each YEAR for each package between beginTime and endTime duration. Similarly, it should work for WEEKLY and…
Max Testing
  • 135
  • 2
  • 8
7
votes
2 answers

Statistics about "Microformat vs HTML+RDFa" adoption

Are there some recent and reliable statistics about "Web use" (webpages using one standard or another) of these standards? Or an specific statistic about vCard (person and/or organization) scope of use? Only statistics, this question is not about…
Peter Krauss
  • 13,174
  • 24
  • 167
  • 304
7
votes
4 answers

Android Lollipop know if app as Usage Stats access

Since Android Lollipop, we have now an API for accessing apps usage stats. However, your app must be granted those permissions by the user. I know that for redirecting the user to those settings using Settings.ACTION_USAGE_ACCESS_SETTINGS. Now, my…
lage
  • 589
  • 2
  • 5
  • 18
7
votes
3 answers

How to calculate mobile and wifi data usage of each application in android?

Is there any possible way for calculating mobile and wifi usage of each application in android using TrafficStats' : (getUidRxBytes,getUidTxBytes, getTotalRxbytes, getTotalTXbytes, getMobileRxBytes,getMobileTxBytes) methods ? I know there must be…
user2011302
  • 391
  • 1
  • 4
  • 22
7
votes
2 answers

How to get the mobile data usage for my app (e.g. using TrafficStats)?

(I think this is a common question but please don't mark as duplicate too quickly as I believe my answers add something new to the discussion.) The relevant API is TrafficStats, which gets its data from e.g. /proc/uid_stat/. The stats must include…
Tom
  • 17,103
  • 8
  • 67
  • 75
7
votes
1 answer

Interpretation of Z3 Statistics

I obtained several statistics from runs of Z3. I need to understand what these mean. I am rather rusty and non up to date for the recent developments of sat and SMT solving, for this reason I tried to find explanations myself and I might be dead…
gapag
  • 71
  • 3
7
votes
2 answers

Is there a C++ or Qt library available to measure feature use of an application

I would like to be able to measure the features in our application that are being used. For example how much certain windows are opened, certain controls are clicked. I can imagine a tool that measures this and sends a report to a web server, that…
Rens
6
votes
2 answers

Keep record of login time and session duration - Java - Spring Security

I am developing a webapp that uses Spring Security as security layer. One important feature for us is to know which user is accessing the application, and how many time they are spending on it. I'm not sure how to deal with it. Is there some other…
João Daniel
  • 8,696
  • 11
  • 41
  • 65
1 2
3
25 26