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
3
votes
2 answers

How to get the stats of total mobile data used in give time period(eg, last month) by all the application in android

I'm trying to get the mobile data used by all application in previous month( or week) or between a given time period. I want to get the mobile data usage history. I see that android is doing this by default now. Is it possible to get this…
in3xes
  • 714
  • 7
  • 19
3
votes
2 answers

Tracking user usage time and time on UIViewController like Google Analytics

What is the best way to track App usage time and time a user spends viewing a Screen (or interacting with a UIView) for use within the App itself? Google Analytics seems to do a wonderful job, but the numbers I want to use inside the App itself to…
Mikey A. Leonetti
  • 2,834
  • 3
  • 22
  • 36
3
votes
1 answer

SQL Server index usage stats

I have run the query below in order to find indexes to delete. SELECT d.name AS DatabaseName, t.name AS TableName, i.name AS IndexName, ius.* FROM sys.dm_db_index_usage_stats ius JOIN sys.databases d ON d.database_id = ius.database_id JOIN…
atalay celebi
  • 79
  • 1
  • 5
3
votes
1 answer

R: Is it possible to plot data around a fitted model?

I work as part of a sales organization that is implementing a new initiative. Essentially, we are testing whether sending an email to a potential customer makes them more likely to show up and view a 'demo' of our product. My data is comprised of…
3
votes
1 answer

Python library for sending/managing usage statistics

Recall those applications that provide the option to "Send usage statistics to help improve X" during the installation? I presume it collects certain patterns of usage and sends it back to the server. Back at the server, there may be some sort of…
Sridhar Ratnakumar
  • 81,433
  • 63
  • 146
  • 187
3
votes
0 answers

How to get the memory usage of a process in Mac OS (and in iOS)?

In Linux, the kernel exposes various per-process memory counters through /proc/[pid]/statm including total program size resident set size shared pages text (code) data/stack library dirty pages What is the equivalent of such thing in Mac OS (and…
zack
  • 335
  • 3
  • 13
3
votes
1 answer

how do android monitor usage applications work

I want to write an application that logs the usage of other applications on my phone. So for example I get the times I have entered Facebook. I understand there is no way to get a broadcastreceiver to wake up every time Facebook starts. Another way…
yonigo
  • 987
  • 1
  • 15
  • 30
3
votes
1 answer

Scala usage statistics

We are a small team of developers and are currently in the process of drafting a business idea targeting scala developers as potential customers. In order to convince investors we obviously need some numbers on usage, some of which we were unable to…
Martin Ring
  • 5,404
  • 24
  • 47
3
votes
3 answers

.NET best practice for usage logging - text files? database?

I have a tool that my team uses for various administration tasks, it handles various remote calls, Active Directory look ups, calls scripts and more to support thousands of machines. I have about a dozen people actively using it, but for geekdom and…
Austin T French
  • 5,022
  • 1
  • 22
  • 40
3
votes
3 answers

Weekly Active Users for each day from log

I was wondering if someone could help me with some SQL for returning the amount of unique users logged into a database table during a period of two or more days (let's use 7 days as a reference). My log table contains a timestamp (ts) and user_id in…
Protected
  • 362
  • 1
  • 7
  • 16
3
votes
1 answer

When coding for Android, is there a way to get the CPU usage for each core of the device individually?

this is my first time asking a question here. I tried to be well researched, so I apologize in advance if I overlooked a post for this question before. I'm looking to see if I can get the usage statistics for my app while it's running. I'm running…
Dylan M.
  • 116
  • 1
  • 7
2
votes
1 answer

Collecting usage data On-Demand application (php+javascript)

I need to collect usage information on my on-demand application. This should include things like forms opened, time on form, buttons clicked etc. Data collected should be kept in a database (MongoDB) or file system. Is there a standard way to do so…
yoavre
  • 63
  • 1
  • 7
2
votes
3 answers

Measure SAAS App Bandwidth Usage

I am in the process of building a Ruby on Rails based SaaS app. The app is being hosted on AWS (Amazon). I need to measure the bandwidth usage by each customer for billing and customer segmenting. The customers could be identified by their Urls.…
2
votes
1 answer

Android market app version distribution

Is there any way on the Android Market that I can see the distribution of versions of my app among users? For example, if I have an app with v1.0 and 2.0, can I see the percentage of the users still using 1.0? This would be extremely helpful in…
Maurice Lam
  • 354
  • 2
  • 12
2
votes
1 answer

Performance monitoring options in Entity Framework 4.1

I am developing a custom Content Management System in C# (SQL Server 2005) for my organization that operates primarily on Entity Framework 4.1. I would like some insight as to how my application is running, specifically when it comes to my EF…