ORE Studio 0.0.4
Loading...
Searching...
No Matches
resource.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 *
3 * Copyright (C) 2025 Marco Craveiro <marco.craveiro@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free Software
7 * Foundation; either version 3 of the License, or (at your option) any later
8 * version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 *
19 */
20#ifndef ORES_TELEMETRY_DOMAIN_RESOURCE_HPP
21#define ORES_TELEMETRY_DOMAIN_RESOURCE_HPP
22
23#include <cstdint>
24#include <optional>
25#include <string>
26#include "ores.telemetry/domain/attribute_value.hpp"
27
29
39struct resource final {
52
56 std::optional<std::string> service_name() const;
57
61 std::optional<std::string> host_name() const;
62
66 std::optional<std::string> host_id() const;
67
78 static resource from_environment(std::string_view service_name,
79 std::string_view service_version);
80};
81
82}
83
84#endif
Domain types for telemetry and observability.
Definition attribute_value.hpp:29
std::map< std::string, attribute_value > attributes
A collection of attributes as key-value pairs.
Definition attribute_value.hpp:52
Represents the entity producing telemetry data.
Definition resource.hpp:39
attributes attrs
Key-value pairs describing the resource.
Definition resource.hpp:51
std::optional< std::string > host_name() const
Gets the host name attribute if present.
Definition resource.cpp:39
std::optional< std::string > host_id() const
Gets the host ID (machine identifier) if present.
Definition resource.cpp:49
std::optional< std::string > service_name() const
Gets the service name attribute if present.
Definition resource.cpp:29
static resource from_environment(std::string_view service_name, std::string_view service_version)
Creates a resource by detecting the local environment.
Definition resource.cpp:59