sapling/eden/fs/telemetry/SessionInfo.h
Chad Austin 987dd994b6 add a StructuredLogger instance to ServerState
Summary:
Allocate and hook up a StructuredLogger at startup if the EdenConfig
has the appropriate values set.

Reviewed By: simpkins

Differential Revision: D18071821

fbshipit-source-id: 3996b6644bbf0c16bb3b9950d57a79d4619a1656
2019-11-13 15:23:38 -08:00

34 lines
654 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include <string>
namespace facebook {
namespace eden {
struct SessionInfo {
std::string username;
std::string hostname;
std::string os;
std::string osVersion;
std::string edenVersion;
};
std::string getOperatingSystemName();
std::string getOperatingSystemVersion();
/**
* Returns the result of calling gethostname() in a std::string. Throws an
* exception on failure.
*/
std::string getHostname();
} // namespace eden
} // namespace facebook