mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
21 lines
393 B
C++
21 lines
393 B
C++
#ifndef TELEMTDIAGNOSTICS_H
|
|
#define TELEMTDIAGNOSTICS_H
|
|
|
|
#include "containerDiagnostics.h"
|
|
|
|
#include <QString>
|
|
|
|
namespace amnezia
|
|
{
|
|
struct TelemtDiagnostics : ContainerDiagnostics
|
|
{
|
|
bool upstreamReachable = false;
|
|
int clientsConnected = -1;
|
|
QString lastConfigRefresh;
|
|
QString statsEndpoint;
|
|
};
|
|
|
|
} // namespace amnezia
|
|
|
|
#endif // TELEMTDIAGNOSTICS_H
|