摘要:
由于项目需要定制开发kibana,因此需要编译kibana,在开发环境下运行。 注意:必须下载kibana 5.5的源码才能正常编译,下载release或者snapshot版本是不行的,运行npm start会因为无scripts目录报错。 Setting Up kibana Development 阅读全文
摘要:
10 Minutes to pandas This is a short introduction to pandas, geared mainly for new users. You can see more complex recipes in the Cookbook Customarily 阅读全文
摘要:
DNS Service Discovery is a way of using standard DNS programming interfaces, servers, and packet formats to browse the network for services. If you th 阅读全文
摘要:
lines = ''' 1.2.2.3 1.21.29.19.... ''' cnt = {} for line in lines.split(): if line not in cnt: cnt[line] = 0 cnt[line] += 1 print cnt out = cnt.items() out.sort(lambda a,b:-cmp(a[1],b[1])) ... 阅读全文
摘要:
Vulnerability Note VU#550620 Multicast DNS (mDNS) implementations may respond to unicast queries originating outside the local link Original Release d 阅读全文