SoftwarE tesT warriorS
SoftwarE tesT warriorS
  • 4
  • 9 853

วีดีโอ

#Jmeter #devops Integration of Jmeter & Jenkins with performance report inside Jenkins
มุมมอง 3K4 ปีที่แล้ว
Learn how to integrate Jmeter with continuous integration tool Jenkins and also how to create performance report inside Jenkins only
Jmeter CSV and HTML report creation via command line using Mac/WIndows
มุมมอง 1.3K4 ปีที่แล้ว
All performance test engineers can use this video for command line execution of Jmeter scripts and generate Csv and Html reports that can be shared with client and management
(MYSQL) Database performance Testing using Jmeter with database test plan
มุมมอง 5K4 ปีที่แล้ว
QA beginners in performance testing can use this video for database testing using Jmeter tool.

ความคิดเห็น

  • @zc8497
    @zc8497 13 วันที่ผ่านมา

    For insert query, Which one I need to use? Callable ?

  • @AyushiDwivedi-wy2ms
    @AyushiDwivedi-wy2ms 7 หลายเดือนก่อน

    Really Helpful, looking forward to more videos like this for performance and API testing.

  • @YugureInfotech
    @YugureInfotech 9 หลายเดือนก่อน

    This is very informative video which helped.

  • @nitishsingh8539
    @nitishsingh8539 3 ปีที่แล้ว

    Hello

  • @mr.megatronawarrior4488
    @mr.megatronawarrior4488 4 ปีที่แล้ว

    Much needed to Mysql

  • @mr.megatronawarrior4488
    @mr.megatronawarrior4488 4 ปีที่แล้ว

    Awesome content

  • @mr.megatronawarrior4488
    @mr.megatronawarrior4488 4 ปีที่แล้ว

    Really helpul

  • @mannatpandey9924
    @mannatpandey9924 4 ปีที่แล้ว

    This video helped me.

  • @mannatpandey9924
    @mannatpandey9924 4 ปีที่แล้ว

    Must watch able tutorial

  • @mannatpandey9924
    @mannatpandey9924 4 ปีที่แล้ว

    It worked

  • @ajeetsingh5716
    @ajeetsingh5716 4 ปีที่แล้ว

    Awesome video ,it helped in database performance testing.

  • @ajeetsingh5716
    @ajeetsingh5716 4 ปีที่แล้ว

    Nice video for performance testing.

  • @ajeetsingh5716
    @ajeetsingh5716 4 ปีที่แล้ว

    Really helpful in configuring jmeter with Jenkins,And I successfully created dashboard report

  • @laalusingh2071
    @laalusingh2071 4 ปีที่แล้ว

    Nice information.

  • @laalusingh2071
    @laalusingh2071 4 ปีที่แล้ว

    Helpful video

  • @laalusingh2071
    @laalusingh2071 4 ปีที่แล้ว

    Helpful video.

  • @sambasiva1702
    @sambasiva1702 4 ปีที่แล้ว

    This is so complicated explanation

  • @kamalpaniindianvillagelife9122
    @kamalpaniindianvillagelife9122 4 ปีที่แล้ว

    Very helpful video ..need one video on how to generate html report in command line from blazemeter log file.

  • @VivekSingh-bz8jd
    @VivekSingh-bz8jd 4 ปีที่แล้ว

    Learned now to create Jmeter report ...

  • @VivekSingh-bz8jd
    @VivekSingh-bz8jd 4 ปีที่แล้ว

    Good for QA beginners

  • @bijendrasingh2751
    @bijendrasingh2751 4 ปีที่แล้ว

    Good job Mr. Software test warriors , Thannks for a hardwork for us

  • @MohitMalhotra
    @MohitMalhotra 4 ปีที่แล้ว

    Very Helpful

  • @prachichoudhary9014
    @prachichoudhary9014 4 ปีที่แล้ว

    Very helpful, thanks for sharing

  • @anshusingh-co8ih
    @anshusingh-co8ih 4 ปีที่แล้ว

    Much needed video, thanks.

  • @SantoshGupta-dg4su
    @SantoshGupta-dg4su 4 ปีที่แล้ว

    This is really helpful

  • @pratheepkumar4218
    @pratheepkumar4218 4 ปีที่แล้ว

    Hi, how to connect with mongodb.

    • @softwaretestwarriors1925
      @softwaretestwarriors1925 4 ปีที่แล้ว

      Hi pratheep for mongo DB connection you can follow steps : 1. Download groovy jar file: 2. Download mongo java jar file: 3. Jmx connection: use below code import com.mongodb.* import com.mongodb.client.MongoClients; import com.mongodb.client.MongoClient; import com.mongodb.MongoClientSettings; import com.mongodb.ServerAddress; import com.mongodb.client.MongoCollection; import com.mongodb.client.MongoDatabase; import org.bson.Document; import java.util.Arrays; try { MongoClientSettings settings = MongoClientSettings.builder() .applyToClusterSettings {builder -> builder.hosts(Arrays.asList(new ServerAddress(vars.get("mongoHost"),vars.get("mongoPort").toInteger())))} .build(); MongoClient mongoClient = MongoClients.create(settings); MongoDatabase database = mongoClient.getDatabase(vars.get("databaseName")); MongoCollection<Document> collection = database.getCollection(vars.get("collectionName")); vars.putObject("collection", collection); return "Connected to " + vars.get("collectionName"); } catch (Exception e) { SampleResult.setSuccessful(false); SampleResult.setResponseCode("500"); SampleResult.setResponseMessage("Exception: " + e); } Note : Above config maybe bit complex , I will come up with my next videos on all DB's widely used

    • @pratheepkumar4218
      @pratheepkumar4218 4 ปีที่แล้ว

      @@softwaretestwarriors1925 thanks

  • @anshusingh-co8ih
    @anshusingh-co8ih 4 ปีที่แล้ว

    Can you share same videos for SQL server & posgress ...it will be really helpfull