由买买提看人间百态

topics

全部话题 - 话题: logging
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
s****y
发帖数: 581
1
来自主题: Database版 - online redo log 的问题
SQL> select * from v$log;
GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS
---------- ---------- ---------- ---------- ---------- --- ----------------
FIRST_CHANGE# FIRST_TIM
------------- ---------
1 1 120943 52428800 1 NO ACTIVE
1883406504 01-MAY-12
2 1 120944 52428800 1 NO CURRENT
1883406711 01-MAY-12
3 1 120942 52428800 1 NO ACTIVE
1883402221 01-MAY-12
大家说说我的log gro... 阅读全帖
D*****n
发帖数: 363
2
来自主题: DotNet版 - The "automatically log me in" option

Still not quite right here. After I check the "auto-log-me" box and
log in, Firefox shows the login cookie will expire in 30 minutes. By
msdn document, it should expire in 50 years. After I log out, the
cookie is gone from the Firefox browser. It's almost the same in IE.
My authentication setting is pretty simple:

loginUrl="SignIn.aspx"
protection="All" path="/" />
A***g
发帖数: 1816
3
我的理解是syslog server只负责store传过来的message,而router负责产生log
message然后送过去。可是我看了看一些现有的家用router,它们在admin page里的log
指有系统水平的log,比如更改了什么设定啊,可是具体哪个机器去了什么网站,这都
没有啊
p**r
发帖数: 5853
4
java语法,以及一些关键词,你最好问问java高手们。
俺java基本忘光了。。。
#1
题目要求是must not load ENTIRE file in memory
貌似有个bufferreader的可以,你设置个limition,怎么读不用担心load整个文件到
memory
#2
时间做key不行,因为就是你的example里面就有时间一模一样的,除非时间数据全部是
unique.
#3
输出成何种格式很难说,因为不知道你公司是什么类型的。
但是既然开始要求你不load entire file,就意味着file size很大
如果你再把所有东西写入结构,再导出另一个log,其实就失去意义了。
#4
最后回答兼职问题,这东西如果是熟练码工的话,应该15分钟内搞定。

