Man page - sg_get_host_info(3)
Packages contains this manual
- sg_get_error_details(3)
- sg_vector_create(3)
- statgrab(3)
- sg_free_load_stats(3)
- sg_get_page_stats_r(3)
- sg_comp_destroy(3)
- sg_get_swap_stats_r(3)
- sg_get_cpu_stats_r(3)
- sg_init(3)
- sg_get_disk_io_stats_r(3)
- sg_get_network_io_stats(3)
- sg_free_network_io_stats(3)
- sg_set_valid_filesystems(3)
- sg_free_swap_stats(3)
- sg_get_swap_stats(3)
- sg_get_network_iface_stats(3)
- sg_get_error_arg(3)
- sg_get_disk_io_stats(3)
- sg_get_valid_filesystems(3)
- sg_internal-intro(3)
- sg_get_cpu_stats_diff(3)
- sg_strperror(3)
- sg_str_error(3)
- sg_get_cpu_stats_diff_between(3)
- sg_free_network_iface_stats(3)
- sg_vector_clear(3)
- sg_get_host_info(3)
- sg_comp_init(3)
- sg_get_page_stats_diff(3)
- sg_process_compare_size(3)
- sg_process_compare_cpu(3)
- sg_unlock_mutex(3)
- sg_fs_compare_device_name(3)
- sg_fs_compare_mnt_point(3)
- sg_free_user_stats(3)
- sg_free_host_info(3)
- sg_get_user_stats(3)
- sg_get_fs_stats_diff_between(3)
- sg_set_error(3)
- sg_get_fs_stats_diff(3)
- sg_free_mem_stats(3)
- sg_vector_compute_diff(3)
- sg_get_page_stats_diff_between(3)
- sg_vector_clone_into(3)
- sg_get_network_io_stats_diff(3)
- sg_get_network_io_stats_diff_between(3)
- sg_free_cpu_stats(3)
- sg_get_cpu_percents_r(3)
- sg_get_process_count_r(3)
- sg_get_network_iface_stats_r(3)
- sg_get_error(3)
- sg_get_fs_stats(3)
- sg_intro(3)
- sg_get_network_io_stats_r(3)
- sg_snapshot(3)
- sg_vector_clone(3)
- sg_get_mem_stats(3)
- sg_get_cpu_percents_of(3)
- sg_process_compare_pid(3)
- sg_free_page_stats(3)
- sg_get_error_errno(3)
- sg_get_process_stats_r(3)
- sg_get_process_count(3)
- sg_free_process_count(3)
- sg_process_compare_name(3)
- sg_get_mem_stats_r(3)
- sg_lock_mutex(3)
- sg_set_error_with_errno_code(3)
- libstatgrab(3)
- sg_free_stats_buf(3)
- sg_get_load_stats_r(3)
- sg_shutdown(3)
- sg_vector_resize(3)
- sg_get_page_stats(3)
- sg_get_process_count_of(3)
- sg_vector_free(3)
- sg_get_process_stats(3)
- sg_network_io_compare_name(3)
- sg_prove_vector(3)
- sg_network_iface_compare_name(3)
- sg_process_compare_gid(3)
- sg_disk_io_compare_traffic(3)
- sg_comp_get_tls(3)
- sg_disk_io_compare_name(3)
- sg_get_cpu_stats(3)
- sg_get_nelements(3)
- sg_process_compare_res(3)
- sg_drop_privileges(3)
- sg_get_load_stats(3)
- sg_get_fs_stats_r(3)
- sg_process_compare_uid(3)
- sg_global_lock(3)
- sg_free_disk_io_stats(3)
- sg_get_disk_io_stats_diff(3)
- sg_process_compare_time(3)
- sg_clear_error(3)
- sg_set_error_with_errno(3)
- sg_free_fs_stats(3)
- sg_get_cpu_percents(3)
- sg_get_user_stats_r(3)
- sg_get_host_info_r(3)
- sg_get_disk_io_stats_diff_between(3)
- sg_global_unlock(3)
apt-get install libstatgrab-dev
Manual
sg_get_host_info
NAMESYNOPSIS
DESCRIPTION
RETURN VALUES
SEE ALSO
WEBSITE
NAME
sg_get_host_info, sg_get_host_info_r, sg_free_host_info - get general operating system statistics
SYNOPSIS
#include <statgrab.h>
sg_host_info * sg_get_host_info (size_t * entries );
sg_host_info * sg_get_host_info_r (size_t * entries );
sg_error sg_free_host_info (sg_host_info * data );
DESCRIPTION
These calls return details on the operating system and the machine itβs running on.
|
API Shortcut |
The sg_host_info buffer received from sg_get_host_info_r () must be freed using sg_free_host_info () when not needed any more. The caller is responsible for doing it.
RETURN VALUES
The structure returned is of type sg_host_info.
typedef enum {
sg_unknown_configuration = 0,
sg_physical_host,
sg_virtual_machine,
sg_paravirtual_machine,
sg_hardware_virtualized
} sg_host_state;
typedef struct{
char *os_name;
char *os_release;
char *os_version;
char *platform;
char *hostname;
unsigned bitwidth;
sg_host_state host_state;
unsigned ncpus;
unsigned maxcpus;
time_t uptime;
time_t systime;
}sg_host_info;
os_name
The operating system name. (eg. SunOS or Linux)
os_release
The operating system release. (eg. 5.8 or 5.9 or Solaris)
os_version
The version level of the OS.
platform
The hardware platform (architecture) the OS runs on.
hostname
The name of the machine.
|
uptime |
The uptime of the machine in seconds. |
systime
The timestamp when the above stats where collected in seconds since epoch
SEE ALSO
statgrab (3)
WEBSITE
β¨ https://libstatgrab.org/β©