Posts

DynaTrace - Learnings

Image
 Digital Exeperience: Session Segnmentation: opens the user session - user session is the user journey ( interaction of user's device with your application). it's pretty much the sequence of user actions performed by the user within a certain period of  time. the idea behind the user segmentation is that you can filter and depp dive into multiple users actions at the same time. Below are the options on session segmentation: Analysis over time: howmany seesions in total Application Type : (web or mobile or geographical) Application versions - which version is being used more in production. Applcations: which application has more the user session. User experience score: which shows % of satisfying sessions, % of tolerable sessions and % of frustrating sessions. Errors and annoyances: shows howmany sessions have errors like 0 errors for 500 sessions, 1 errors for 300 sessions. Conversions and bounces: shows howmany sessions converted, bouned sessions or netiher convereted and bo...

How to convert LoadRunner script into Jmeter script

Image
  You can Convert LoadRunner below 2 protocol scripts in to Jmeter scripts. Web — HTTP/HTML. Web services. Preparing JMeter for Recording JMeter comes with a built-in  proxy server  that enables intercepting HTTP requests that flow through it and converts them into  HTTP request  samplers. The easiest way to set up JMeter for recording is to use the  JMeter Templates  feature. JMeter can be set up for recording in just a few clicks. Just choose  File  >  Templates  >  Recording  from JMeter’s main menu and then click the  Create  button.  JMeter will populate a Test Plan that is suitable for HTTP(S) traffic recording. All you need to do is expand  WorkBench  >  HTTP(S) Test Script Recorder  and click the  Start  button. Once you click the  Start  button, JMeter will show you a message telling that a certificate was created in JMeter’s  bin  dire...

How to create and execute jar file using CMD(command prompt)

Image
 Creating java file Open note pad and write simple java  program and save as with .java extension. ex: java code: class HelloWorld {     public static void main(String[] args) {         System.out.println("Hello, World!!");      } } save the text file with extension as .java Creating class file compiling java program through command prompt Class file will be created in the same folder after successful compilation of java file Create a manifest txt file with class names ex: NOTE: Space should be provided as highlighted in yellow Command to convert java program to jar file Execute jar file from Command prompt  

an-operation-was-attempted-on-something-that-is-no.html

http://eyeontesting.com/questions/1272/an-operation-was-attempted-on-something-that-is-no.html

Oracle database Testing

In this blog, I’ll tell you how to load test the oracle database using loadrunner. There are different ways to achieve it and one simple way is writing SQL queries in vugen script. In this blog I’m going to tell how to connect to database, how to execute query and how to disconnect. I will be using lr_db functions to achieve this. Loadrunner help is very useful with details about lr_db functions. Connect to Oracle database: lr_db_connect("StepName=Connect",         "ConnectionString=Provider=OraOLEDB.Oracle; dbq=10.xx.xx.xx:1540; Data Source=XXXX; Persist Security Info=True; User ID=username; Password=password",         "ConnectionName=OracleDB",         "ConnectionType=OLEDB", LAST ); SQL statement: lr_db_executeSQLStatement("StepName=PerformQuery",                 "ConnectionName= ...

7 Useful Command tools to monitor Linux performance

Image
Here are the top 7 Command tools which are very useful to monitor and debug Linux System Performance which are frequently used command line to monitor Linux system performance. TOP - LINXU PROCESS MONITORING It display CPU usage, Memory usage, Swap Memory, Cache Size, Buffer Size, Process PID, User, Commands and much more. It also shows high memory and cpu utilization of a running processess. The top command is much userful for system administrator to monitor and take correct action when required. Let’s see top command in action. # top VMSTAT – VIRTUAL MEMORY STATISTICS Linux VmStat command used to display statistics of virtual memory, kernerl threads, disks, system processes, I/O blocks, interrupts, CPU activity and much more.  # vmstat TCPDUMP – NETWORK PACKET ANALYZER Tcpdump one of the most widely used command-line network packet analyzer or packets sniffer program that is used capture or filter TCP/IP packets that received or transferred on a...

Main causes of Out-Of-Memory Errors

Main causes of Out-Of-Memory Errors When there is no enough space to create a new object in heap JVM through a Out-of-memory errors before giving this error JVM surly runs garbage collector once to check for available memory which can be freed .The main causes for this error can be. It is possible that you have estimate less memory for your application for example your application need 2 Gb of memory but you have configured only 512 Mb so here you will get an OOME(Out-of-memory errors )  1.Due to Memoryleak :- Memory leak is responsible for decreasing the available memory for heap and can lead to out of memory error for more read What is a Memory Leak in java?  2.Memory fragmentation :- It is possible that there may be space in heap but it may be not contiguous . And heap needs compaction . Rearrange its memory. 3.Excess GC overhead :- Some JVM implementations, such as the Oracle HotSpot, will throw an out-of-memory error when GC overhead becomes too great. This...