Get Remote Support
Send your technical IT problems to us, then we will try to solve the problem and share the solution with you. Go on and open your remote support ticket. We have a valuable and friendly team for working on your issue.
You are here: Home » Get Remote Support
Oracle WebLogic: Monitoring WebService Performance then Trigger Auto JFR and Thread Dump – Volume-II
In this screen cast I am showing WebService Performance monitoring with CURL; WebService can be SOAP or REST Giving alarm threshold for the WebService total response times Triggering auto Java Flight Recorder (JFR) and auto thread dump when the WebService performance exceeds the threshold Sample HelloWaitWebService application available at my github account: https://github.com/admineer/HelloWaitWebServiceApp Scripts are available […]
Monitoring WebLogic Server Disk Usage and Deleting Logs
1. Below shell script shows /appdata, /root and /u01 mount points’ disk usage
1 2 3 4 |
#Author: Fevzi Korkutata #Shows server's /appdata, /ROOT and /u01 disk usage percentage # Modify awk part according to your server 'df' command output echo DISK_APPDATA=$(df /appdata | grep /appdata | awk '{print $5}' | tr '%' ' ') ; echo DISK_ROOT=$(df / | grep / | awk '{print $5}' | tr '%' ' ') ; echo DISK_U01=$(df /u01 | grep /u01 | awk '{print $5}' | tr '%' ' ') |
2. WLSDM Action Script
1 2 3 4 |
# Author: Fevzi Korkutata # Finds the logs before 1 and 3 days after and deletes them find /appdata/domains/ccb_domain/servers/. -type f -mtime +1 | grep -E 'log0|out0|err0' | awk '$1' | xargs rm -rf find /appdata/ouaf/sploutput/CCBPROD/ -type f -mtime +3 | grep -E '*' | awk '$1' | xargs rm -rf |
Here is the result chart after adding as Generic DevOps MBean: Share admineer resources…
Oracle Developer Meetup İSTANBUL – Boğaziçi Üniversitesi
İkincisini İstanbul Boğaziçi Üniversitesi’nde gerçekleştirdiğimiz Oracle Developer Meetup yine oldukça faydalı ve bilgi dolu geçti. Çok samimi ilerliyoruz ve tek hedefimiz güncel geliştirici teknolojileri ile bilgi birikimimizi arttırmak. Siz de bu buluşmalarda bize katılabilirsiniz… Oracle Bulut Mikroservis ve Oracle WebLogic Kubernetes Operator gibi geliştiricilere yönelik Oracle teknolojileri üzerine son gelişmeleri ve trendleri aktardık. Yazılım geliştirmeye […]
Oracle Developer Meetup – İTÜ Teknokent
Yazılım geliştirmeye ilgisi olan misafirlerimizi ITÜ Magnet ev sahipliğinde, samimi bir ortamda ve akşam yemeği eşliğinde gerçekleştirdiğimiz Oracle Developer Meetup’ta ağırladık. Etkinliğe katılım bir hayli yüksekti. Özellikle yurt dışından davet ettiğimiz konuşmacı Geertjan Wielanga’yı ağırlamak bizim için ayrı bir keyifti. Geliştiricilere yönelik yaptığımız bu etkinlikleri devam ettireceğiz. Siz de grubumuza dahil olmak istiyorsanız; meetup […]
Oracle WebLogic Yönetimi, İzleme ve İyileştirme
Oracle Cloud Day etkinliğinde yapmış olduğum teknik sunum. Güncelliğini korumakta, montajlayıp yayına aldım. Faydalı olması dileklerimle… İçerdiği Kısa Konular: Oracle WebLogic Multitenancy WebLogic Performans İzleme WebLogic Performans İyileştirme Java Server Loader Share admineer resources…