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...
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...
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 ...
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?
...
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...
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....
Hi,
How to get relevance percentage between two string in C# ?
Thanks.
...
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?
...
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?
...
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...
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...
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
...
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...
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...
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?
...
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...
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...
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) 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.
...
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...