Open main menu

OpenVZ Virtuozzo Containers Wiki β

Difference between revisions of "Vzstats/en"

< Vzstats
 
(6 intermediate revisions by the same user not shown)
Line 84: Line 84:
 
* Periodically, once a month, from cron, if crond is running.
 
* Periodically, once a month, from cron, if crond is running.
  
Вы также можете запустить его в ручную (<code>/usr/sbin/vzstats</code> под root) , если хотите обновить статистику по Вашему серверу.
+
You can also run it manually (<code>/usr/sbin/vzstats</code> as root) if you like to update your stats on server.
  
=== Как отключить отправку ===
+
=== How to opt-out ===
  
Вы можете полностью деактивировать vzstats клиент на Вашем компьютере выполнив следующую команду:
+
You can completely disable vzstats client on a machine by executing the following command:
  
 
  touch /etc/vz/vzstats-disable
 
  touch /etc/vz/vzstats-disable
  
Если Вы захотите включить его снова просто выполните:
+
If you want to re-enable vzstats, just do
  
 
  rm -f /etc/vz/vzstats-disable
 
  rm -f /etc/vz/vzstats-disable
  
== Сервер ==
+
== Server ==
  
Сервер состоит из следующих частей:
+
Server consists of the following components:
* база данных (MySQL)
+
* database (MySQL)
* просто скрипт для генерации UUID
+
* trivial UUID generation script
* скрипт, который сохраняет переданный файл
+
* submission receiver script, which just stores the received file
* скрипт для обработки и сохранения данных в базу данных
+
* submission processing scripts, populating the database
* веб-интерфейс (http://stats.openvz.org/), который показывает статистику из базы данных
+
* web interface (http://stats.openvz.org/), showing statistics from the database
  
== Также смотрите ==
+
== See also ==
  
 
* http://stats.openvz.org
 
* http://stats.openvz.org

Latest revision as of 16:54, 4 January 2016


vzstats is a tool to gather OpenVZ usage statistics. This page tries to explain it, mostly in form of questions and answers.

vzstats consists of a client and a server. A client (vzstats package) is installed on an OpenVZ server (hardware node), so there are many clients. There is only one server, it is deployed at stats.openvz.org.

Contents

GeneralEdit

What is the purpose of vzstats?Edit

We, OpenVZ developers, are curious. We want to know more about our users. We want some stats.

We would like to know how many OpenVZ servers are there in the wild. Since OpenVZ is free software available from many places, there is no easy way to find out.

We want to know which OpenVZ kernels are our users run, say what is the proportion of RHEL5 to RHEL6 kernel user base.

We would like to see how many people use new technologies such as ploop and vswap.

It would be good to know for how many CPU cores, or number of containers, or gigabytes of disk space, should we optimize.

Finally, we share all that information back to you.

Why do I need to participate?Edit

Maybe because you want to help OpenVZ out just a bit. Because sharing is good. Or perhaps you are just a good person.

Why is it opt-out rather than opt-in?Edit

We just don't have a good place (such as installer or some GUI) to ask you for opt-in.

What about my privacy?Edit

We are trying to keep the client very simple, so you can see for yourself what information is gathered and how it is being sent.

All submissions are anonymous and is not including your IPs, MAC addresses, host names etc.

Except for the information gathered, server knows client's UUID and IP.

UUID is random, it's only purpose to track each client as a separate distinct entity.

Client IP address is naturally known to the server. It is stored in httpd server logs but is not used for statistics.

ClientEdit

How the client works?Edit

When vzstats is executed, it does the following:

  1. checks if UUID is obtained; asks the server for one if it's not;
  2. runs scripts from /usr/libexec/vzstats directory;
  3. collects their output into separate text files, one per script;
  4. creates a tarball with all these text files
  5. sends this tarball together with UUID to the stats server, stats.openvz.org

Where can I see client source code?Edit

Client is written in shell, so just check /usr/sbin/vzstats script.

There is a git repository for client code, see http://git.openvz.org/?p=vzstats;a=summary

What is UUID?Edit

It's just a unique random ID, in UUID v4 format [1]. This is an example of UUID: 285ad6e8-fe62-433c-be2a-643e1c54b315

When vzstats is executed for the first time, it checks that there is no UUID, asks the stats server for one and stores it locally.

What info is collected?Edit

For details, check the scripts in /usr/libexec/vzstats directory.

DownloadEdit

For latest and previous versions of vzstats see Download/vzstats.

Source codeEdit

https://src.openvz.org/projects/OVZL/repos/vzstats/browse

When it is run?Edit

vzstats run in the following cases

  • Upon installation, if OpenVZ is already installed on the system
  • When any of OpenVZ packages are updated (vzctl, vzquota, ploop, kernel)
  • Periodically, once a month, from cron, if crond is running.

You can also run it manually (/usr/sbin/vzstats as root) if you like to update your stats on server.

How to opt-outEdit

You can completely disable vzstats client on a machine by executing the following command:

touch /etc/vz/vzstats-disable

If you want to re-enable vzstats, just do

rm -f /etc/vz/vzstats-disable

ServerEdit

Server consists of the following components:

  • database (MySQL)
  • trivial UUID generation script
  • submission receiver script, which just stores the received file
  • submission processing scripts, populating the database
  • web interface (http://stats.openvz.org/), showing statistics from the database

See alsoEdit