Oracle Analytics Cloud and Server

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

OBIEE Login performance using WLST

Received Response
11
Views
4
Comments
2709444
2709444 Rank 3 - Community Apprentice

Hi,

I would like to use WLST for checking OBIEE Login performance in the backend and alert us if login time takes more / reached threshold value. Is it possible to do using WLST?


Answers

  • handat
    handat Rank 5 - Community Champion

    You would be better off using curl or wget to simulate a login and capturing the response time of that.

  • rmoff
    rmoff Rank 6 - Analytics Lead

    +1 to @handat. WLST would be completely the wrong tool for this. Use curl, or a simple python program using the requests library. Here's a sample that uses the requests library - it's commented so you can see which bits you'd need to include just to test login time.

  • 2709444
    2709444 Rank 3 - Community Apprentice

    Can you please provide a sample code so that it would be helpful for me to try understanding what curl is.

  • handat
    handat Rank 5 - Community Champion

    curl is a command line tool that can perform http requests.

    Here's an example syntax to connect to a site with username/password: <span>curl -c cookie.txt -d "LoginName=someuser" -d "password=somepass" </span><a class="jive-link-external-small" href="https://somesite.com:9704/analytics" rel="nofollow">https://somesite.com:9704/analytics</a>

    And here's a site with more samples and tutorial: <a href="http://www.yilmazhuseyin.com/blog/dev/curl-tutorial-examples-usage/" title="http://www.yilmazhuseyin.com/blog/dev/curl-tutorial-examples-usage/">http://www.yilmazhuseyin.com/blog/dev/curl-tutorial-examples-usage/</a>