WAPT Starter?

Share your tips or issues concerning the WAPT Console or WAPT Agent here
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Answer
jcgensam
Messages: 11
Registration: March 24, 2025 - 4:39 PM

September 19, 2025 - 09:58

Hello,

does WAPT Starter still exist and is it still maintained? I can't find a direct installer on the WAPT website, apart from a WAPT package specifically for updating WAPT Starter (I can use it for the installation, of course, but it's less convenient than a dedicated installer, and the lack of an official installer is puzzling).

A related question: what telemetry data is sent to the Tranquil IT servers?

Thank you :-)

. Best regards,

JC
User avatar
blemoigne
Messages: 178
Registration: July 17, 2020 - 11:29

October 28, 2025 - 3:07 PM

Good morning,
It is located here: https://wapt.tranquil.it/wapt/releases/wapt-2.6/
For telemetry, the result from the API /api/v3/usage_statistics is sent:

Code: Select all

C:\Users\administrator.BLEMOIGNE> wapt-get server-request /api/v3/usage_statistics --wapt-server-user=admin
Server: https://srvwapt.blemoigne.lan
Server CABundle: C:\Program Files (x86)\wapt\ssl\server\srvwapt.blemoigne.lan.crt
Server client certificate: C:\Program Files (x86)\wapt\private\1a8f64f4-333b-4c6a-bfef-dd8b609b73b5.crt
Server client key: C:\Program Files (x86)\wapt\private\1a8f64f4-333b-4c6a-bfef-dd8b609b73b5.pem

Basic realm="Login Required"
Waptserver Password: ************************
{
        "success": true,
        "msg": "Anomnymous usage statistics",
        "result": {
                "uuid": "6f325138-5d05-11e9-8d4b-0246ca169bbe",
                "platform": "Linux",
                "architecture":
                [
                        "64bit",
                        "ELF"
                ],
                "version": "2.6.1",
                "date": "2025-10-28T14:02:28.152391",
                "edition": "enterprise",
                "git_hash": "2.6.1.17550",
                "hosts_count": 3,
                "oldest_query": "2025-10-28T12:36:39.999991",
                "newest_query": "2025-10-28T13:58:16.493737",
                "packages_count_max": null,
                "packages_count_avg": null,
                "packages_count_ok": null,
                "hosts_count_has_error": null,
                "hosts_count_need_upgrade": null
        },
        "request_time": "0.004509449005126953"
}
Sending these statistics can be disabled in waptconsole.ini:

Code: Select all

send_usage_report=0
Answer