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
0
votes
2 answers
Best way to send PHP script usage statistics to an external script
I'm writing an application in PHP which I plan to sell copies of. If you need to know, it's used to allow users to download files using expiring download links.
I would like to know whenever one of my sold applications generates a download.
What…

Andrew E.
- 129
- 3
- 10
0
votes
2 answers
Questions on use of image.src for statistic
I have a problem that when I was using image.src to make a request on a 1x1 gif. But when I use chrome and safari, the request cannot be logged in my web server. But when I use a javascript to delay for some mini-second(let's say 300ms), it works…
0
votes
1 answer
Calculating MBPS - Average
I have found below calculation from http://www.gridsouth.com/services/colocation/basics/bandwidth
I have no idea how they came up with final number 1.395 mbps. Can you please help me with the formula used in below example?
If your network provider…

Bakul Brahmbhatt
- 61
- 6
0
votes
3 answers
Using web hit counter to track application usage, recommendations wanted
I have an internal tool written in java. It would be useful to get a little
feedback on how much it is used by colleagues.
A simple solution would be to have the application display an image which it fetches from
a web hit counter like application…

hlovdal
- 26,565
- 10
- 94
- 165
0
votes
1 answer
Track number of impressions of a widget running on a remote website
I have created a widget that is being hosted on a number of websites. I originally implemented the code using only jquery and JSONP to buid the widget. Upon implementing the widget on live webiste though we had the unfortunate experience of that…

Dylan du Preez
- 35
- 6
0
votes
1 answer
Generating simple statistics from live streaming with Adobe Flash Media Server 4.5
I have created a live stream using Amazon Web Services and Adobe Flash Media Server 4.5.
I can log into Flash Media Administration Console and see how many connects/disconnects I've had, but I can't seem to find a place where I can see simple stats…

Luke Shaheen
- 4,262
- 12
- 52
- 82
-1
votes
1 answer
Time series with 2 Values
I have a problem to solve with the time series. My data set looks like:
Date;hours;result
2021-01-01;180;2.78
2021-01-01;196;2.68
2021-01-01;170;2.53
2021-01-01;181;2.71
2021-01-01;169;2.43
2021-01-01;201;2.89
What would be the best approach to…

Łukasz Kirzyński
- 11
- 4
-1
votes
1 answer
Multimode function shows only one result
from numpy import genfromtxt
Birds = genfromtxt('DataLot.csv', dtype=int, delimiter=',')
import statistics
from collections import Counter
columnaA = Birds[:,1]
print(Counter(columnaA).most_common(6))
print("The multimode of list is : ",…

user3177225
- 7
- 3
-1
votes
1 answer
Adding Descriptive Statistic results in a boxplot by means of function aggregate in R
I have the following information:
head(Callao20)
Day Mes Aho Temp
1 12 Feb 2020 NA
2 12 Feb 2020 NA
3 12 Feb 2020 NA
4 12 Feb 2020 NA
5 12 Feb 2020 NA
6 12 Feb 2020 NA
Knowing that cv = (sd/mean)*100, then I estimated the cv as…

Джимми Мартина
- 19
- 3
-1
votes
1 answer
Total time in foreground for all installed windows application
How can I get the total time this application spent in the foreground, measured in milliseconds? When in the foreground, the user is actively interacting with the application. I need it for all windows installed applications every hour.
The closest…

Rougher
- 834
- 5
- 19
- 46
-1
votes
1 answer
How to calculate the lifetime of the use of a database?
Can you please help me with this problem?
You have the following information:
Name Date Size_Total Size_Free Size_Used
X 20/05/2019 50MB 40MB 10MB
X 21/05/2019 50MB 35MB 15MB
X 22/05/2019 …

FixedShot
- 1
- 1
-1
votes
1 answer
Centralized Logging of methods: framework to implement it
I suspect that one of the c# method is never called (because of if codintions); but the software is a client and it's distributed to 1000 users.
So I would like to call some remote API to log every time the method is accessed.
This kind of tracking…

Revious
- 7,816
- 31
- 98
- 147
-1
votes
1 answer
call rest-api whenever app is opened through a push notification
For my statistics dashboard inside the backend i need to call a rest-api via alamofire that informs the backend that the user opened the app through a push notification.
How can I achieve that?

Jochen Österreicher
- 683
- 2
- 11
- 25
-1
votes
1 answer
Xamarin Android C# How to check how many times facebook have been opened
How do I check how many times facebook have been opened?
I'm using Xamarin.android with C#.
My goal is to check how many times facebook have been opened.
I want to increment a integer, each time the user opens the facebook app.
I have been looking…

AndreasWT
- 163
- 3
- 13
-1
votes
1 answer
Flask app - How could I monitor time spent on my app ?
I think about the session mostly, I would like to be able to have the time spent by the user while he was using the app.
Do you know what are the best practices to say for example that the user "Joe" used the app three times last Wednesday and…

DavidK
- 2,495
- 3
- 23
- 38