Are there any tools to export weblogic statistics to prometheus? - weblogic

Wanted to know if there are any libraries/tools/APIs to export weblogic statistics to prometheus and further to grafana for monitoring purpose.

weblogic-monitoring-exporter from Oracle's GitHub Repository

With the older version of the weblogic wlst does provide the metrics. WLST is weblogic scripting tool.
Following things you can do:
Connect to wls server with wlst and write data into the file. Could be the log.
Use MTAIL tool to get the data (time-series)etc from parsing the log file.
References:
https://github.com/google/mtail
https://www.middlewareinventory.com/blog/monitor-weblogic-stuck-threads-wlst-script/

Related

How to connect sql database with ignite cluster to sync data?

I am new to apache ignite. I created ignite cluster and connect my nodejs thin client to it. It is working fine but It only create cache create functions specified in js file. Now I want to sync my sql server data with ignite. Any idea how I will do it?
I tried to connect with Grid gain but it does not allow me to create free cluster?
Please refer to 3rd Party Persistence documentation regarding RDBMS integration.
GridGain Web Console can help you set up database integration by generating Maven project corresponding to your RDBMS data model.
GridGain Community Edition is free to use as long as you deploy it on your own. But, it is also supported by stock Apache Ignite.

Can we use server configuration tool for MFP Foundation on IBM Container(Bluemix)?

Server Configuration Tool needs Database Settings(host,port,username,password,dbname) and AppServer Settings(installation directory,username,password) information. The tool also need to access database directly.
The MFPF docs doesn't provide such kind of information. Is there anyway to user server configuration tool for MFPF on ibm container?
It is not possible to use the Server configuration tool for IBM Containers deployment. The only current way is to use the scripts as provided and instructed, here: https://developer.ibm.com/mobilefirstplatform/documentation/getting-started-7-1/bluemix/run-foundation-on-bluemix/

IBM Mobilefirst server configuration tool without GUI

I'm trying to install IBM Mobilefirst 7.0 server on production Ubuntu server in Amazon. The server has no GUI. I installed Websphere Application Server and IBM Mobilefirst server using silent installation of IBM Installation Manager and response file created on server with GUI. But now I'm stuck at a point where I have to configure MobileFirst server using server configuration tool. But I'm not able to find out how to do this without GUI since server configuration tool is GUI based. Any pointers or help would be highly appreciated!
You can use ant tasks to proceed with the configuration without the GUI.
Detailed steps for this can be found in the link below.
http://www-01.ibm.com/support/knowledgecenter/SSHS8R_7.0.0/com.ibm.worklight.deploy.doc/devref/t_transporting_apps_and_adapters.html
What I was asking for is way to implement MobileFirst Server administration without using GUI as given in step number 6 in this link: http://www-01.ibm.com/support/knowledgecenter/#!/SSHSCD_6.3.0/com.ibm.worklight.installconfig.doc/install_config/t_ov_server_install.html. Since the server I was working on does not have a GUI, I was stuck at step 6. But I found the way out now and for someone who is looking for this, the way to do is using ant scripts. Steps are listed at this link : http://www-01.ibm.com/support/knowledgecenter/#!/SSHS8R_7.0.0/com.ibm.worklight.installconfig.doc/devref/t_ant_tasks_configure_dbs_wlconsole.html

configure scheduler with weblogic server to save some reports in excel format using java

I want to configure scheduler with weblogic server to save some reports in excel format using java.
Can anybody help with the code and steps to achieve this as i new to weblogic
Java scheduler is not really WLS specific. There are frameworks such as Quartz that are application server agnostic. You can check out the quartz code sample here or google yourself. You can also use the Timer Service feature in the EJB3 if you prefer.

Weblogic server: get all settings

I am looking for a command-line script which can give me an overview of all settings which are set in Weblogic server. For Glassfish the following command exists asadmin get '*'.
Anybody an idea how to do this?
There is a scripting framework for WebLogic called WLST that can assist you with this.