mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 11:49:00 +08:00
29 lines
866 B
C++
29 lines
866 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "vcpkg_Util.h"
|
|
|
|
namespace vcpkg::Metrics
|
|
{
|
|
struct Metrics : Util::ResourceBase
|
|
{
|
|
void set_send_metrics(bool should_send_metrics);
|
|
void set_print_metrics(bool should_print_metrics);
|
|
void set_user_information(const std::string& user_id, const std::string& first_use_time);
|
|
void init_user_information(std::string& user_id, std::string& first_use_time);
|
|
|
|
void track_metric(const std::string& name, double value);
|
|
void track_property(const std::string& name, const std::string& value);
|
|
void track_property(const std::string& name, const std::wstring& value);
|
|
|
|
void upload(const std::string& payload);
|
|
void flush();
|
|
};
|
|
|
|
extern Util::LockGuarded<Metrics> g_metrics;
|
|
|
|
std::wstring get_SQM_user();
|
|
bool get_compiled_metrics_enabled();
|
|
}
|