書体がひどいことになってしまいましたので PDF にしてアップロードし直しました:
https://www.slideshare.net/SatoshiMimura/inside-wsl-180215871
---
Inside logics of Windows Subsystem for Linux.
世間では、情報システムの運用・監視の「自動化」というキーワードがもてはやされがちで、各種のツール・プロダクト等が出てくる昨今です。しかし、「自動化」の実態は深い霧のベールに包まれていると感じていませんか。今回は、以下の現場視点でこのベールを脱がしてみたいと思います。
July Tech Festa 2016 発表資料
#jtf2016
平成28年7月24日(日)
This is Zabbix conference 2015 presentation.
This document introduce you about some our activities.
Hybrid Cloud monitoring tool, collaboration tool with Job management tool.
This document discusses Mackerel and Zabbix, two monitoring tools for servers and applications. It provides an overview of the key features and differences between the two tools, including how they monitor servers, organize infrastructure, generate alerts, and integrate with other services. The presentation encourages choosing the right tool based on the specific needs and context of the project.
論文紹介:"Visual Genome:Connecting Language and VisionUsing Crowdsourced Dense I...Toru Tamaki
Ranjay Krishna, Yuke Zhu, Oliver Groth, Justin Johnson, Kenji Hata, Joshua Kravitz, Stephanie Chen, Yannis Kalantidis, Li-Jia Li, David A. Shamma, Michael S. Bernstein, Li Fei-Fei ,"Visual Genome:Connecting Language and VisionUsing Crowdsourced Dense Image Annotations" IJCV2016
https://link.springer.com/article/10.1007/s11263-016-0981-7
Jingwei Ji, Ranjay Krishna, Li Fei-Fei, Juan Carlos Niebles ,"Action Genome: Actions As Compositions of Spatio-Temporal Scene Graphs" CVPR2020
https://openaccess.thecvf.com/content_CVPR_2020/html/Ji_Action_Genome_Actions_As_Compositions_of_Spatio-Temporal_Scene_Graphs_CVPR_2020_paper.html
論文紹介:PitcherNet: Powering the Moneyball Evolution in Baseball Video AnalyticsToru Tamaki
Jerrin Bright, Bavesh Balaji, Yuhao Chen, David A Clausi, John S Zelek,"PitcherNet: Powering the Moneyball Evolution in Baseball Video Analytics" CVPR2024W
https://openaccess.thecvf.com/content/CVPR2024W/CVsports/html/Bright_PitcherNet_Powering_the_Moneyball_Evolution_in_Baseball_Video_Analytics_CVPRW_2024_paper.html
26. Zabbix2.2の新機能
WMI監視機能
● WMI(Windows Management Instrumentation)とは?
○ OSの情報とか、プロセスの情報とか、デバイスの情報とか
Windowsサーバの情報を収集する仕組み
● perf_counterやproc_infoよりも更に汎用的に多くの情報の取得が可能に
概要
● 監視対象のWindowsサーバにZabbix Agentを導入
● WMIサービスが動いていることを確認(通常は有効になっているはず)
● wmi.get[namespace,wql]というキーでZabbix Agent監視用アイテムを登録
例. zabbix_agentプロセスの仮想アドレス領域のサイズを監視する例
wmi.get[rootcimv2,
select virtualsize from Win32_Process where Name like '%
zabbix_agent%']
使い方
27. Zabbix2.2の新機能
WMI監視機能
● WMIで何が監視できるか?
○ このあたりが参考になります
■ http://msdn.microsoft.com/en-us/library/aa394570(v=vs.85).aspx
○ wmicコマンドが便利
参考情報
C:>wmic process where (name like '%zabbix_agentd.exe%') get name,VirtualSize
Name VirtualSize
zabbix_agentd.exe 93048832