Installing the metrics module | Tarantool
Administration Monitoring Installing the metrics module

Installing the metrics module

Note

Since Tarantool version 2.11.1, the installation is not required.

Usually, all dependencies are included in the *.rockspec file of the application. All dependencies are installed from this file. To do this:

  1. Add the metrics module to the dependencies in the .rockspec file:

    dependencies = {
        ...
        'metrics == 1.0.0',
        ...
    }
    
  2. Install the missing dependencies:

    tt rocks make
    # OR #
    cartridge build
    

To install only the metrics module, execute the following commands:

  1. Set current folder:

    $ cd ${PROJECT_ROOT}
    
  2. Install the missing dependencies:

    $ tt rocks install metrics <version>
    

    where version – the necessary version number. If omitted, then the version from the master branch is installed.

Found what you were looking for?
Feedback