设计 任务书 文档 开题 答辩 说明书 格式 模板 外文 翻译 范文 资料 作品 文献 课程 实习 指导 调研 下载 网络教育 计算机 网站 网页 小程序 商城 购物 订餐 电影 安卓 Android Html Html5 SSM SSH Python 爬虫 大数据 管理系统 图书 校园网 考试 选题 网络安全 推荐系统 机械 模具 夹具 自动化 数控 车床 汽车 故障 诊断 电机 建模 机械手 去壳机 千斤顶 变速器 减速器 图纸 电气 变电站 电子 Stm32 单片机 物联网 监控 密码锁 Plc 组态 控制 智能 Matlab 土木 建筑 结构 框架 教学楼 住宅楼 造价 施工 办公楼 给水 排水 桥梁 刚构桥 水利 重力坝 水库 采矿 环境 化工 固废 工厂 视觉传达 室内设计 产品设计 电子商务 物流 盈利 案例 分析 评估 报告 营销 报销 会计
 首 页 机械毕业设计 电子电气毕业设计 计算机毕业设计 土木工程毕业设计 视觉传达毕业设计 理工论文 文科论文 毕设资料 帮助中心 设计流程 
垫片
您现在所在的位置:首页 >>计算机毕业设计 >> 文章内容
                 
垫片
   我们提供全套毕业设计和毕业论文服务,联系微信号:biyezuopin QQ:2922748026   
基于Java的服务器应用监控系统设计与实现 毕业论文+任务书+开题报告+中期报告+答辩PPT+外文翻译及原文+项目源码及数据库文件
文章来源:www.biyezuopin.vip   发布者:毕业作品网站  

服务器应用监控系统
摘   要
随着各行业信息化建设的不断深入发展,单独的服务器已经再无法满足企业的需求。网络和应用规模日趋扩大,服务器网络集群大量应用于中、小型企业中,服务器性能监控和日常维护变得复杂。服务器管理员迫切需要一个实用的监控系统来帮助他们实时了解服务器的运行状态,检测服务器故障,令维护服务器的正常运行。
服务器性能监控是指针对服务器系统的运行状态以及各项指标的监控。监控指标包括:CPU 使用率、CPU 负载、内存使用率、磁盘 I/O、磁盘空间、网络流量等。并实时的将监控获得的服务器性能参数传回来显示在客户端,同时上传至中心服务器上的数据库中,便于以后查询,分析。
本文围绕服务器应用性能监控系统的研究与实现,研究了Web服务技术,服务器的性能参数获取和利用Char组件动态显示服务器的运行状态。Web服务的使用简化了客户端系统,服务器的性能参数获取过程封装在一个Windows进程中,系统具有很好的扩展性。系统的实现目标是服务器性能的远程监控,一对多监控,服务器管理员可以查看服务器历史一段时间运行状态。
关键词  服务器应用监控;远程监控;Web服务;Windows性能
Server Application Monitoring System
Abstract
With the rapid development of network technology and application, a single server has failed to meet the needs of the enterprises. With the server scale increasing day after day, and server cluster widely used in the medium and small enterprises, a server’s management and maintenance are becoming difficult. The system administrator urgently need a practical server performance monitoring system to help them know server’s operation state real-time, monitoring server failure, in order to make the server work normally.
This Web service technology, the server performance parameters of the acquisition and use of Microsoft Chart component dynamic display of the server running state.
This paper focus on the server performance monitoring system of research and implementation, research the Web service technology, the server performance parameters of the acquisition and use of Microsoft Chart component dynamic display of the server running state. With the Web service, the client becomes much simple. Packing process of getting the server performance parameters as a service of Windows make the system has good expansibility. System goal is to realize the server performance for remote monitoring, a monitoring more, enable the manager inquiring the server’s some past period of time running state.
Keywords  ServerPerformanceMonitoringSystem; Remote Monitoring;
Web Service; Windows Performance
目   录
摘要…… I
Abstract II
第1章 绪论 5
1.1 选题目的和意义 5
1.2 国内外文献综述 5
1.3 论文研究内容 6
第2章 相关技术概述 7
2.1 服务器应用性能监控 7
2.2 服务器性能参数获取 7
2.2.1 使用Sigar 7
2.2.2 使用Windows性能计数器 8
2.3 Web服务概述 8
2.4 本章小结 8
第3章 系统需求分析 9
3.1 需求背景 9
3.2 系统总体的需求 9
3.3 系统功能性需求分析 10
3.3.1 系统功能 10
3.3.2 WindowsInfoMonitor服务功能需求 10
3.3.3 ShowWinInfo客户端程序功能需求 11
3.4 系统非功能性需求分析 12
3.4.1 可靠性要求 12
3.4.2 易用性要求 12
3.4.3 效率要求 12
3.4.4 可移植性要求 13
3.5 系统开发环境 13
3.5.1 软件环境 13
3.5.2 硬件环境 13
3.6 本章小结 13
第4章 系统设计 14
4.1 系统概述 14
4.2 系统总体架构 14
4.3 划分功能模块 14
4.4 独立模块设计 15
4.4.1 WindowsInfoMonitor服务模块设计 15
4.4.2 ShowWinInfo客户端程序设计 17
4.5 数据模型设计 17
4.6 本章小结 18
第5章 系统实现 19
5.1 WindowsInfoMonitor服务实现 19
5.1.1 获取服务器的性能参数 19
5.1.2 向指定数据库持久化服务器性能参数 24
5.2 ShowWinInfo客户端程序的实现 25
5.2.1 使用Highcharts插件 26
5.2.2 整站效果 27
5.2.3 使用tablesorter 29
5.2.4 使用JSP 31
5.2.5 使用Ajax 31
5.2.6 使用Struts 31
5.3 本章小结 32
结   论 33
致   谢 35
参考文献 36
附   录 37
附录A 服务器信息采集核心代码 41
附录B 前台展示业务核心代码 49

















  全套毕业设计论文现成成品资料请咨询微信号:biyezuopin QQ:2922748026     返回首页 如转载请注明来源于www.biyezuopin.vip  

                 

打印本页 | 关闭窗口
本类最新文章
基于10kV配电网线损的仿真计算 华兴科技公司网络规划与设计 毕业 宠物之家寄养系统的设计与实现 毕
SSM的毕业生去向登记分析管理系 Hadoop 的预制菜溯源预测系 YOLOv3改进算法在道路裂缝检
| 关于我们 | 友情链接 | 毕业设计招聘 |

Email:biyeshejiba@163.com 微信号:biyezuopin QQ:2922748026  
本站毕业设计毕业论文资料均属原创者所有,仅供学习交流之用,请勿转载并做其他非法用途.如有侵犯您的版权有损您的利益,请联系我们会立即改正或删除有关内容!