Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stats on usage? #405

Closed
paulirish opened this issue Aug 30, 2012 · 19 comments
Closed

Stats on usage? #405

paulirish opened this issue Aug 30, 2012 · 19 comments

Comments

@paulirish
Copy link
Contributor

I'm curious if you can offer any sort of data on the relative traffic of all the libraries.

Knowing which are used more and less often would be very helpful, I think, to a lot of developers.

I'll take some raw data if that's easier for you.

@ryankirkman
Copy link
Member

That's something we've been working on for a while now.

The data isn't ready just yet, but in the very near future that should change.

@paulirish
Copy link
Contributor Author

Sounds good!

I'm excited. :)

@thomasdavis
Copy link
Member

We have stats, just figuring out an efficient log parsing strategy. After that's complete I will most likely serve the data on a Restful call /statistics?start=DATE&end=DATE

which will return [
{ library: 'backbone', hits: 10000},
{ library: 'jquery', hits: 24}....
]

I will expose the call with CORS for all host and throw up a simple UI to peruse the stats by date.

@thomasdavis
Copy link
Member

Hey guys, heres an update, looking for feedback.

I have stats running at http://stats.cdnjs.com by default it shows todays stats which get parsed every 6 hours.

  • CORS enabled to *

You can access historic data by using the to and from query string parameters.

The query parameters take any valid Date.js(http://www.datejs.com/) value.

to and from both default to current date if not specified

So for example
Todays - http://stats.cdnjs.com
Yesterdays - http://stats.cdnjs.com/?to=yesterday&from=yesterday
Total of last week - http://stats.cdnjs.com/?from=last%20week

etc etc

date.js takes a decent amount of options.

Just ironing out bugs and taking feedback at the moment

Note: The database is only storing, from 25th-ish onwards.

@webignition
Copy link

Looks great so far.

I'm a little curious why each library's stats are presented as an object wrapped in an array like this:

"jquery": [
    {
        "date": "29/9/2012",
        "hits": "771236"
    }
]

instead of without an array, like this:

"jquery": {
    "date": "29/9/2012",
    "hits": "771236"
}

The array seems unnecessary, just wondering why, not that it really matters.

@thomasdavis
Copy link
Member

@webignition if you select a date range that is larger than 1 day, the dates will appear in the array. Does that help?

@webignition
Copy link

Yes, that helps. It makes much more sense now. Thanks!

@presidento
Copy link

It would be better to use the ISO 8601 date format, especially for foreigns, and it is parseable in every environment.

@thomasdavis
Copy link
Member

put stats on the homepage http://cdnjs.com

also only library specific stats will ever be shown, need to draw up a terms of service that states we will never disclose information about particular websites

@codler
Copy link
Contributor

codler commented Oct 7, 2012

Suggestion: Show number of unique websites that are using.


Will there be statistic by version?


Make the value on "hits" to int in json string.

@blaise-io
Copy link

http://stats.cdnjs.com is timing out a lot.

@niyazpk
Copy link
Contributor

niyazpk commented Dec 6, 2012

Looks like we need an uptime stats page for the stats page :)

@codler
Copy link
Contributor

codler commented Feb 23, 2013

How is it going with the stats? http://stats.cdnjs.com seems down.

@gfranko
Copy link
Contributor

gfranko commented Mar 20, 2013

I would love to see stats for the cdn.js hosted libraries. Any updates on this?

@thomasdavis
Copy link
Member

Hey guys,

we do have access to the logs in common log format (http://en.wikipedia.org/wiki/Common_Log_Format)

But we were struggling with putting together a cost efficient solution to parse them.

So for example http://www.s3stat.com/Pricing.aspx does $300 for ~5million hits a day whereas we could potentially be getting around ~15-30 million per day.

So my thoughts is to get an EC2 instance that parses them continuously and post the aggregate values for each day to a mysql database. (library, version, hits, date)

@gfranko
Copy link
Contributor

gfranko commented Mar 21, 2013

How were you parsing the data with the http://stats.cdnjs.com API?

@thomasdavis
Copy link
Member

Same as my solution in the previous comment. But it was buggy so wanted to rewrite the parser.

@gfranko
Copy link
Contributor

gfranko commented Mar 21, 2013

Gotcha, that makes sense. Let me know if you want any help with the UI.

@ryankirkman
Copy link
Member

Discussion moved to #1078

@AmNotADev AmNotADev assigned AmNotADev and MattIPv4 and unassigned MattIPv4 and AmNotADev Apr 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests