metrics

C# ASP.NET 2.0 Metrics Dashboard

I want create some type of ASP.NET (C# 2.0) Metrics class to help monitor the performance of a production web application. I am somewhat familiar with the 2.0 Health Monitoring and that is not what I am looking for (I don't think anyway). I would rather have a dashboard that gives me a snap shot as opposed a log or list of events. I w...

Metrics to track Open Source Projects

I'm curious to know what metrics open source project members track. Small projects may not bother with tracking any numbers, but I assume that active projects would track some numbers. There are two types of metrics I'm interested in: Internal development metrics - e.g. from the issue tracker or other development tools. External metric...

Software development metrics and reporting

I've had some interesting conversations recently about software development metrics, in particular how they can be used in a reasonably large organisation to help development teams work better. I know there have been Stack Overflow questions about which metrics are good to use - like this one, but my question is more about which metrics ...

Computing degree of similarity among a group of sets

Suppose there are 4 sets: s1={1,2,3,4}; s2={2,3,4}; s3={2,3,4,5}; s4={1,3,4,5}; Is there any standard metric to present the similarity degree of this group of 4 sets? Thank you for the suggestion of Jaccard method. However, it seems pairwise. How can I compute the similarity degree of the whole group of sets? ...

Usage-Metrics for ASP.NET Web Services

Is there a way to collect usage metrics of an ASP.NET web service like Google Analytics collect usage metrics of a web site. All without implementing my own database tables or code. I don't need to collect the huge amount of information collected by Google Analytics, only simple information, like the number of calls and their distributi...

Java HashMap to Matrix

Hi all gurus! I am facing a problem. I used the following hashmap to store some values HashMap<String, Object> hm = new HashMap<String, Object>(); The object is another HashMap (yeah, you can say HashMap of HashMap). String is to store book name, and Object is again another hashmap that is to store author name and number of authors....

Relevance percentage between two string

Hi, How to get relevance percentage between two string in C# ? Thanks. ...

Software time planning metrics

Hi, In software development we all need to planning the time correctly. I want to know what metrics you are using to planning time in all processes of software such as analysis, development, maintenance etc... Sure there are some great articles that you could suggest or methodologies that you follow, could you please inform? ...

How can one measure the SOLIDness of C# code?

Which metrics are there and which tools exist to measure the SOLIDness of C# code? Or tools to indicate where the principles are violated most harmfully? ...

SLOC for Java projects

I neeed a free tool to count SLOC on a Java project. I only really need the following metrics: SLOC number of comment lines optionally javadoc metrics optionally sort statistics by file type (.java, .js, .css, .html, .xml, etc) Bonus: 100% Java, I don't like mix something like sloccount with cygwin netbeans plugin or preferably, ma...

Are there code coverage tools that can tell me about just the code that I wrote during my last sprint?

I'm looking for a tool that can give me more meaningful metrics about code coverage for my team. For instance, two things I'd like to see: How much code coverage did we have as a team for the code written during our last sprint? How much code coverage did new code get broken down by developer? Has anyone done anything like this befo...

NDepend Assembly Metrics

Does anyone know if it's possible to choose what are the metrics computed per assembly (thus modifying the "AssembliesMetrics" section of the report). For example, I would like to know the number of type to refactor per assembly. Thanks in advance ...

NDepend Code Quality Metrics - Custom CQL - Brownfield development

I'm working on a brown-field project that was initially developed for .NET 1.1, and subsequently was retro-fitted to .NET 2.0, with a smattering of .NET 3.5 I'm curious what kind of metrics to use to begin finding optimization and modernization inflection points. Are there any good CQL queries that anyone has found useful in cleaning u...

How can I run metric_fu against my ruby projects

I have found many guides laying out how to do things like adding rake tasks to a continuous build server that utilize metric_fu for a rails project. However, if I have a simple ruby-only project, how can I run metric_fu to show me complexity measures and code smells? It seems like it would involve setting up a rake task or something, b...

What are some of the largest open source software projects with substantial revision and bug tracking history?

For my Honours project at University this year I'm considering doing some research into which code metrics are useful in predicting where defects are likely to exist in code and what metrics map to what kind of defects. What large open source projects exist that have a substantial revision history and also use a bug tracking system? ...

Is there a standard way to count statements in C#

I was looking at some code length metrics other than Lines of Code. Something that Source Monitor reports is statements. This seemed like a valuable thing to know, but the way Source Monitor counted some things seemed unintuitive. For example, a for statement is one statement, even though it contains a variable definition, a condition, a...

C# Getting the size of the data returned from and SQL query

How can I get the size in bytes of the data returned from the database when executing a query? The reason for this is to compare load on the database server using two different techniques. We were running reports built from the same dataset which would load the entire dataset for every report. Now we are caching the dataset and runnin...

Looking for a recommendation on measuring a high availability app that is using a CDN.

I work for a Fortune 500 company that struggles with accurately measuring performance and availability for high availability applications (i.e., apps that are up 99.5% with 5 seconds page to page navigation). We factor in both scheduled and unscheduled downtime to determine this availability number. However, we recently added a CDN int...

which metric(s) show the difference between object-oriented and procedural code

Which metric(s) could help to indicate that i have procedural code instead of object-oriented code? I would like to have a set of simple metrics, which indicate with a high probability, that the analyzed code contains procedural transaction scripts and an anemic domain model instead of following sound object-oriented design principles. ...

Recording user data for heatmap with JavaScript

Hi, I was wondering how sites such as crazyegg.com store user click data during a session. Obviously there is some underlying script which is storing each clicks data, but how is that data then populated into a database? It seems to me the simple solution would be to send data via AJAX but when you consider that it's almost impossible t...