1。我用这种方式读入单行,但是发现FileReader继承自 OutputStreamWriter,那是不
是也算用到了stream,不知道是否load file in memory,所以不知道这种方式是否真
的满足第一条要求
1.Must not load entire file in memory (stre... 阅读全帖
c***c
发帖数: 6234
5
Server Team要求我们提供一个ear file。他们可以放在不同环境里先测试。
我们有log4j,他们要求DEV server上的log file要用log_dev,QA的要用log_qa
所有log file都要放在指定的地方。比如 /app001/jas/applogs/myappname
这样myappname的folder里会有 log_dev,log_qa等等。便于他们管理
可以设置不同的 log4j.appender.FILE.File= myappname/log_env.log 吗?
server上有env property。我们upload files 就是根据这个变量决定upload到哪里的
谢谢
i**w
发帖数: 883
6
用log4j.xml时,可以引用环境变量,比如tomcat下的log路径: ${catalina.home}/
logs/myapp-${env.id}.log
用log4j.properties时,没有试过这种用法
c***c
发帖数: 6234
7
最后答案是没办法。
最终还是一样的log4j log file 的名字。在不同server上是一样的名字。
因为我们的app是从system env 读取server 环境的(DEV, QA,PROD)。提出这个想
法的人自己都不知道是不是能实现在DEV 上叫 appDEV.log 在QA上叫appQA.log
我就跟他说,我笨,你show给我看看怎么实现。他整了一天回信说,还是一样名字吧。
装怂有时是必要的
N**D
发帖数: 10322
8
来自主题: Linux版 - 问个php logging 的问题
所有的访问都是用php回复
想在每个reply 的同时,记下一些log 在server 上, 一天一个log file.
问题是如果有很多个用户一起访问, 如何解决concurrency 的问题,因为所有的人要
写到同一个log 文件里。
谢谢
r****s
发帖数: 179
9
【 以下文字转载自 EmergingNetworking 讨论区 】
发信人: ranius (ranius), 信区: EmergingNetworking
标 题: Massive network traffic monitoring and logging
发信站: BBS 未名空间站 (Sat Nov 3 00:04:23 2012, 美东)
I am looking for a good solution for logging and monitoring massive network
traffic.
Does anyone have experience in this area or know good solutions?
Looks like the best way is to replicate the traffic to a dedicated logging
server to avoid
impacting the performance of the traffic receiver. Any better idea?
Thanks
e***a
发帖数: 18
10
来自主题: Programming版 - question on user log in (转载)
【 以下文字转载自 Unix 讨论区 】
发信人: eriba (eriba), 信区: Unix
标 题: question on user log in
发信站: BBS 未名空间站 (Thu Dec 20 16:40:16 2007)
One day you (not root) came to work (the machine was up already) and logged
in and ended up in the root directory. Then you reboot the box and logged in
again and now you were in your home directory as it should be.
Any idea what happened?
s*****w
发帖数: 1527
11
来自主题: Programming版 - no log2() in visual studio, only log() ?
how is it smart enough to know log(8.0)/log(2.0) = 3 ?
log(2.0) is a float, i thought it should come back sth. like 2.98...
l**********n
发帖数: 8443
12
there should be a global logger:
static public void setup() throws IOException {
// Get the global logger to configure it
Logger logger = Logger.getLogger(Logger.GLOBAL_LOGGER_NAME);
logger.setLevel(Level.INFO);
fileTxt = new FileHandler("Logging.txt");
fileHTML = new FileHandler("Logging.html");
// Create txt Formatter
formatterTxt = new SimpleFormatter();
fileTxt.setFormatter(formatterTxt);
logger.addHandler(fileTxt);
// Create HTML Formatter
formatt... 阅读全帖
d*******r
发帖数: 3299
13
来自主题: Programming版 - AWS cloud 内部做log,大家怎么设计
目前琢磨的 API 设计是写个non blocking的 write_to_log_server(log_msg), 调用它
的模块大都是 Python, 少量PHP, 少量的 Ruby 和 Java。所以打算这个 write_to_log
_server(log_msg) 自己去开一个 sub process, 自个去写 log server. 这样设计的话
,所有语言的 API 都容易设计。如果写 log system 失败了,就只能在 local 写个
txt log 了。大家觉得这个设计如何?
r****c
发帖数: 2585
14
来自主题: Programming版 - AWS cloud 内部做log,大家怎么设计
你这是structure log还是debug log?
36楼说的不错,用log saver类似的,存到HDFS
debug的话就看文件,structure的话更简单,直接起个mr查
d*******r
发帖数: 3299
15
对于分布式的backend servers,做一般性的logging,实时要求不高,要能scale out
,在logging里面搜索要方便。
请问大牛们,这2个哪个比较好。
貌似 ElasticSearch 那一套看着很完善了: logstash (JRuby) -> ElasticSearch ->
kibana (GUI)
http://www.elasticsearch.org/overview/
用的话, 不需要去折腾 Ruby gems 什么的吧,我看了下,好像不需要折腾 Ruby
ElasticSearch 这一套看官网介绍,还能跑 hadoop?
另外,ElasticSearch 公司哪些服务要收钱的?
Cassandra 的话,写效率高
请板上大牛们评比下这2个轮子哪个做一般 log 比较好
d*******r
发帖数: 3299
16
来自主题: Programming版 - 关于Kafka,一个log数据处理的问题
你说这个我有体会,就是采集 log 的时候,如果不加入很重要的一些 fields, 就会
information loss。后面的分析,是后面的事情, 但是开始采集的时候,该加的 field
一定要加, 不然后面分析功能再fancy,也会缺信息.
这个主要看采集的模块,logstash(Ruby, JRuby, Go), fluentd(Ruby), 还有 Heka(Go
).
大概2年以前我用过 logstash, fluentd. logstash 乱糟糟的,filter/modifier功能
多,你按照写入的 log 加点 fields 问题不大. fluentd 我感觉用着舒服很多,
filter/modifier 少一点. 但是我是2年前用的,现在 logstash 跟着 ElasticSearch
有过一次大升级,质量应该好不少.
如果我现在做log采集,应该会试 Heka. 看着还挺不错的.
你可以回来分享下,后续的经验.

了)
Tag
h**********r
发帖数: 3
17
来自主题: Security版 - 请问winxp 下的LOG文件怎么看
关机时出现"other people are logged onto your computer logging off may cause
them to lose data do you wish to continue?" 想查一查LOG文件看还有谁登陆,另外在
修改用户名和密码使两者都唯一并比较难猜.另外我也有装天网的免费FIREWALL呀,看来不
太惯用啊.
w********6
发帖数: 12977
18
windows xp pro, 今天发现,log in 以后,一闪,立即log out, safe mode 啥的也试
过,不行!
copy userinit.exe wsaupdater.exe 也试过,不行。
我的机器没有floppy, windows repair 的 dos 下面没法用 usb 啊,所以也没办法用
floppy copy 其他机器的 userinit.exe
请大牛们指教!
w*****s
发帖数: 122
19
[April 13, 2000] ALURe (Aggregation and Logging of User Requests) XML Specification. In draft
as of 2000-04-12, the ALURe (Aggregation and Logging of User Requests for assistance) XML
Specification proposes "a specific implementation of XML that allows any Web-based 'user assistance'
product or system to log information on specific problems that customers have. ALURe is the grammar
used for describing how a user negotiates an application's on-line User Assistance System and is d
s**********a
发帖数: 92
20
在数据库中查到的某个基因在多个sample中的表达,该用哪个数值呢, log(ratio) 还
是 log(intensity), 区别是什么, 谢谢大家!
q**j
发帖数: 10612
21
来自主题: Statistics版 - SAS log window full,跪求解决方法
this is also very good. from google:
Tip for clearing output and log windows:
Don't expect your program to work right the first time. I usually forget a "
;" or have a typo, if not some larger problem, so I often choose "Recall
last submitted", edit that file and re-run it. A problem is that the Log and
Output windows do not clear unless you make them clear, so I include this
line to clear them:
dm "out;clear;log;clear;";
It tells the display manager (dm) to go to output, clear that window, then
r******n
发帖数: 351
22
来自主题: Statistics版 - 线性回归中log tranformation
对dependent variable做一个log tranformation:
log(y) = XB + e,
where y is my dependent variable and X is my vector of independent
variables.
Now, from this regression I would like to obtain fitted/predicted
values for y.
I understand that E(y) is not equal to exp(E(log(y))).
Is the correct fitted value:
E(y) = exp( E(y) + (sigma^2)/2 ),
where sigma is the standard deviation of the error?
Is there a closed form method for obtaining the expected value
B******y
发帖数: 9065
23
来自主题: Statistics版 - 问一个不产生SAS Log的命令
现在做都一个程序循环太多,动不动就Log满了,程序运行到一半就挑出一个窗口,要
我清理掉现Log,然后才接着运行。这个手动过程太繁琐,记得以前见过一个命令,就
是让Log什么都不写,有大侠知道吗?就在Windows下用的,不希望用Batch。
f****r
发帖数: 1140
24
来自主题: Statistics版 - 问一个不产生SAS Log的命令
可以打印到word文档里。
这样子即能保存Log方便debug,又不用每次清空。
filename mylog "&filepath log.rtf";
proc printto new log=mylog;
run;
a***r
发帖数: 420
25
来自主题: Statistics版 - 请教一个log scale的运算
在写一个小script(in R),有一段是:
sum=0
for (i in 1:n) {
temp=function(i)
sum=sum+temp
}
即是把n个function运算得到的值加起来,本来是很常规的步骤而已
问题是这个function()得到的值是很小的,<10e-400,小于我OS能handle的了,值会
被记为O
于是我考虑log transform,问题是,transform之后,怎样求这些值的和呢??
我找到一个解决类似问题的source code,它是这样写的:
logsum=-Inf
for (i in 1:n) {
temp=log(function(i))
if (temp>-Inf) {
logsum=temp+log(1+exp(logsum-temp))
}
}
我愚钝,没太整明白为啥可以这样近似。。。恳求达人讲解,或者其他可行的变换,非
常感谢~~!
c**********5
发帖数: 653
26
How can I simulate the RR(P1/P2) after I got this estimation from the log-
binomial.
NoW I knew the log(RR) is normal and how can I find the mu( mu is easy to
find) and sigma for the log(RR) from the output?
And thanks.
n**m
发帖数: 156
27
来自主题: Statistics版 - res log pseudo-likelihood function
这里我看着有点晕,是proc glimmix里的一个interaction history。这个objective
function的值应该是-2*res log pseudo_likelihood function。
objective function是应该是max log-likelihood function ->min -log-likelihood
function吧,为啥iteration里objective function越来越大了。
Iteration History
Objective
Max
Iteration Restarts Subiterations Function
Change Gradient
0 0 ... 阅读全帖
s********1
发帖数: 235
28
一般什么样的数据,分析起来要做log transformation?以前读书的时候,教授在黑板
上画了一个变量的值的分布,有学生在底下说,这样的变量不能直接分析,要先做log
transformation,现在也忘了变量的分布曲线是怎样的。现在就问一下,怎样的数据,
要先做log transformation 再分析?多谢!
s********1
发帖数: 235
29
一般什么样的数据,分析起来要做log transformation?以前读书的时候,教授在黑板
上画了一个变量的值的分布,有学生在底下说,这样的变量不能直接分析,要先做log
transformation,现在也忘了变量的分布曲线是怎样的。现在就问一下,怎样的数据,
要先做log transformation 再分析?多谢!
m***a
发帖数: 1175
30
先standardization后 log transformation 和 先log transformation后
standardization 对分析数据会造成不同影响吗? 脑袋好大啊 今天
t***n
发帖数: 183
31
正在做关于用CGI 产生的 dynamic 的 web page 的 research,
想有一些 关于这种 WEB PAGE 的 ACCESS 中 某些 FRAGMENT 的
popularity 及 ACCESS PATTERN 的 统计数字, 最好能有实际的
access log 来作我的算法的输入。
想来想去, 这个BBS 的 log 应该是很合适的, 他的www
的界面是customized,
但同时对文件的ACCESS 肯定有 HOT SPOT。 不知道能不能够 用这个
BBS 的
ACCESS LOG 压。
前几天给LOOK 发了一个mail, 也没有回音, 是不是他已经不太管这
个BBS 的事拉,
有哪位大侠能帮我这个忙压。 作为回报,
我想我也许能为这个bbs的开发升级做
点什么。 另外, 要有了PAPER, 可以refer 一下这个BBS。
n*******n
发帖数: 407
32
Let X be a Poisson variable with parameter λ with a probability mass
function, f(k), where k = 0, 1, 2 … We know the index of log-concavity is
the function rf(k) = f(k)^2/(f(k-1)f(k+1) = (k+1)/k>1. So, Poisson is log-
concave.
Many books have: "The random variable Y is dispersive if, and only if, Y has
a logconcave density."
Poisson variable is discrete. Do we have: A Poisson variable X is dispersive?
Or, more specifically, let X be a Poisson variable with parameter λ1 with a
probability mass fu... 阅读全帖
g********d
发帖数: 4174
33
From Christopher Barron, cofounder and chief strategist of GOProud: “It is
good to see that after intense political pressure that President Obama has
finally come around to the Dick Cheney position on marriageequality. I am
sure, however, the president’s newly discovered support for marriage is
cold comfort to the gay couples in North Carolina. The president waited
until after North Carolina passed a constitutional amendment banning same-
sex marriage.
“This is hardly a profile in courage by Pre... 阅读全帖
e*i
发帖数: 1819
34
I can't
Oops! Your session timed out or you have not logged in. Please login. And
remember, you can check the box below to be automatically logged in next
time!
D*******0
发帖数: 4476
35
if you cannot see the 5x eBay Bucks, you may need to log out and re login.
m***l
发帖数: 45
36
要实现下面的功能,可是一点儿idea都没有,该用什么类什么思路实现
恳请java前辈指点
万分感谢!!
将类似这样的一个比较长的.log文件解析开
[18/09/2011 06:53:21:021 PM] ERROR Main 70: Running logger, watch out!
java.lang.IndexOutOfBoundsException: Index: 99, Size: 0
at java.util.ArrayList.RangeCheck(ArrayList.java:547)
[18/09/2011 06:53:21:021 PM] INFO Main 73: Running logger, watch out!
[18/09/2011 06:53:21:021 PM] INFO Main 73: Identity manager starting.
。。。。。。。
按时间解析开,比如上面的一段就是按时间分的3条
要求是:
+不能用stream把整个文件load到内存
+还要把每个时间和后面的内容解析开
+最好用普通的方法不用特别的类
其... 阅读全帖
s****i
发帖数: 391
37
家里有个fireplace,只有个gas lighter,可以生火,但是没有gas log。不知道gas
log主要是用来装饰的,还是可以增强取暖效果呢?如果取暖效果不大,就懒的买了。
t******1
发帖数: 2239
38
没有log in怎么提交review,不过我都log in了有一个杂志也没有给我thank you
letter
p***a
发帖数: 180
39
8月份交的485。EAD/AP倒是收到了,485迟迟无消息。打了National Customer Service
Center的1-800-375-5283,结果被告知NSC又back log了,485仅处理到6月16日的收件
。最气人的是,由于back log,不能file service request。我问她是不是50天(6/16
到8/5的大约间隔时间)后再打电话,被告知至少等50天,可能打也没用。还让我去
infopass预约,结果发现infopass也不能预约。郁闷中。不知道找议员是否管用。
USCIC网站上还是说485平均处理时间4个月。明明是6个月,或更长。
顺便说一下,那个电话的选项和这里帖子上列的有些不同,大家打电话的时候还是听提
示。
c*********3
发帖数: 6862
40
就是要做研究的时候,很多人喜欢把demand, supply, wage, stock price, etc. 这些
都换成log的数据,这样有什么好处呢
对了,还有log return
d**s
发帖数: 920
41
I know awstats, but we do not want to install the tool on Linux server.
We are using a web hosting company's shared host. We want a tool which can
be used to analyze the web log offline. We can download the access log file
from the web hosting company's server.
m***l
发帖数: 45
42
要实现下面的功能,可是一点儿idea都没有,该用什么类什么思路实现
恳请java前辈指点
万分感谢!!
将类似这样的一个比较长的log文件解析开
[18/09/2011 06:53:21:021 PM] ERROR Main 70: Running logger, watch out!
java.lang.IndexOutOfBoundsException: Index: 99, Size: 0
at java.util.ArrayList.RangeCheck(ArrayList.java:547)
[18/09/2011 06:53:21:021 PM] INFO Main 73: Running logger, watch out!
[18/09/2011 06:53:21:021 PM] INFO Main 73: Identity manager starting.
。。。。。。。
按时间解析开,比如上面的一段就是按时间分的3条
我翻译的题目要求是:
+不能用stream把整个文件load到内存
+还要把每个时间和后面的内容解析开
+最好用普通的方法不用特... 阅读全帖
d*******8
发帖数: 87
43
来自主题: Basketball版 - NBA LP 能几个人同时log on 吗?
看到这里大家在拼NBA LP, 请问这NBA LP可以4-5个人同时 log on吗?会只让一次一个
IP log on吗?
r********r
发帖数: 2912
44
来自主题: Running版 - 回头看我一开始的跑步log
当时连块电子表都没有,就拿普通的指针手表看一下,跑的慢了就不记时间了,这种情
况竟然持续了小半年。所以当时的log也相当简单,经常每天就一个数,直接更新到BBS
签名档里边了。所以我一开始的log就是这样的
7.16 4000m; 7.17 8000m; 7.18 5000m; 7.20 10000m; 7.23 8000m in 40'10";
7.24 10000m in 60'20"; 7.26 10000m in 52'; 7.31 5000m in 24'10"; 8.1 10000m;
那个时候觉得一周能跑20几km就挺多的了,距离上相当于两个万米了,听着好厉害。。
。所以还特别放签名档里,一方面一直能看见激励一下自己,另外很大一方面当然是炫
耀了。
回头看看真是too naive,而且那时候还真是慢啊。。。跑得多了,心态上也越来越淡
定了。当然同时也活得越来越自我,跑完了自己心里爽就够了
m******i
发帖数: 9479
45
re……
版面就不要搞log了吧,从来也没人搞过。
想搞log直接上跑个头吧
T******y
发帖数: 798
46
汗,你让俺这12,3分钟pace的人情何以堪。。。
好在俺脸皮厚,照log不误

log
m******i
发帖数: 9479
47
re……
版面就不要搞log了吧,从来也没人搞过。
想搞log直接上跑个头吧
T******y
发帖数: 798
48
汗,你让俺这12,3分钟pace的人情何以堪。。。
好在俺脸皮厚,照log不误

log
R*****t
发帖数: 2115
49
Sorry that I accidently deleted Mr. Penguin's mileage log when I tried to
update it for him this morning. So, I have to start this new log with the
scores that he has earned so far and to record the details of miles from now
on. It has been fun for Mr. Penguin to take part in this special activity:
-).
date days score records
1/15/2014 1 1 1
1/16/2014 2 1 1
1/17/2014 3 1 1
1/18/2014 4 1 1
1/19/2014 5 1 1
1/20/2014 ... 阅读全帖
g**u
发帖数: 13
50
哪里有download MudLIB ?? (for BSD 或是LINUX的都可.. ) 如果不方便的话,也可以mail告诉我的说。
下面是log
% cat debug.log
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)