Skip to content
Suhas S edited this page Feb 19, 2021 · 9 revisions

Welcome to the TutorialTelemetry wiki! This is a tutorial module to use telemetry in Terasology.

The main Terasology wiki can be found at https://github.com/MovingBlocks/Terasology/wiki as well as https://oniatus.github.io/

You can find more information about the telemetry server at https://github.com/GabrielXia/telemetry/wiki

Overview

Telemetry system in Terasology tracks metrics and sends them to telemetry server. This system could help developers gather useful information and so improve the game. Now the server can be visited on https://telemetry.terasology.com

The metrics existed now include system metric and gameplay metric. You can find engine metrics under org.terasology.telemetry.metrics package

When developing telemetry, we pay great attention to information security:

  • We try our best to avoid sending user's sensitive information such ip address, name, etc.
  • Users are well informed about the telemetry system
  • Users can see all the metrics in the metrics menu and turn on/off the telemetry. Users can even choose which fields they want to send

Tutorial

Here is the tutorials for using telemetry:

  1. Non map type Metric
  2. Map type Metric
  3. Upload schema
  4. Track Metric

Let's start to create a new metric First Step: Create a non map type metric

Clone this wiki locally