Packages
Prometheus.io process collector Collector exports the current state of process metrics including cpu, memory, file descriptor usage and native threads count as well as the process start and up times.
Retired package: Release invalid - breaks rebar3 compatibility
Current section
Files
Jump to
Current section
Files
c_src/prometheus_exceptions.h
#pragma once
#include <stdexcept>
namespace Prometheus
{
class ProcessInfoException : public std::runtime_error
{
public:
ProcessInfoException() : std::runtime_error("ProcessInfoException") {}
};
}