码迷,mamicode.com
首页 >  
搜索关键字:metrics    ( 545个结果
日志系统之定时任务执行引擎
概述最近这段时间在强化日志系统自身的稳定性和可靠性,一个稳定可靠的系统离不开监控,我们这里谈及的监控除了服务是否存活还有这些组件的核心metrics采集与抓取,为此我们将这些任务做成了定时任务来执行。由于大致的思路以及设计已经成型,所以今天来分享一下日志系统在定时任务这块的选型与设计。...
分类:其他好文   时间:2016-04-26 21:40:50    阅读次数:201
Stanford机器学习笔记-7. Machine Learning System Design
7 Machine Learning System Design Content 7 Machine Learning System Design 7.1 Prioritizing What to Work On 7.2 Error Analysis 7.3 Error Metrics for Sk ...
分类:系统相关   时间:2016-04-18 01:06:43    阅读次数:330
053(三)
11、View the Exhibit to examine the metrics with a threshold. Which statement is true regarding the Number of Transactions (per second) metric? 12、 13、 ...
分类:其他好文   时间:2016-04-11 10:11:26    阅读次数:185
influxdb 安装配置详解
1:简介InfluxDB是一个开源分布式时序、事件和指标数据库。使用Go语言编写,无需外部依赖。其设计目标是实现分布式和水平伸缩扩展。1、它有三大特性:1.TimeSeries(时间序列):你可以使用与时间有关的相关函数(如最大,最小,求和等)2.Metrics(度量):你可以实时对大量数..
分类:数据库   时间:2016-04-03 20:33:56    阅读次数:497
硅谷投资人秘籍:16个指标避免掉坑
[转自] 网易科技报道 【导语】 以下英文内容来自硅谷风投A16Z的文章《16 Startup Metrics》。介绍如何衡量一家初创公司的真实情况。网易创业Club推荐此文,保留了英文全文,并加上原创中文解说,不是翻译哟。为了便于理解,把中文内容放在相应英文段落的前面。最后,跳过全部英文也不影响阅... ...
分类:其他好文   时间:2016-04-01 20:14:58    阅读次数:461
A Taxonomy for Performance
A Taxonomy for Performance In this section, we introduce some basic performance metrics. These provide a vocabulary for performance analysis and allow us to frame the objectives of a tuning proje...
分类:其他好文   时间:2016-04-01 18:34:52    阅读次数:163
android中动态获取屏幕的像素
public static int getDisplayMetrics(Context context){ DisplayMetrics metrics=new DisplayMetrics(); ((Activity)context).getWindowManager().getDefaultDi
分类:移动开发   时间:2016-03-17 12:51:16    阅读次数:168
C++_Eigen函数库用法笔记——Advanced Initialization
The comma initializer a simple example join and block initialize join two row vectors together initialize metrics with block structure fill block expr
分类:编程语言   时间:2016-03-09 21:07:02    阅读次数:411
关于Confusion Matrix
from sklearn.metrics import confusion_matrixy_true = [2, 0, 2, 2, 0, 1]y_pred = [0, 0, 2, 2, 0, 2]print confusion_matrix(y_true, y_pred) 结果: [[2 0 0]
分类:其他好文   时间:2016-03-04 14:32:13    阅读次数:161
获取手机分辨率大小
DisplayMetrics metrics = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(metrics); String str = "宽:" + metrics.widthPixels + "
分类:移动开发   时间:2016-02-26 20:20:48    阅读次数:156
545条   上一页 1 ... 45 46 47 48 49 ... 55 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!