Skip to content

Instantly share code, notes, and snippets.

@baydam
Forked from rictorres/vector-install.md
Last active August 29, 2015 14:20
Show Gist options
  • Save baydam/a4642c9fcce6a00d99c1 to your computer and use it in GitHub Desktop.
Save baydam/a4642c9fcce6a00d99c1 to your computer and use it in GitHub Desktop.

Revisions

  1. @rictorres rictorres revised this gist Apr 14, 2015. 1 changed file with 1 addition and 2 deletions.
    3 changes: 1 addition & 2 deletions vector-install.md
    Original file line number Diff line number Diff line change
    @@ -16,9 +16,8 @@ $ sudo apt-get install flex
    $ sudo apt-get install bison
    ```

    #### Extras
    #### libmicrohttpd-dev
    ```sh
    $ sudo apt-get install libmicrohttpd
    $ sudo apt-get install libmicrohttpd-dev
    ```

  2. @rictorres rictorres revised this gist Apr 14, 2015. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion vector-install.md
    Original 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
    ## Host machine

    ### PCP Requirements
    Vector requires [PCP](http://pcp.io/) to collect data.

    #### Lex
    ```sh
  3. @rictorres rictorres revised this gist Apr 14, 2015. 1 changed file with 5 additions and 5 deletions.
    10 changes: 5 additions & 5 deletions vector-install.md
    Original 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
  4. @rictorres rictorres revised this gist Apr 14, 2015. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions vector-install.md
    Original 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
  5. @rictorres rictorres created this gist Apr 14, 2015.
    52 changes: 52 additions & 0 deletions vector-install.md
    Original 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