简体   繁体   English

如何使用jmeter对Power BI仪表板项目进行性能测试?

[英]How to do performance testing for Power BI dashboard project using jmeter?

Since power BI request are not recording i was set up a profiler on the server and took the dax querys from the profiler and try to run it through the Jmeter. 由于未记录Power BI请求,因此我在服务器上设置了探查器,并从探查器获取了dax查询,并尝试通过Jmeter运行它。 My questions are 1) Can wedo performance testing using jmeter in power BI projects? 我的问题是1)我们可以在Power BI项目中使用jmeter进行性能测试吗? 2) Can we connect to the Analysis services to run the Dax querys? 2)我们可以连接到Analysis Services来运行Dax查询吗?

And when im trying to connect to the Analysis services im getting below error massage. 当我尝试连接到Analysis Services时,我将得到错误提示。 连接错误

带值的连接属性

My expectation is that you're using wrong driver. 我的期望是您使用了错误的驱动程序。 Given IntegratedSecurity=true I think you're trying to login with current Windows user, therefore: 鉴于IntegratedSecurity=true我认为您正在尝试使用当前Windows用户登录,因此:

  1. Remove JTDS driver from JMeter 从JMeter删除JTDS驱动程序
  2. Download Microsoft JDBC Driver for SQL Server 下载用于SQL Server的Microsoft JDBC驱动程序
  3. Drop sqljdbc42.jar somewhere to JMeter Classpath sqljdbc42.jar拖放到JMeter Classpath
  4. Drop sqljdbc_auth.dll file from auth folder of the JDBC Server installation to JMeter's "bin" folder (or somewhere under Java Library Path ) sqljdbc_auth.dll文件从JDBC Server安装的auth文件夹拖放到JMeter的“ bin”文件夹(或Java Library Path下的某个位置)
  5. Restart JMeter to pick the .jar and the .dll up 重新启动JMeter以选择.jar和.dll

Assuming everything goes well you should now be able to connect. 假设一切顺利,您现在应该可以连接了。 Just in case check out The Real Secret to Building a Database Test Plan With JMeter article to learn more about databases load testing. 以防万一,请查看“使用JMeter构建数据库测试计划的真正秘诀”一文,以了解有关数据库负载测试的更多信息。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在 jmeter 中生成仪表板报告? - How do I generate a Dashboard Report in jmeter? 如何使用 Apache Jmeter 性能测试模拟生产 Spring Boot REST API 的流量(TPS 9.05)? - How to mimic traffic (TPS 9.05) of production Spring Boot REST API using Apache Jmeter performance testing? 在 Java API 上使用 JMeter 进行低环境性能测试需要多长时间 - How long to run through for lower environment performance testing using JMeter on Java APIs 如何在基于 Spring 的项目中嵌入 Power BI? - How can I embed the Power BI in my Spring based project? 在OAuth 2.0安全Web应用程序上使用JMeter脚本进行性能测试 - Performance testing using JMeter script on an OAuth 2.0 Secure Web Application Jmeter性能测试:线程泄漏 - Jmeter Performance testing: Thread leakage 将appium集成到jmeter中进行性能测试? - Integrate appium to jmeter for performance testing? 知道如何使用 Jmeter 进行独立 Java 应用程序的性能测试吗? - Any idea how to use Jmeter for performance testing of Standalone Java app? 我们可以使用JMeter进行哪种类型的项目测试 - Which type of project testing we can do with JMeter 使用VisualJVM在Eclipse中测试Java项目的性能 - Testing performance of Java project in Eclipse using VisualJVM
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM