sFlow-RT
sFlow-RT™ incorporates InMon's asynchronous analytics technology (patent pending), delivering real-time visibility to Software Defined Networking (SDN), DevOps and Orchestration stacks and enabling new classes of performance aware application such as load balancing, DDoS protection, and workload placement.
The sFlow-RT analytics engine receives a continuous telemetry stream from sFlow Agents embedded in network devices, hosts and applications and converts them into actionable metrics, accessible through the RESTflow™ API. The RESTflow API makes it easy for to configure customized measurements, retrieve metrics, set thresholds, and receive notifications. Applications can be external, written in any language that supports HTTP/REST calls, or internal, using sFlow-RT's embedded JavaScript/ECMAScript.
Network visibility is essential to understanding the interaction between scale-out services running on cloud infrastructure. By combining network, host and application monitoring within an integrated analytics pipeline, sFlow-RT provides visibility into applications and the server and network resources needed to sustain performance.
Download
Visit sFlow-RT.com to download sFlow-RT software and applications.
Support
Please post questions, suggestions and applications to the sFlow-RT group.
Commercial use
Contact sales@inmon.com to discuss commercial licensing options for sFlow-RT.
===================================================
http://sflow-rt.com/download.php
Download and install
sFlow-RT requires Java 1.7+. The following commands download, install and run the software:
wget http://www.inmon.com/products/sFlow-RT/sflow-rt.tar.gz
tar -xvzf sflow-rt.tar.gz
cd sflow-rt
./start.sh
Alternatively, the following command runs sFlow-RT in a Docker container (see sflow/sflow-rt):
docker run -p 8008:8008 -p 6343:6343/udp -d sflow/sflow-rt
Use a web browser to connect to http://localhost:8008 to interact with the REST API.
The software is also available as RPM and DEB packages:
Software is installed under the path /usr/local/sflow-rt/ and log files are directed to /usr/local/sflow-rt/log/sflow-rt-<N>.log
Note There are no access controls built into sFlow-RT. However, HTTP access can be restricted to the local host by settings the http.hostname property to 127.0.0.1 and a reverse proxy can then be used to secure remote access to the API. For example, the following Apache configuration settings make the interface accessible on port 80 under the path /sflow-rt/
<IfModule mod_proxy.c>
ProxyRequests off
ProxyVia off
ProxyPass /sflow-rt/ http://127.0.0.1:8008/ retry=0 timeout=5
ProxyPassReverse /sflow-rt/ http://127.0.0.1:8008/
</IfModule>
<Location /sflow-rt/>
# insert access policy
</Location>
Please read and accept the License Agreement before downloading this software.
Applications
The following command (run in the sFlow-RT home directory) downloads and installs an application:
./get-app.sh sflow-rt dashboard-example
The following applications are currently available on GitHub:
User | Application | Description |
---|---|---|
sflow-rt | dashboard-example | Real-time dashboard example |
sflow-rt | flow-graph | Real-time graph of network associations |
sflow-rt | top-flows | Real-time top network flows table |
sflow-rt | svg-weather | Real-time network weathermap example |
sflow-rt | fabric-view | Real-time visibility for leaf / spine ECMP fabrics |
sflow-rt | ddos-blackhole | Real-time DDoS flood mitigation using null route |
sflow-rt | active-routes | Real-time active BGP route cache |
sflow-rt | sflow-test | Test data center switch sFlow implementation |
sflow-rt | ix-metrics | Real-time monitoring of Internet Exchange (IX) traffic |
sflow-rt | mininet-dashboard | Real-time dashboard for Mininet |
sflow-rt | world-map | Real-time traffic displayed on world map |
pphaal | ovs-2015 | Overlay/underlay network virtualization visibility demo |
pphaal | sc15-weather | SC15 SCinet real-time weathermap |
Writing Applications provides an introduction describing the structure of an sFlow-RT application. Post information on new applications to the sFlow-RT group to have them listed.
Support
Please post questions, suggestions and applications to the sFlow-RT group.
Production use
Contact sales@inmon.com to discuss production licensing options for sFlow-RT.
sFlow-RT的更多相关文章
- 华为交换机sflow配置
华为交换机sflow功能配置 1.配置交换机的sflow流发送 [系统视图]sflow agen ip x.x.x.x 设置sflow输出源 [系统视图]sflow ...
- sFlow
http://www.sflow.org/developers/specifications.php http://www.inmon.com/technology/index.php sFlow s ...
- curl 查看一个web站点的响应时间(rt)
1. curl 查看web站点rt curl -o /dev/null -s -w %{time_namelookup}::%{time_connect}::%{time_starttransfer} ...
- Workspace defines a VM that does not contain a valid jre/lib/rt.jar: C:\Program Files\Java\jre7
Maven编译时两则信息 (Workspace以及default classpath container) 博客分类: Java 使用Maven一年有余,却总是被两则不起眼的编译信息困扰,终想查明 ...
- 自己写方法处理WP(RT)后退键事件处理
不用微软的NavigationHelper,自己写方法处理WP后退键事件 在WP8.1(RT)程序中,你会发现按下后退键时,应用会直接退出,变为后台运行,这是因为RT与Silverlight对后退键的 ...
- 高并发应用中客户端等待、响应时间的推算,及RT/QPS概念辨析
高并发应用中客户端等待.响应时间的推算,及RT/QPS概念辨析 对于一个网站,已知服务端的服务线程数和处理单个请求所需的时间时,该如何算出高并发时用户从点击链接到收到响应的时间?注意这个时间并不等于服 ...
- cpu进程调度---RT Throttling【转】
转自:http://book.2cto.com/201302/16291.html RT Throttling是对分配给实时进程的CPU时间进行限制的功能.使用实时调度策略的进程由于bug等出现不可控 ...
- RT/Metro商店应用如何如何获取图片的宽高
RT/Metro商店应用如何如何获取图片的宽高 var file = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms ...
- JRE下的rt.jar、tools.jar
JRE下的rt.jar: 这个文件是极为重要的一个文件,rt是runtime的缩写,即运行时的意思.是java程序在运行时必不可少的文件. 里面包含了java程序员常用的包,如java.lang,ja ...
- Installing your app on your Windows RT device
Alright… so my app is almost finished and I want to install it for real on my Surface tablet. How do ...
随机推荐
- 两种JavaScript的AES加密方式(可与Java相互加解密)
由于JavaScript属于弱类型脚本语言,因此当其与强类型的后台语言进行数据交互时会产生各种问题,特别是加解密的操作.本人由于工作中遇到用js与Java进行相互加解密的问题,在网上查了很多资料及代码 ...
- HTML5学习之 开发工具
Notepad++.Editplus 是常用的开发编辑器.这些在Window系统下,比较容易找到,但是在MAC系统下,有的是收费的,有的是不支持.我开发的时候,用的是TextWrangler,如图: ...
- ArcSDE安装注意事项(二)
上次安装的arcsde9.3后尝试往本机sde数据库中导入一个区局的数据库,但是每次都是导到一半就卡死不动,也没有报任何的错误,因此安装了arcsde9.3 sp2补丁,安装补丁后连接sde(非直连方 ...
- SharePoint 2013 Excel Services REST API介绍
前言:Excel Services 中的 REST API 是 Microsoft SharePoint Server 2010 的新增项.利用 REST API,可通过 URL 直接访问工作簿部件或 ...
- Play Framework 完整实现一个APP(三)
1.添加Post类 package models; import java.util.*; import javax.persistence.*; import play.db.jpa.*; @Ent ...
- 使用PhoneGap开启移动开发之旅
移动市场风起云涌,只是好像和悲催的.net程序员隔绝.我们内心中一直期待的Windows Phone终究不能匹及windows, 随着时间的流逝,windows phone越来越像扶不起的阿斗,连微软 ...
- iPhone被盗后怎么?这篇文章只办针对iOS7后的系统
中午准备去吃饭的时候,今天看到Tungbaby的手机被盗后怎么做?http://www.jianshu.com/p/f13f49cd9b90 碰巧我的手机也被盗了.就来分享下我的经验吧.由于我当时是在 ...
- 使用js 设置组合快捷键
使用js 设置组合快捷键 使用js设置快捷键的本质就是获得你要设置的这个键的keyCode 的值,如果要加ctrl,alt,shift,那么就添加一个ctrlkey,altKey,shiftKey来判 ...
- 萌新笔记——C++里将string类字符串(utf-8编码)分解成单个字(可中英混输)
最近在建词典,使用Trie字典树,需要把字符串分解成单个字.由于传入的字符串中可能包含中文或者英文,它们的字节数并不相同.一开始天真地认为中文就是两个字节,于是很happy地直接判断当前位置的字符的A ...
- linux文件拼接命令 paste
paste [文件名1 [文件名2] --] [选项] -s 把文件以行的方式拼接 -d 制定分隔符,默认以制表符分隔 [root@dagege ~]# >.txt [root@dagege ~ ...