-
-
Save baydam/a4642c9fcce6a00d99c1 to your computer and use it in GitHub Desktop.
Revisions
-
rictorres revised this gist
Apr 14, 2015 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,9 +16,8 @@ $ sudo apt-get install flex $ sudo apt-get install bison ``` #### libmicrohttpd-dev ```sh $ sudo apt-get install libmicrohttpd-dev ``` -
rictorres revised this gist
Apr 14, 2015 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,10 @@ # How to Install Vector on Ubuntu 14 [Vector](https://github.com/Netflix/vector) is an on-host performance monitoring framework which exposes hand picked high resolution metrics to every engineer’s browser. [More here](http://techblog.netflix.com/2015/04/introducing-vector-netflixs-on-host.html). ## Host machine ### PCP Requirements Vector requires [PCP](http://pcp.io/) to collect data. #### Lex ```sh -
rictorres revised this gist
Apr 14, 2015 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,18 +10,18 @@ $ sudo apt-get install flex ``` #### Yacc (from Bison package) ```sh $ sudo apt-get install bison ``` #### Extras ```sh $ sudo apt-get install libmicrohttpd $ sudo apt-get install libmicrohttpd-dev ``` #### User ```sh $ sudo adduser pcp ``` @@ -36,13 +36,13 @@ $ sudo make install ``` ### PCP Init ```sh $ sudo service pmcd start $ sudo service pmwebd start ``` ## Client ```sh $ git clone https://github.com/Netflix/vector.git $ cd vector $ bower install -
rictorres revised this gist
Apr 14, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ ### PCP Requirements #### Lex ```sh $ sudo apt-get install flex ``` @@ -26,7 +26,7 @@ $ sudo adduser pcp ``` ### PCP Build & Install ```sh $ git clone git://git.pcp.io/pcp $ cd pcp -
rictorres created this gist
Apr 14, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,52 @@ # How to Install Vector on Ubuntu 14 ## Host ### PCP Requirements #### Lex ``` $ sudo apt-get install flex ``` #### Yacc (from Bison package) ``` $ sudo apt-get install bison ``` #### Extras ``` $ sudo apt-get install libmicrohttpd $ sudo apt-get install libmicrohttpd-dev ``` #### User ``` $ sudo adduser pcp ``` ### PCP Build & Install ``` $ git clone git://git.pcp.io/pcp $ cd pcp $ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var $ make $ sudo make install ``` ### PCP Init ``` $ sudo service pmcd start $ sudo service pmwebd start ``` ## Client ``` $ git clone https://github.com/Netflix/vector.git $ cd vector $ bower install $ npm install $ gulp ``` Available on http://localhost:8080