0
votes
2answers
32 views
What’s a good checklist for instrumenting my .NET application
Hello all, I'm looking for a best practices checklist for instrumenting my code. Not so much what tools to use (I'm a System.Diagnostics.Trace fan myself) but just where you shoul …
1
vote
3answers
25 views
Unified Error Management Solutions
I'm looking for a solution that gives me a central hub from which to view and manage errors that occur in my system, regardless of the tier in which they occur. I already have logg …
0
votes
2answers
36 views
javascript profile in Firefox
(I know some people already asked questions about js profile, but that's not what I need if I understand them correctly.)
I'd like to trace the execution of javascript to collect …
0
votes
2answers
95 views
Is there a .Net analog of the functionality provided by java.lang.instrument?
I have looked at a few of the well-known AOP-oriented frameworks for .Net such as PostSharp, bltoolkit, Castle, Cecil, and Policy Injection Block from Microsoft. Perhaps I am igno …
0
votes
1answer
24 views
First Steps on Win7 and Instrumentation
Hello as showed in the last pdc, we as developers can take advantage of SO capabilities and add instrumentation to our code (based on best practices).
So in that session they int …
0
votes
1answer
188 views
.NET Single Line Logging (ala Trace.Write/WriteLine) using Instrumentation.Logging
Hello Everyone,
My question is whether it is possible to get line/multiline (very unsure of correct term for this) behaviour of the Trace.Write and Trace.WriteLine methods but usi …
0
votes
0answers
83 views
Bytecode instrumentation generating java verifier error
Hi,
I am using ASM in order to do bytecode instrumentation for Java programs. What I'm doing is simple - When instrumenting a method, if the instruction is a PUTFIELD, simply do …
4
votes
3answers
198 views
Plugging in to Java compilers
I have a post-compilation step that manipulates the Java bytecode of generated classes. I'd like to make life as painless as possible for library consumers, so I'm looking at ways …
1
vote
1answer
38 views
Reading bytecode from an AnnotationProcessor [closed]
Possible Duplicate:
Plugging in to Java compilers
Edit - this appears to be a dupe of Plugging in to Java compilers
I would like to implement an AnnotationProcessor for …
3
votes
2answers
173 views
Find names of all classes that a Java program loads using reflection
To support a static-analysis tool I want to instrument or monitor a Java program in such a way that I can determine for every reflective call (like Method.invoke(..)):
1.) which c …
-1
votes
1answer
130 views
Is there any way to disable the Android ANR dialog?
I'm running Instrumentation in android which calls a view which takes a long time to update. In doing so, the ANR dialog box pops up, which interferes with the instrumentation whic …
0
votes
2answers
135 views
ASM bytecode instrumentation for method entry / exit
I've created a JVMTI agent that does the following at a high level:
onClassLoadHook send the bytecodes for the loaded class to a separate Java process that will instrument the cl …
3
votes
1answer
162 views
Dynamic bytecode instrumentation - issue
I have a problem I am not able to solve. Let's assume we have the following two classes and an inheritance relationship:
public class A {
}
public class B extends A {
public …
4
votes
2answers
252 views
PL/SQL Logging - How to control?
Friends,
I am looking to introduce a logging framework into our existing Oracle application to replace the use of DBMS_OUTPUT.
The framework will be used primarly to aid debugg …
1
vote
2answers
115 views
Code Instrumentation on an ASP.NET Web Application
I'm fairly new to .NET development in general. I would like to do some instrumentation on my web application to tune performance, especially in relation to caching. I've written …
