Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 209 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
OBIEE Login performance using WLST

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
-
You would be better off using curl or wget to simulate a login and capturing the response time of that.
0 -
Can you please provide a sample code so that it would be helpful for me to try understanding what curl is.
0 -
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>
0