# SystemInfo ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | Option<**String**> | Unique identifier of the daemon.


> **Note**: The format of the ID itself is not part of the API, and > should not be considered stable. | [optional] **containers** | Option<**i32**> | Total number of containers on the host. | [optional] **containers_running** | Option<**i32**> | Number of containers with status `\"running\"`. | [optional] **containers_paused** | Option<**i32**> | Number of containers with status `\"paused\"`. | [optional] **containers_stopped** | Option<**i32**> | Number of containers with status `\"stopped\"`. | [optional] **images** | Option<**i32**> | Total number of images on the host. Both _tagged_ and _untagged_ (dangling) images are counted. | [optional] **driver** | Option<**String**> | Name of the storage driver in use. | [optional] **driver_status** | Option<[**Vec>**](array.md)> | Information specific to the storage driver, provided as \"label\" / \"value\" pairs. This information is provided by the storage driver, and formatted in a way consistent with the output of `docker info` on the command line.


> **Note**: The information returned in this field, including the > formatting of values and labels, should not be considered stable, > and may change without notice. | [optional] **docker_root_dir** | Option<**String**> | Root directory of persistent Docker state. Defaults to `/var/lib/docker` on Linux, and `C:\\ProgramData\\docker` on Windows. | [optional] **plugins** | Option<[**crate::models::PluginsInfo**](PluginsInfo.md)> | | [optional] **memory_limit** | Option<**bool**> | Indicates if the host has memory limit support enabled. | [optional] **swap_limit** | Option<**bool**> | Indicates if the host has memory swap limit support enabled. | [optional] **kernel_memory_tcp** | Option<**bool**> | Indicates if the host has kernel memory TCP limit support enabled. This field is omitted if not supported. Kernel memory TCP limits are not supported when using cgroups v2, which does not support the corresponding `memory.kmem.tcp.limit_in_bytes` cgroup. | [optional] **cpu_cfs_period** | Option<**bool**> | Indicates if CPU CFS(Completely Fair Scheduler) period is supported by the host. | [optional] **cpu_cfs_quota** | Option<**bool**> | Indicates if CPU CFS(Completely Fair Scheduler) quota is supported by the host. | [optional] **cpu_shares** | Option<**bool**> | Indicates if CPU Shares limiting is supported by the host. | [optional] **cpu_set** | Option<**bool**> | Indicates if CPUsets (cpuset.cpus, cpuset.mems) are supported by the host. See [cpuset(7)](https://www.kernel.org/doc/Documentation/cgroup-v1/cpusets.txt) | [optional] **pids_limit** | Option<**bool**> | Indicates if the host kernel has PID limit support enabled. | [optional] **oom_kill_disable** | Option<**bool**> | Indicates if OOM killer disable is supported on the host. | [optional] **ipv4_forwarding** | Option<**bool**> | Indicates IPv4 forwarding is enabled. | [optional] **bridge_nf_iptables** | Option<**bool**> | Indicates if `bridge-nf-call-iptables` is available on the host. | [optional] **bridge_nf_ip6tables** | Option<**bool**> | Indicates if `bridge-nf-call-ip6tables` is available on the host. | [optional] **debug** | Option<**bool**> | Indicates if the daemon is running in debug-mode / with debug-level logging enabled. | [optional] **nfd** | Option<**i32**> | The total number of file Descriptors in use by the daemon process. This information is only returned if debug-mode is enabled. | [optional] **n_goroutines** | Option<**i32**> | The number of goroutines that currently exist. This information is only returned if debug-mode is enabled. | [optional] **system_time** | Option<**String**> | Current system-time in [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format with nano-seconds. | [optional] **logging_driver** | Option<**String**> | The logging driver to use as a default for new containers. | [optional] **cgroup_driver** | Option<**String**> | The driver to use for managing cgroups. | [optional][default to Cgroupfs] **cgroup_version** | Option<**String**> | The version of the cgroup. | [optional][default to Variant1] **n_events_listener** | Option<**i32**> | Number of event listeners subscribed. | [optional] **kernel_version** | Option<**String**> | Kernel version of the host. On Linux, this information obtained from `uname`. On Windows this information is queried from the HKEY_LOCAL_MACHINE\\\\SOFTWARE\\\\Microsoft\\\\Windows NT\\\\CurrentVersion\\\\ registry value, for example _\"10.0 14393 (14393.1198.amd64fre.rs1_release_sec.170427-1353)\"_. | [optional] **operating_system** | Option<**String**> | Name of the host's operating system, for example: \"Ubuntu 16.04.2 LTS\" or \"Windows Server 2016 Datacenter\" | [optional] **os_version** | Option<**String**> | Version of the host's operating system


> **Note**: The information returned in this field, including its > very existence, and the formatting of values, should not be considered > stable, and may change without notice. | [optional] **os_type** | Option<**String**> | Generic type of the operating system of the host, as returned by the Go runtime (`GOOS`). Currently returned values are \"linux\" and \"windows\". A full list of possible values can be found in the [Go documentation](https://golang.org/doc/install/source#environment). | [optional] **architecture** | Option<**String**> | Hardware architecture of the host, as returned by the Go runtime (`GOARCH`). A full list of possible values can be found in the [Go documentation](https://golang.org/doc/install/source#environment). | [optional] **ncpu** | Option<**i32**> | The number of logical CPUs usable by the daemon. The number of available CPUs is checked by querying the operating system when the daemon starts. Changes to operating system CPU allocation after the daemon is started are not reflected. | [optional] **mem_total** | Option<**i64**> | Total amount of physical memory available on the host, in bytes. | [optional] **index_server_address** | Option<**String**> | Address / URL of the index server that is used for image search, and as a default for user authentication for Docker Hub and Docker Cloud. | [optional][default to https://index.docker.io/v1/] **registry_config** | Option<[**crate::models::RegistryServiceConfig**](RegistryServiceConfig.md)> | | [optional] **generic_resources** | Option<[**Vec**](GenericResources_inner.md)> | User-defined resources can be either Integer resources (e.g, `SSD=3`) or String resources (e.g, `GPU=UUID1`). | [optional] **http_proxy** | Option<**String**> | HTTP-proxy configured for the daemon. This value is obtained from the [`HTTP_PROXY`](https://www.gnu.org/software/wget/manual/html_node/Proxies.html) environment variable. Credentials ([user info component](https://tools.ietf.org/html/rfc3986#section-3.2.1)) in the proxy URL are masked in the API response. Containers do not automatically inherit this configuration. | [optional] **https_proxy** | Option<**String**> | HTTPS-proxy configured for the daemon. This value is obtained from the [`HTTPS_PROXY`](https://www.gnu.org/software/wget/manual/html_node/Proxies.html) environment variable. Credentials ([user info component](https://tools.ietf.org/html/rfc3986#section-3.2.1)) in the proxy URL are masked in the API response. Containers do not automatically inherit this configuration. | [optional] **no_proxy** | Option<**String**> | Comma-separated list of domain extensions for which no proxy should be used. This value is obtained from the [`NO_PROXY`](https://www.gnu.org/software/wget/manual/html_node/Proxies.html) environment variable. Containers do not automatically inherit this configuration. | [optional] **name** | Option<**String**> | Hostname of the host. | [optional] **labels** | Option<**Vec**> | User-defined labels (key/value metadata) as set on the daemon.


> **Note**: When part of a Swarm, nodes can both have _daemon_ labels, > set through the daemon configuration, and _node_ labels, set from a > manager node in the Swarm. Node labels are not included in this > field. Node labels can be retrieved using the `/nodes/(id)` endpoint > on a manager node in the Swarm. | [optional] **experimental_build** | Option<**bool**> | Indicates if experimental features are enabled on the daemon. | [optional] **server_version** | Option<**String**> | Version string of the daemon. > **Note**: the [standalone Swarm API](/swarm/swarm-api/) > returns the Swarm version instead of the daemon version, for example > `swarm/1.2.8`. | [optional] **cluster_store** | Option<**String**> | URL of the distributed storage backend. The storage backend is used for multihost networking (to store network and endpoint information) and by the node discovery mechanism.


> **Deprecated**: This field is only propagated when using standalone Swarm > mode, and overlay networking using an external k/v store. Overlay > networks with Swarm mode enabled use the built-in raft store, and > this field will be empty. | [optional] **cluster_advertise** | Option<**String**> | The network endpoint that the Engine advertises for the purpose of node discovery. ClusterAdvertise is a `host:port` combination on which the daemon is reachable by other hosts.


> **Deprecated**: This field is only propagated when using standalone Swarm > mode, and overlay networking using an external k/v store. Overlay > networks with Swarm mode enabled use the built-in raft store, and > this field will be empty. | [optional] **runtimes** | Option<[**::std::collections::HashMap**](Runtime.md)> | List of [OCI compliant](https://github.com/opencontainers/runtime-spec) runtimes configured on the daemon. Keys hold the \"name\" used to reference the runtime. The Docker daemon relies on an OCI compliant runtime (invoked via the `containerd` daemon) as its interface to the Linux kernel namespaces, cgroups, and SELinux. The default runtime is `runc`, and automatically configured. Additional runtimes can be configured by the user and will be listed here. | [optional] **default_runtime** | Option<**String**> | Name of the default OCI runtime that is used when starting containers. The default can be overridden per-container at create time. | [optional][default to runc] **swarm** | Option<[**crate::models::SwarmInfo**](SwarmInfo.md)> | | [optional] **live_restore_enabled** | Option<**bool**> | Indicates if live restore is enabled. If enabled, containers are kept running when the daemon is shutdown or upon daemon start if running containers are detected. | [optional][default to false] **isolation** | Option<**String**> | Represents the isolation technology to use as a default for containers. The supported values are platform-specific. If no isolation value is specified on daemon start, on Windows client, the default is `hyperv`, and on Windows server, the default is `process`. This option is currently not used on other platforms. | [optional][default to Default] **init_binary** | Option<**String**> | Name and, optional, path of the `docker-init` binary. If the path is omitted, the daemon searches the host's `$PATH` for the binary and uses the first result. | [optional] **containerd_commit** | Option<[**crate::models::Commit**](Commit.md)> | | [optional] **runc_commit** | Option<[**crate::models::Commit**](Commit.md)> | | [optional] **init_commit** | Option<[**crate::models::Commit**](Commit.md)> | | [optional] **security_options** | Option<**Vec**> | List of security features that are enabled on the daemon, such as apparmor, seccomp, SELinux, user-namespaces (userns), and rootless. Additional configuration options for each security feature may be present, and are included as a comma-separated list of key/value pairs. | [optional] **product_license** | Option<**String**> | Reports a summary of the product license on the daemon. If a commercial license has been applied to the daemon, information such as number of nodes, and expiration are included. | [optional] **default_address_pools** | Option<[**Vec**](SystemInfo_DefaultAddressPools_inner.md)> | List of custom default address pools for local networks, which can be specified in the daemon.json file or dockerd option. Example: a Base \"10.10.0.0/16\" with Size 24 will define the set of 256 10.10.[0-255].0/24 address pools. | [optional] **warnings** | Option<**Vec**> | List of warnings / informational messages about missing features, or issues related to the daemon configuration. These messages can be printed by the client as information to the user. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)