├── .cargo └── config.toml ├── .dockerignore ├── .editorconfig ├── .github ├── dependabot.yml ├── labeler.yml └── workflows │ ├── baseline.yml │ ├── benches.yml │ ├── check.yml │ ├── labeler.yml │ ├── nightly.yml │ └── test.yml ├── .gitignore ├── .rustfmt.toml ├── Cargo.lock ├── Cargo.toml ├── Cross.toml ├── LICENSE ├── Makefile ├── README.md ├── benches ├── haproxy.rs ├── loki.rs └── node_source_hwmon.rs ├── build.rs ├── ci ├── bench │ └── extract_criterion_results.sh ├── check-scripts.sh ├── cross │ ├── bootstrap-ubuntu.sh │ ├── x86_64-unknown-linux-gnu.dockerfile │ └── x86_64-unknown-linux-musl.dockerfile ├── environment │ ├── bootstrap-macos-10.sh │ ├── bootstrap-ubuntu-24.04.sh │ └── bootstrap-windows-2019.ps1 ├── extract_baseline_metrics.sh ├── install_protoc.sh └── prepare.sh ├── clippy.toml ├── distribution ├── docker │ ├── alpine │ │ └── Dockerfile │ └── distroless-libc │ │ └── Dockerfile └── systemd │ └── vertex.service ├── docs ├── 20211103_disk_buffer.md ├── 20211115_observability.md ├── 20211119_remote_config.md └── 20211124_service_discovery.md ├── examples ├── clickhouse_metric_to_prom.yaml ├── elasticsearch_to_prometheus_exporter.yaml ├── filestats.yml ├── fluent.yaml ├── hotrod_vertex_jaeger.yml ├── http_provider.yml ├── internal_metrics.yaml ├── internal_trace_to_stdout.yml ├── jaeger_source_bench.yml ├── jaeger_to_stdout.yml ├── netflow_to_stdout.yml ├── node_exporter_alternative.yml ├── observe.yaml ├── ping.yaml ├── prom_scrape_to_web.yml ├── pushgateway_to_stdout.yml ├── redfish.yml ├── rewrite_logs.yml ├── rewrite_metrics.yml ├── route.yaml ├── sflow_to_console.yml ├── skywalking.yaml ├── tail_to_stdout.yml ├── vtl │ └── log.vtl └── zpages.yaml ├── lib ├── backoff │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── buffer │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── bench.rs │ │ └── buffer.rs │ └── src │ │ ├── channel │ │ ├── limited.rs │ │ ├── mod.rs │ │ └── semaphore.rs │ │ ├── config.rs │ │ ├── disk │ │ ├── acknowledgement.rs │ │ ├── acknowledgement_v1.rs │ │ ├── ledger.rs │ │ ├── mod.rs │ │ ├── reader.rs │ │ ├── record.rs │ │ ├── tests │ │ │ ├── acknowledgements.rs │ │ │ ├── basic.rs │ │ │ ├── initialization.rs │ │ │ ├── invariants.rs │ │ │ ├── known_errors.rs │ │ │ ├── mod.rs │ │ │ ├── record.rs │ │ │ └── size_limit.rs │ │ └── writer.rs │ │ ├── encoding.rs │ │ ├── lib.rs │ │ ├── queue │ │ ├── cache.rs │ │ └── mod.rs │ │ ├── receiver.rs │ │ ├── sender.rs │ │ └── tests.rs ├── bytesize │ ├── Cargo.toml │ └── src │ │ ├── external │ │ ├── bytes.rs │ │ ├── mod.rs │ │ └── value.rs │ │ └── lib.rs ├── codecs │ ├── Cargo.toml │ └── src │ │ ├── decoding │ │ ├── config.rs │ │ ├── error.rs │ │ ├── format │ │ │ ├── bytes.rs │ │ │ ├── json.rs │ │ │ ├── logfmt.rs │ │ │ ├── mod.rs │ │ │ ├── syslog.rs │ │ │ └── vtl.rs │ │ ├── framing │ │ │ ├── bytes.rs │ │ │ ├── character.rs │ │ │ ├── mod.rs │ │ │ ├── newline.rs │ │ │ └── octet_counting.rs │ │ └── mod.rs │ │ ├── encoding │ │ ├── config.rs │ │ ├── encoder.rs │ │ ├── format │ │ │ ├── json.rs │ │ │ ├── logfmt.rs │ │ │ ├── mod.rs │ │ │ ├── native_json.rs │ │ │ └── text.rs │ │ ├── framing │ │ │ ├── bytes.rs │ │ │ ├── character.rs │ │ │ ├── length_delimited.rs │ │ │ ├── mod.rs │ │ │ └── newline.rs │ │ ├── mod.rs │ │ └── transformer.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── ready_frames.rs │ │ └── serde.rs ├── configurable-derive │ ├── Cargo.toml │ └── src │ │ ├── configurable.rs │ │ ├── configurable_component.rs │ │ ├── lib.rs │ │ └── parse_attrs.rs ├── configurable │ ├── Cargo.toml │ ├── README.md │ ├── src │ │ ├── component │ │ │ ├── description.rs │ │ │ └── mod.rs │ │ ├── configurable.rs │ │ ├── errors.rs │ │ ├── example.rs │ │ ├── external │ │ │ ├── encoding.rs │ │ │ ├── event.rs │ │ │ ├── http.rs │ │ │ ├── indexmap.rs │ │ │ ├── mod.rs │ │ │ ├── regex.rs │ │ │ ├── timezone.rs │ │ │ ├── url.rs │ │ │ └── value.rs │ │ ├── format.rs │ │ ├── lib.rs │ │ ├── named.rs │ │ └── schema │ │ │ ├── LICENSE-schemars │ │ │ ├── generator.rs │ │ │ ├── json_schema.rs │ │ │ ├── mod.rs │ │ │ └── stdlib.rs │ └── tests │ │ ├── cfg.rs │ │ ├── component.rs │ │ ├── configurable.rs │ │ ├── default_value.rs │ │ ├── empty_map.rs │ │ ├── empty_struct.rs │ │ ├── enum_in_struct.rs │ │ ├── enum_with_tag.rs │ │ ├── example.rs │ │ ├── flatten.rs │ │ ├── flatten_enum.rs │ │ ├── pr_2152.rs │ │ ├── serde_skip.rs │ │ ├── struct_in_struct.rs │ │ ├── unnamed_enum.rs │ │ └── untagged_enum.rs ├── event │ ├── Cargo.toml │ ├── benches │ │ └── tags.rs │ ├── src │ │ ├── array.rs │ │ ├── buffer.rs │ │ ├── lib.rs │ │ ├── log │ │ │ ├── all_fields.rs │ │ │ ├── keys.rs │ │ │ ├── mod.rs │ │ │ └── tracing.rs │ │ ├── metadata.rs │ │ ├── metric │ │ │ └── mod.rs │ │ ├── tags │ │ │ ├── key.rs │ │ │ ├── mod.rs │ │ │ └── value.rs │ │ └── trace │ │ │ ├── evicted_hash_map.rs │ │ │ ├── evicted_queue.rs │ │ │ ├── generator.rs │ │ │ ├── mod.rs │ │ │ └── span.rs │ └── tests │ │ └── data │ │ └── fixtures │ │ └── value │ │ ├── array │ │ └── generic.json │ │ ├── boolean │ │ ├── false.json │ │ └── true.json │ │ ├── bytes │ │ ├── cn.json │ │ ├── emoji.json │ │ ├── friendly.json │ │ ├── ios-crashers.json │ │ ├── jp-emoji.json │ │ ├── quotes.json │ │ ├── rtl.json │ │ ├── saanich.json │ │ └── zalgo.json │ │ ├── integer │ │ ├── forty-two.json │ │ ├── maxint_32.json │ │ └── maxint_64.json │ │ ├── map │ │ └── motivatingly-complex.json │ │ └── null │ │ └── null.json ├── finalize │ ├── Cargo.toml │ └── src │ │ ├── finalization.rs │ │ ├── finalizer.rs │ │ └── lib.rs ├── framework │ ├── Cargo.toml │ ├── src │ │ ├── async_read.rs │ │ ├── batch.rs │ │ ├── config │ │ │ ├── builder.rs │ │ │ ├── diff.rs │ │ │ ├── env.rs │ │ │ ├── extension.rs │ │ │ ├── format.rs │ │ │ ├── global.rs │ │ │ ├── graph.rs │ │ │ ├── helper.rs │ │ │ ├── http.rs │ │ │ ├── id.rs │ │ │ ├── loading.rs │ │ │ ├── mod.rs │ │ │ ├── provider │ │ │ │ ├── http.rs │ │ │ │ ├── http │ │ │ │ │ └── chunk.rs │ │ │ │ └── mod.rs │ │ │ ├── proxy.rs │ │ │ ├── resource.rs │ │ │ ├── secret.rs │ │ │ ├── sink.rs │ │ │ ├── source.rs │ │ │ ├── transform.rs │ │ │ ├── uri.rs │ │ │ ├── validation.rs │ │ │ └── watcher.rs │ │ ├── dns.rs │ │ ├── extension.rs │ │ ├── http │ │ │ ├── mod.rs │ │ │ ├── proxy │ │ │ │ ├── mod.rs │ │ │ │ ├── rt.rs │ │ │ │ ├── stream.rs │ │ │ │ └── tunnel.rs │ │ │ ├── serve.rs │ │ │ └── trace.rs │ │ ├── lib.rs │ │ ├── metrics.rs │ │ ├── observe │ │ │ ├── endpoint.rs │ │ │ ├── mod.rs │ │ │ └── observer.rs │ │ ├── partition.rs │ │ ├── pipeline │ │ │ ├── errors.rs │ │ │ └── mod.rs │ │ ├── shutdown.rs │ │ ├── signal.rs │ │ ├── sink │ │ │ ├── mod.rs │ │ │ ├── util │ │ │ │ ├── adaptive_concurrency │ │ │ │ │ ├── controller.rs │ │ │ │ │ ├── future.rs │ │ │ │ │ ├── layer.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── semaphore.rs │ │ │ │ │ ├── service.rs │ │ │ │ │ └── tests.rs │ │ │ │ ├── buffer │ │ │ │ │ ├── compression.rs │ │ │ │ │ ├── metrics.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── partition.rs │ │ │ │ │ └── vec.rs │ │ │ │ ├── builder.rs │ │ │ │ ├── compressor.rs │ │ │ │ ├── encoding.rs │ │ │ │ ├── http.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── partitioner.rs │ │ │ │ ├── request_builder.rs │ │ │ │ ├── retries.rs │ │ │ │ ├── service │ │ │ │ │ ├── concurrency.rs │ │ │ │ │ ├── map.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── sink.rs │ │ │ │ ├── snappy.rs │ │ │ │ ├── socket_bytes_sink.rs │ │ │ │ ├── tcp.rs │ │ │ │ ├── testing.rs │ │ │ │ ├── udp.rs │ │ │ │ ├── unix.rs │ │ │ │ └── zstd.rs │ │ │ └── vec.rs │ │ ├── source │ │ │ ├── http │ │ │ │ ├── auth.rs │ │ │ │ ├── decode.rs │ │ │ │ ├── error.rs │ │ │ │ ├── mod.rs │ │ │ │ └── source.rs │ │ │ ├── mod.rs │ │ │ ├── tcp.rs │ │ │ ├── udp.rs │ │ │ └── unix.rs │ │ ├── stats.rs │ │ ├── stream │ │ │ ├── batcher │ │ │ │ ├── config.rs │ │ │ │ ├── data.rs │ │ │ │ ├── limiter.rs │ │ │ │ └── mod.rs │ │ │ ├── concurrent_map.rs │ │ │ ├── driver.rs │ │ │ ├── futures_unordered_count.rs │ │ │ ├── mod.rs │ │ │ ├── partitioned_batcher.rs │ │ │ └── timer.rs │ │ ├── tcp.rs │ │ ├── template.rs │ │ ├── testing │ │ │ ├── counter_receiver.rs │ │ │ ├── mod.rs │ │ │ └── stream.rs │ │ ├── timezone.rs │ │ ├── tls │ │ │ ├── incoming.rs │ │ │ ├── maybe_tls.rs │ │ │ ├── mod.rs │ │ │ ├── outgoing.rs │ │ │ └── settings.rs │ │ ├── topology │ │ │ ├── builder.rs │ │ │ ├── fanout.rs │ │ │ ├── mod.rs │ │ │ ├── running.rs │ │ │ ├── task.rs │ │ │ └── test │ │ │ │ ├── backpressure.rs │ │ │ │ ├── doesnt_reload.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── reload.rs │ │ │ │ ├── source_finished.rs │ │ │ │ ├── transient_state.rs │ │ │ │ └── utils.rs │ │ ├── trace.rs │ │ ├── transform.rs │ │ ├── trigger.rs │ │ ├── udp.rs │ │ └── utilization.rs │ └── tests │ │ ├── adaptive-concurrency │ │ ├── constant_link.yaml │ │ ├── defers-at-high-concurrency.yaml │ │ ├── defers-at-high-rate.yaml │ │ ├── drops-at-high-concurrency.yaml │ │ ├── fixed-concurrency-jitter.yaml │ │ ├── fixed-concurrency-simple.yaml │ │ ├── jittery-link-small.yaml │ │ ├── medium-send.yaml │ │ ├── shallow-knee.yaml │ │ ├── slow-link.yaml │ │ ├── slow-send-1.yaml │ │ └── slow-send-2.yaml │ │ └── ca │ │ ├── certs │ │ └── ca.cert.pem │ │ ├── index.txt │ │ ├── intermediate │ │ ├── certs │ │ │ ├── ca-chain.cert.pem │ │ │ ├── intermediate.cert.pem │ │ │ └── localhost.cert.pem │ │ ├── crlnumber │ │ ├── csr │ │ │ ├── intermediate.csr.pem │ │ │ └── localhost.csr.pem │ │ ├── index.txt │ │ ├── index.txt.attr │ │ ├── index.txt.old │ │ ├── newcerts │ │ │ └── 1000.pem │ │ ├── openssl.cnf │ │ ├── private │ │ │ ├── intermediate.key.pem │ │ │ ├── localhost.key.pem │ │ │ └── localhost.nopass.key.pem │ │ ├── serial │ │ └── serial.old │ │ ├── localhost.v3.ext │ │ ├── newcerts │ │ └── 1000.pem │ │ ├── openssl.cnf │ │ ├── private │ │ └── ca.key.pem │ │ └── serial ├── hostname │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── hyper-unix │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── jaeger │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── proto │ │ ├── collector.proto │ │ └── model.proto │ └── src │ │ ├── agent.rs │ │ ├── lib.rs │ │ ├── thrift │ │ ├── agent.rs │ │ ├── jaeger.rs │ │ ├── mod.rs │ │ └── zipkincore.rs │ │ ├── translate │ │ ├── id.rs │ │ ├── internal_to_proto.rs │ │ ├── internal_to_thrift.rs │ │ ├── mod.rs │ │ ├── proto_to_internal.rs │ │ └── thrift_to_internal.rs │ │ └── transport │ │ ├── buffer.rs │ │ ├── mod.rs │ │ └── noop.rs ├── kubernetes │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ └── watch.rs │ └── src │ │ ├── client.rs │ │ ├── config │ │ ├── file.rs │ │ ├── incluster.rs │ │ ├── mod.rs │ │ └── tls.rs │ │ ├── lib.rs │ │ ├── resource.rs │ │ ├── version.rs │ │ └── watch.rs ├── log_schema │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── metrics │ ├── Cargo.toml │ ├── benches │ │ └── register.rs │ └── src │ │ ├── attributes.rs │ │ ├── counter.rs │ │ ├── gauge.rs │ │ ├── histogram.rs │ │ ├── lib.rs │ │ ├── metric.rs │ │ └── registry.rs ├── multiline │ ├── Cargo.toml │ └── src │ │ ├── aggregate.rs │ │ ├── config.rs │ │ ├── lib.rs │ │ ├── preset │ │ ├── cri.rs │ │ ├── docker.rs │ │ ├── go.rs │ │ ├── java.rs │ │ ├── mod.rs │ │ ├── noindent.rs │ │ └── regex.rs │ │ └── serde_regex.rs ├── ntp │ ├── Cargo.toml │ ├── examples │ │ └── query.rs │ └── src │ │ └── lib.rs ├── prometheus │ ├── Cargo.toml │ ├── benches │ │ └── parse_text.rs │ ├── build.rs │ ├── fixtures │ │ ├── node_exporter.txt │ │ ├── prom.txt │ │ └── prom_nometa.txt │ ├── proto │ │ ├── prometheus-remote.proto │ │ └── prometheus-types.proto │ └── src │ │ ├── error.rs │ │ ├── lib.rs │ │ └── text.rs ├── resolver │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ ├── dig.rs │ │ └── lookup.rs │ ├── src │ │ ├── cache.rs │ │ ├── config │ │ │ ├── hosts.rs │ │ │ ├── mod.rs │ │ │ └── unix.rs │ │ ├── lib.rs │ │ ├── proto │ │ │ └── mod.rs │ │ ├── resolver.rs │ │ └── singleflight.rs │ └── tests │ │ ├── aliases │ │ ├── case-hosts │ │ ├── domain-resolv.conf │ │ ├── empty-resolv.conf │ │ ├── freebsd-usevc-resolv.conf │ │ ├── hosts │ │ ├── igmp │ │ ├── igmp6 │ │ ├── invalid-ndots-resolv.conf │ │ ├── ipv4-hosts │ │ ├── ipv6-hosts │ │ ├── large-ndots-resolv.conf │ │ ├── linux-use-vc-resolv.conf │ │ ├── negative-ndots-resolv.conf │ │ ├── openbsd-resolv.conf │ │ ├── openbsd-tcp-resolv.conf │ │ ├── resolv.conf │ │ ├── search-resolv.conf │ │ ├── search-single-dot-resolv.conf │ │ ├── single-request-reopen-resolv.conf │ │ ├── single-request-resolv.conf │ │ └── singleline-hosts ├── sysinfo │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── unix.rs ├── tail │ ├── Cargo.toml │ ├── benches │ │ └── buffer.rs │ └── src │ │ ├── buffer.rs │ │ ├── checkpoint.rs │ │ ├── harvester.rs │ │ ├── lib.rs │ │ ├── provider │ │ ├── glob.rs │ │ └── mod.rs │ │ └── watch │ │ ├── mod.rs │ │ └── tests │ │ ├── experiment.rs │ │ └── mod.rs ├── testify │ ├── Cargo.toml │ └── src │ │ ├── container │ │ ├── docker.rs │ │ └── mod.rs │ │ ├── event.rs │ │ ├── http.rs │ │ ├── instant.rs │ │ ├── lib.rs │ │ ├── map.rs │ │ ├── portpicker.rs │ │ ├── random.rs │ │ ├── send_lines.rs │ │ ├── socket.rs │ │ ├── stats.rs │ │ ├── stream.rs │ │ ├── temp.rs │ │ └── wait.rs ├── tracing-internal │ ├── Cargo.toml │ └── src │ │ ├── context.rs │ │ ├── layer.rs │ │ ├── lib.rs │ │ ├── span_ext.rs │ │ └── tracer.rs ├── tracing-limit │ ├── Cargo.toml │ ├── LICENSE │ ├── benches │ │ └── limit.rs │ ├── examples │ │ ├── basic.rs │ │ └── by_span.rs │ └── src │ │ └── lib.rs ├── tripwire │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── value │ ├── Cargo.toml │ ├── src │ │ ├── convert.rs │ │ ├── crud │ │ │ ├── get.rs │ │ │ ├── get_mut.rs │ │ │ ├── insert.rs │ │ │ ├── mod.rs │ │ │ └── remove.rs │ │ ├── display.rs │ │ ├── kind.rs │ │ ├── lib.rs │ │ ├── path │ │ │ ├── borrowed.rs │ │ │ ├── concat.rs │ │ │ ├── jit.rs │ │ │ ├── mod.rs │ │ │ └── owned.rs │ │ └── serde.rs │ └── tests │ │ └── data │ │ └── fixtures │ │ └── value │ │ ├── array │ │ └── generic.json │ │ ├── boolean │ │ ├── false.json │ │ └── true.json │ │ ├── bytes │ │ ├── cn.json │ │ ├── emoji.json │ │ ├── friendly.json │ │ ├── ios-crashers.json │ │ ├── jp-emoji.json │ │ ├── quotes.json │ │ ├── rtl.json │ │ ├── saanich.json │ │ └── zalgo.json │ │ ├── integer │ │ ├── forty-two.json │ │ ├── maxint_32.json │ │ └── maxint_64.json │ │ ├── map │ │ └── motivatingly-complex.json │ │ └── null │ │ └── null.json ├── virt │ ├── Cargo.toml │ ├── remote_protocol.x │ ├── src │ │ ├── client.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ └── protocol │ │ │ ├── auth.rs │ │ │ ├── connect_list_storage_pools.rs │ │ │ ├── constants.rs │ │ │ ├── domain_get_block_io_tune.rs │ │ │ ├── domain_get_xml_desc.rs │ │ │ ├── domain_memory_stats.rs │ │ │ ├── get_all_domain_stats.rs │ │ │ ├── get_domain_info.rs │ │ │ ├── get_domain_vcpus.rs │ │ │ ├── get_lib_version.rs │ │ │ ├── get_version.rs │ │ │ ├── mod.rs │ │ │ ├── open.rs │ │ │ ├── primitives.rs │ │ │ └── storage_pool_get_info.rs │ └── virnetprotocol.x └── vtl │ ├── Cargo.toml │ ├── README.md │ ├── examples │ └── simple.rs │ ├── src │ ├── compiler │ │ ├── assignment.rs │ │ ├── binary.rs │ │ ├── block.rs │ │ ├── expr.rs │ │ ├── for_statement.rs │ │ ├── function.rs │ │ ├── function │ │ │ ├── abs.rs │ │ │ ├── append.rs │ │ │ ├── assert.rs │ │ │ ├── assert_eq.rs │ │ │ ├── camelcase.rs │ │ │ ├── ceil.rs │ │ │ ├── cidr_contains.rs │ │ │ ├── compact.rs │ │ │ ├── contains.rs │ │ │ ├── decode_base64.rs │ │ │ ├── del.rs │ │ │ ├── encode_base64.rs │ │ │ ├── ends_with.rs │ │ │ ├── exists.rs │ │ │ ├── find.rs │ │ │ ├── flatten.rs │ │ │ ├── floor.rs │ │ │ ├── format.rs │ │ │ ├── from_unix_timestamp.rs │ │ │ ├── get.rs │ │ │ ├── get_env.rs │ │ │ ├── get_hostname.rs │ │ │ ├── includes.rs │ │ │ ├── is_array.rs │ │ │ ├── is_bool.rs │ │ │ ├── is_empty.rs │ │ │ ├── is_float.rs │ │ │ ├── is_integer.rs │ │ │ ├── is_ipv4.rs │ │ │ ├── is_ipv6.rs │ │ │ ├── is_null.rs │ │ │ ├── is_object.rs │ │ │ ├── is_string.rs │ │ │ ├── is_timestamp.rs │ │ │ ├── join.rs │ │ │ ├── kebabcase.rs │ │ │ ├── keys.rs │ │ │ ├── length.rs │ │ │ ├── log.rs │ │ │ ├── lowercase.rs │ │ │ ├── match.rs │ │ │ ├── merge.rs │ │ │ ├── mod_func.rs │ │ │ ├── now.rs │ │ │ ├── parse_bytes.rs │ │ │ ├── parse_duration.rs │ │ │ ├── parse_json.rs │ │ │ ├── parse_query.rs │ │ │ ├── parse_regex.rs │ │ │ ├── parse_timestamp.rs │ │ │ ├── parse_url.rs │ │ │ ├── parse_user_agent.rs │ │ │ ├── pascalcase.rs │ │ │ ├── push.rs │ │ │ ├── redact.rs │ │ │ ├── replace.rs │ │ │ ├── round.rs │ │ │ ├── set.rs │ │ │ ├── slice.rs │ │ │ ├── snakecase.rs │ │ │ ├── split.rs │ │ │ ├── starts_with.rs │ │ │ ├── to_bool.rs │ │ │ ├── to_float.rs │ │ │ ├── to_integer.rs │ │ │ ├── to_string.rs │ │ │ ├── to_unix_timestamp.rs │ │ │ ├── trim.rs │ │ │ ├── truncate.rs │ │ │ ├── typeof.rs │ │ │ ├── unique.rs │ │ │ ├── uppercase.rs │ │ │ ├── values.rs │ │ │ └── xxhash.rs │ │ ├── function_call.rs │ │ ├── if_statement.rs │ │ ├── levenshtein.rs │ │ ├── lex.rs │ │ ├── mod.rs │ │ ├── parser.rs │ │ ├── query.rs │ │ ├── span.rs │ │ ├── state.rs │ │ ├── statement.rs │ │ ├── template.rs │ │ ├── type_def.rs │ │ └── unary.rs │ ├── config.rs │ ├── context.rs │ ├── diagnostic │ │ ├── label.rs │ │ └── mod.rs │ └── lib.rs │ └── tests │ ├── arithmetic │ ├── addition.vtl │ ├── division.vtl │ ├── multiplication.vtl │ └── subtraction.vtl │ ├── assignment │ ├── array_hole.vtl │ ├── complex_path.vtl │ ├── in_block.vtl │ └── object.vtl │ ├── debug │ └── assert.vtl │ ├── for │ ├── array.vtl │ ├── map.vtl │ └── override_variable.vtl │ ├── if │ └── if.vtl │ ├── parse │ └── parse_regex.vtl │ ├── scripts.rs │ ├── string │ ├── concat.vtl │ ├── format.vtl │ └── transform.vtl │ └── types │ └── is.vtl ├── regression ├── Dockerfile ├── docker-compose.yaml ├── file_to_socket │ ├── lading.yaml │ └── vertex.yaml ├── fluent_to_http │ ├── lading.yaml │ └── vertex.yaml ├── http_to_http_acks │ ├── lading.yaml │ └── vertex.yaml ├── http_to_http_json │ ├── lading.yaml │ └── vertex.yaml └── tcp_to_tcp │ ├── lading.yaml │ └── vertex.yaml ├── rust-toolchain.toml ├── scripts ├── lines.sh ├── pre-commit.sh └── redfish_prepare.sh ├── src ├── common │ ├── http.rs │ ├── mod.rs │ ├── offset.rs │ ├── prometheus.rs │ ├── read.rs │ └── vtl.rs ├── extensions │ ├── consul_observer.rs │ ├── dns_observer.rs │ ├── exec_observer.rs │ ├── healthcheck.rs │ ├── heartbeat.rs │ ├── http_observer.rs │ ├── kubernetes_observer │ │ ├── endpoint_slice.rs │ │ ├── endpoints.rs │ │ ├── ingress.rs │ │ ├── mod.rs │ │ ├── node.rs │ │ ├── pod.rs │ │ └── service.rs │ ├── mod.rs │ ├── port_observer.rs │ ├── pprof │ │ ├── heap.rs │ │ ├── jeprof.in │ │ ├── mod.rs │ │ └── profile.rs │ └── zpages │ │ ├── mod.rs │ │ └── statsz.rs ├── launch.rs ├── lib.rs ├── main.rs ├── sinks │ ├── blackhole.rs │ ├── clickhouse │ │ ├── config.rs │ │ ├── integration_tests.rs │ │ ├── mod.rs │ │ └── sink.rs │ ├── console.rs │ ├── elasticsearch │ │ ├── common.rs │ │ ├── config.rs │ │ ├── encoder.rs │ │ ├── integration_tests.rs │ │ ├── mod.rs │ │ ├── request_builder.rs │ │ ├── retry.rs │ │ ├── service.rs │ │ ├── sink.rs │ │ └── tests.rs │ ├── http │ │ ├── config.rs │ │ ├── encoder.rs │ │ ├── mod.rs │ │ ├── request_builder.rs │ │ ├── service.rs │ │ └── sink.rs │ ├── influxdb │ │ ├── config.rs │ │ ├── encoder.rs │ │ ├── health.rs │ │ ├── mod.rs │ │ ├── request_builder.rs │ │ ├── service.rs │ │ └── sink.rs │ ├── jaeger │ │ ├── encoder.rs │ │ ├── grpc.rs │ │ ├── http.rs │ │ ├── mod.rs │ │ └── udp.rs │ ├── kafka │ │ ├── config.rs │ │ ├── mod.rs │ │ ├── request_builder.rs │ │ ├── service.rs │ │ ├── sink.rs │ │ └── tests.rs │ ├── loki │ │ ├── config.rs │ │ ├── integration_tests.rs │ │ ├── loki.proto │ │ ├── mod.rs │ │ ├── request_builder.rs │ │ ├── sanitize.rs │ │ ├── service.rs │ │ ├── sink.rs │ │ └── tests.rs │ ├── mod.rs │ ├── prometheus_exporter.rs │ ├── prometheus_remote_write.rs │ ├── skywalking │ │ ├── logging.proto │ │ └── mod.rs │ └── socket.rs ├── sources │ ├── audit │ │ ├── mod.rs │ │ ├── netlink.rs │ │ ├── parse.rs │ │ └── syscalls.rs │ ├── bind │ │ ├── client │ │ │ ├── mod.rs │ │ │ ├── v2.rs │ │ │ └── v3.rs │ │ ├── mod.rs │ │ └── tests.rs │ ├── chrony │ │ └── mod.rs │ ├── clickhouse_metrics.rs │ ├── consul │ │ ├── client.rs │ │ ├── integration_tests.rs │ │ └── mod.rs │ ├── dnsmasq │ │ └── mod.rs │ ├── dnstap │ │ ├── dnstap.proto │ │ ├── mod.rs │ │ ├── tcp.rs │ │ └── unix.rs │ ├── docker.rs │ ├── dpdk.rs │ ├── elasticsearch │ │ ├── cluster_health.rs │ │ ├── cluster_info.rs │ │ ├── mod.rs │ │ ├── nodes.rs │ │ ├── slm.rs │ │ └── snapshot.rs │ ├── exec │ │ └── mod.rs │ ├── filestats.rs │ ├── fluent │ │ ├── mod.rs │ │ └── msgpack.rs │ ├── generate.rs │ ├── grpc_check.rs │ ├── haproxy.rs │ ├── http.rs │ ├── http_check.rs │ ├── internal_logs.rs │ ├── internal_metrics.rs │ ├── internal_traces.rs │ ├── jaeger │ │ ├── grpc.rs │ │ ├── http.rs │ │ ├── mod.rs │ │ └── udp.rs │ ├── journald.rs │ ├── kafka.rs │ ├── kafka_metrics.rs │ ├── kmsg.rs │ ├── kubernetes_events │ │ ├── README.md │ │ ├── event.rs │ │ └── mod.rs │ ├── kubernetes_logs │ │ ├── annotator.rs │ │ ├── mod.rs │ │ ├── pod.rs │ │ └── provider.rs │ ├── libvirt.rs │ ├── memcached.rs │ ├── mod.rs │ ├── mqtt │ │ ├── broker.rs │ │ └── mod.rs │ ├── multiplier │ │ ├── interpolate.rs │ │ └── mod.rs │ ├── mysqld │ │ ├── fixtures │ │ │ └── docker-compose.yml │ │ ├── global_status.rs │ │ ├── global_variables.rs │ │ ├── info_schema_innodb_cmp.rs │ │ ├── info_schema_innodb_cmpmem.rs │ │ ├── info_schema_query_response_time.rs │ │ ├── integration_tests.rs │ │ ├── mod.rs │ │ └── slave_status.rs │ ├── netflow │ │ ├── decode.rs │ │ ├── ipfix.rs │ │ ├── mod.rs │ │ ├── netflow.rs │ │ └── template.rs │ ├── nginx_stub.rs │ ├── node │ │ ├── arp.rs │ │ ├── bcache.rs │ │ ├── bonding.rs │ │ ├── boot_time.rs │ │ ├── btrfs.rs │ │ ├── conntrack.rs │ │ ├── cpu.rs │ │ ├── cpufreq.rs │ │ ├── diskstats.rs │ │ ├── dmi.rs │ │ ├── drm.rs │ │ ├── edac.rs │ │ ├── entropy.rs │ │ ├── error.rs │ │ ├── fibrechannel.rs │ │ ├── filefd.rs │ │ ├── filesystem.rs │ │ ├── hwmon.rs │ │ ├── infiniband.rs │ │ ├── ipvs.rs │ │ ├── lnstat.rs │ │ ├── loadavg.rs │ │ ├── mdadm.rs │ │ ├── meminfo.rs │ │ ├── mod.rs │ │ ├── netclass.rs │ │ ├── netdev.rs │ │ ├── netstat.rs │ │ ├── network_route.rs │ │ ├── nfs.rs │ │ ├── nfsd.rs │ │ ├── nvme.rs │ │ ├── os_release.rs │ │ ├── powersupplyclass.rs │ │ ├── pressure.rs │ │ ├── processes.rs │ │ ├── protocols.rs │ │ ├── rapl.rs │ │ ├── schedstat.rs │ │ ├── selinux.rs │ │ ├── sockstat.rs │ │ ├── softirqs.rs │ │ ├── softnet.rs │ │ ├── stat.rs │ │ ├── tapestats.rs │ │ ├── tcpstat.rs │ │ ├── thermal_zone.rs │ │ ├── time.rs │ │ ├── timex.rs │ │ ├── udp_queues.rs │ │ ├── uname.rs │ │ ├── vmstat.rs │ │ ├── watchdog.rs │ │ ├── wifi.rs │ │ ├── xfs.rs │ │ └── zfs.rs │ ├── ntp.rs │ ├── nvidia.rs │ ├── ping.rs │ ├── prometheus_pushgateway.rs │ ├── prometheus_remote_write.rs │ ├── prometheus_scrape.rs │ ├── redfish │ │ ├── mod.rs │ │ └── protocol │ │ │ ├── chassis.rs │ │ │ ├── mod.rs │ │ │ └── system.rs │ ├── redis │ │ ├── client │ │ │ ├── frame.rs │ │ │ ├── mod.rs │ │ │ └── resp.rs │ │ └── mod.rs │ ├── selfstat │ │ ├── built_info.rs │ │ ├── jemalloc.rs │ │ ├── linux.rs │ │ ├── mod.rs │ │ └── runtime.rs │ ├── sflow │ │ ├── datagram.rs │ │ └── mod.rs │ ├── socket │ │ ├── mod.rs │ │ ├── tcp.rs │ │ ├── udp.rs │ │ └── unix.rs │ ├── static_metrics.rs │ ├── syslog.rs │ ├── systemd │ │ ├── dbus.rs │ │ ├── mod.rs │ │ ├── resolved.rs │ │ ├── service.rs │ │ ├── units.rs │ │ ├── version.rs │ │ └── watchdog.rs │ ├── tail │ │ ├── encoding_transcode.rs │ │ └── mod.rs │ └── zookeeper.rs ├── testing │ ├── components.rs │ ├── config.rs │ ├── metrics.rs │ ├── mod.rs │ └── trace.rs ├── top.rs ├── transforms │ ├── cardinality.rs │ ├── dedup.rs │ ├── filter.rs │ ├── geoip.rs │ ├── metricalize.rs │ ├── mod.rs │ ├── relabel.rs │ ├── rewrite.rs │ ├── route.rs │ ├── sample.rs │ └── throttle │ │ ├── mod.rs │ │ └── rate_limiter.rs ├── validate.rs └── vtl.rs └── tests ├── bind ├── v2.xml └── v3 │ ├── server │ ├── status │ ├── tasks │ └── zones ├── bonding └── sys │ └── class │ └── net │ ├── bond0 │ ├── addr_assign_type │ ├── addr_len │ ├── address │ ├── bonding │ │ └── slaves │ ├── broadcast │ ├── carrier │ ├── carrier_changes │ ├── carrier_down_count │ ├── carrier_up_count │ ├── dev_id │ ├── dormant │ ├── duplex │ ├── flags │ ├── ifalias │ ├── ifindex │ ├── iflink │ ├── link_mode │ ├── mtu │ ├── name_assign_type │ ├── netdev_group │ ├── operstate │ ├── phys_port_id │ ├── phys_port_name │ ├── phys_switch_id │ ├── speed │ ├── tx_queue_len │ └── type │ ├── bonding_masters │ ├── dmz │ ├── addr_assign_type │ ├── addr_len │ ├── address │ ├── bonding │ │ └── slaves │ ├── broadcast │ ├── carrier │ ├── carrier_changes │ ├── carrier_down_count │ ├── carrier_up_count │ ├── dev_id │ ├── dormant │ ├── duplex │ ├── flags │ ├── ifalias │ ├── ifindex │ ├── iflink │ ├── link_mode │ ├── mtu │ ├── name_assign_type │ ├── netdev_group │ ├── operstate │ ├── phys_port_id │ ├── phys_port_name │ ├── phys_switch_id │ ├── slave_eth0 │ │ ├── bonding_slave │ │ │ └── mii_status │ │ └── operstate │ ├── slave_eth4 │ │ ├── bonding_slave │ │ │ └── mii_status │ │ └── operstate │ ├── speed │ ├── tx_queue_len │ └── type │ ├── eth0 │ ├── addr_assign_type │ ├── addr_len │ ├── address │ ├── broadcast │ ├── carrier │ ├── carrier_changes │ ├── carrier_down_count │ ├── carrier_up_count │ ├── dev_id │ ├── dormant │ ├── duplex │ ├── flags │ ├── ifalias │ ├── ifindex │ ├── iflink │ ├── link_mode │ ├── mtu │ ├── name_assign_type │ ├── netdev_group │ ├── operstate │ ├── phys_port_id │ ├── phys_port_name │ ├── phys_switch_id │ ├── speed │ ├── tx_queue_len │ └── type │ └── int │ ├── addr_assign_type │ ├── addr_len │ ├── address │ ├── bonding │ └── slaves │ ├── broadcast │ ├── carrier │ ├── carrier_changes │ ├── carrier_down_count │ ├── carrier_up_count │ ├── dev_id │ ├── dormant │ ├── duplex │ ├── flags │ ├── ifalias │ ├── ifindex │ ├── iflink │ ├── link_mode │ ├── mtu │ ├── name_assign_type │ ├── netdev_group │ ├── operstate │ ├── phys_port_id │ ├── phys_port_name │ ├── phys_switch_id │ ├── slave_eth1 │ ├── bonding_slave │ │ └── mii_status │ └── operstate │ ├── slave_eth5 │ ├── bonding_slave │ │ └── mii_status │ └── operstate │ ├── speed │ ├── tx_queue_len │ └── type ├── ca ├── certs │ └── ca.cert.pem ├── index.txt ├── intermediate │ ├── certs │ │ ├── ca-chain.cert.pem │ │ ├── intermediate.cert.pem │ │ └── localhost.cert.pem │ ├── crlnumber │ ├── csr │ │ ├── intermediate.csr.pem │ │ └── localhost.csr.pem │ ├── index.txt │ ├── index.txt.attr │ ├── index.txt.old │ ├── newcerts │ │ └── 1000.pem │ ├── openssl.cnf │ ├── private │ │ ├── intermediate.key.pem │ │ ├── localhost.key.pem │ │ └── localhost.nopass.key.pem │ ├── serial │ └── serial.old ├── localhost.v3.ext ├── newcerts │ └── 1000.pem ├── openssl.cnf ├── private │ └── ca.key.pem └── serial ├── cli.rs ├── clickhouse ├── async_metric.txt ├── docker-compose.yaml ├── event.txt ├── metric.txt └── parts.txt ├── config.rs ├── dnsmasq ├── dnsmasq.leases └── docker-compose.yaml ├── docker └── zookeeper-cluster.yml ├── elasticsearch ├── node_stats.json ├── node_stats_7_17_5.json ├── nodestats │ ├── 5.4.2.json │ ├── 5.6.16.json │ ├── 6.5.4.json │ ├── 6.8.8.json │ ├── 7.13.1.json │ ├── 7.3.0.json │ ├── 7.6.1.json │ └── 7.6.2.json ├── settings-5.4.2.json ├── settings-7.3.0.json └── settings-merge-5.4.2.json ├── exec_observer ├── config.yaml └── dummy.sh ├── geoip ├── GeoIP2-City-Test.mmdb ├── GeoIP2-ISP-Test.mmdb └── GeoLite2-ASN-Test.mmdb ├── haproxy ├── haproxy.cfg └── stats.csv ├── influxdb └── docker-compose.yaml ├── journal └── export.txt ├── kafka ├── docker-compose-kafka.yml └── docker-compose-redpanda.yml ├── memcached ├── items.txt ├── settings.txt ├── slabs.txt └── stats.txt ├── netflow ├── flows.ipfix └── ipfix-information-elements.csv ├── nginx ├── docker-compose.yaml ├── nginx.conf └── nginx_auth_basic.conf ├── node ├── proc │ ├── 1 │ │ ├── mountinfo │ │ ├── mounts │ │ └── stat │ ├── 584 │ │ └── stat │ ├── 26231 │ │ ├── cmdline │ │ ├── comm │ │ ├── cwd │ │ ├── environ │ │ ├── exe │ │ ├── fd │ │ │ ├── 0 │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ ├── 3 │ │ │ └── 10 │ │ ├── fdinfo │ │ │ ├── 0 │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ ├── 3 │ │ │ └── 10 │ │ ├── io │ │ ├── limits │ │ ├── mountstats │ │ ├── net │ │ │ └── dev │ │ ├── ns │ │ │ ├── mnt │ │ │ └── net │ │ ├── root │ │ ├── schedstat │ │ ├── smaps │ │ ├── smaps_rollup │ │ ├── stat │ │ ├── status │ │ └── wchan │ ├── 26232 │ │ ├── cmdline │ │ ├── comm │ │ ├── cwd │ │ ├── fd │ │ │ ├── 0 │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ ├── 3 │ │ │ └── 4 │ │ ├── limits │ │ ├── maps │ │ ├── root │ │ ├── stat │ │ └── wchan │ ├── 26233 │ │ ├── cmdline │ │ └── schedstat │ ├── 26234 │ │ └── maps │ ├── buddyinfo │ ├── cmdline │ ├── cpuinfo │ ├── crypto │ ├── diskstats │ ├── fs │ │ ├── fscache │ │ │ └── stats │ │ └── xfs │ │ │ └── stat │ ├── loadavg │ ├── mdstat │ ├── meminfo │ ├── mounts │ ├── net │ │ ├── arp │ │ ├── dev │ │ ├── ip_vs │ │ ├── ip_vs_stats │ │ ├── netstat │ │ ├── protocols │ │ ├── rpc │ │ │ ├── nfs │ │ │ └── nfsd │ │ ├── snmp │ │ ├── snmp6 │ │ ├── sockstat │ │ ├── sockstat6 │ │ ├── softnet_stat │ │ ├── softnet_stat.broken │ │ ├── stat │ │ │ ├── arp_cache │ │ │ └── ndisc_cache │ │ ├── tcp │ │ ├── tcp6 │ │ ├── udp │ │ ├── udp6 │ │ ├── udp_broken │ │ ├── unix │ │ ├── unix_without_inode │ │ └── xfrm_stat │ ├── pressure │ │ ├── cpu │ │ ├── io │ │ └── memory │ ├── schedstat │ ├── self │ ├── slabinfo │ ├── softirqs │ ├── spl │ │ └── kstat │ │ │ └── zfs │ │ │ ├── abdstats │ │ │ ├── arcstats │ │ │ ├── dbuf_stats │ │ │ ├── dmu_tx │ │ │ ├── dnodestats │ │ │ ├── fm │ │ │ ├── pool1 │ │ │ ├── io │ │ │ ├── objset-1 │ │ │ ├── objset-2 │ │ │ └── state │ │ │ ├── poolz1 │ │ │ ├── io │ │ │ ├── objset-1 │ │ │ ├── objset-2 │ │ │ └── state │ │ │ ├── vdev_cache_stats │ │ │ ├── vdev_mirror_stats │ │ │ ├── xuio_stats │ │ │ ├── zfetchstats │ │ │ └── zil │ ├── stat │ ├── swaps │ ├── symlinktargets │ │ ├── README │ │ ├── abc │ │ ├── def │ │ ├── ghi │ │ ├── uvw │ │ └── xyz │ ├── sys │ │ ├── fs │ │ │ └── file-nr │ │ ├── kernel │ │ │ └── random │ │ │ │ ├── entropy_avail │ │ │ │ ├── poolsize │ │ │ │ ├── urandom_min_reseed_secs │ │ │ │ └── write_wakeup_threshold │ │ └── vm │ │ │ ├── admin_reserve_kbytes │ │ │ ├── block_dump │ │ │ ├── compact_unevictable_allowed │ │ │ ├── dirty_background_bytes │ │ │ ├── dirty_background_ratio │ │ │ ├── dirty_bytes │ │ │ ├── dirty_expire_centisecs │ │ │ ├── dirty_ratio │ │ │ ├── dirty_writeback_centisecs │ │ │ ├── dirtytime_expire_seconds │ │ │ ├── drop_caches │ │ │ ├── extfrag_threshold │ │ │ ├── hugetlb_shm_group │ │ │ ├── laptop_mode │ │ │ ├── legacy_va_layout │ │ │ ├── lowmem_reserve_ratio │ │ │ ├── max_map_count │ │ │ ├── memory_failure_early_kill │ │ │ ├── memory_failure_recovery │ │ │ ├── min_free_kbytes │ │ │ ├── min_slab_ratio │ │ │ ├── min_unmapped_ratio │ │ │ ├── mmap_min_addr │ │ │ ├── nr_hugepages │ │ │ ├── nr_hugepages_mempolicy │ │ │ ├── nr_overcommit_hugepages │ │ │ ├── numa_stat │ │ │ ├── numa_zonelist_order │ │ │ ├── oom_dump_tasks │ │ │ ├── oom_kill_allocating_task │ │ │ ├── overcommit_kbytes │ │ │ ├── overcommit_memory │ │ │ ├── overcommit_ratio │ │ │ ├── page-cluster │ │ │ ├── panic_on_oom │ │ │ ├── percpu_pagelist_fraction │ │ │ ├── stat_interval │ │ │ ├── swappiness │ │ │ ├── user_reserve_kbytes │ │ │ ├── vfs_cache_pressure │ │ │ ├── watermark_boost_factor │ │ │ ├── watermark_scale_factor │ │ │ └── zone_reclaim_mode │ ├── uptime │ ├── vmstat │ └── zoneinfo ├── sys │ ├── block │ │ ├── dm-0 │ │ │ └── stat │ │ └── sda │ │ │ ├── queue │ │ │ ├── add_random │ │ │ ├── chunk_sectors │ │ │ ├── dax │ │ │ ├── discard_granularity │ │ │ ├── discard_max_bytes │ │ │ ├── discard_max_hw_bytes │ │ │ ├── discard_zeroes_data │ │ │ ├── fua │ │ │ ├── hw_sector_size │ │ │ ├── io_poll │ │ │ ├── io_poll_delay │ │ │ ├── io_timeout │ │ │ ├── iosched │ │ │ │ ├── back_seek_max │ │ │ │ ├── back_seek_penalty │ │ │ │ ├── fifo_expire_async │ │ │ │ ├── fifo_expire_sync │ │ │ │ ├── low_latency │ │ │ │ ├── max_budget │ │ │ │ ├── slice_idle │ │ │ │ ├── slice_idle_us │ │ │ │ ├── strict_guarantees │ │ │ │ └── timeout_sync │ │ │ ├── iostats │ │ │ ├── logical_block_size │ │ │ ├── max_discard_segments │ │ │ ├── max_hw_sectors_kb │ │ │ ├── max_integrity_segments │ │ │ ├── max_sectors_kb │ │ │ ├── max_segment_size │ │ │ ├── max_segments │ │ │ ├── minimum_io_size │ │ │ ├── nomerges │ │ │ ├── nr_requests │ │ │ ├── nr_zones │ │ │ ├── optimal_io_size │ │ │ ├── physical_block_size │ │ │ ├── read_ahead_kb │ │ │ ├── rotational │ │ │ ├── rq_affinity │ │ │ ├── scheduler │ │ │ ├── wbt_lat_usec │ │ │ ├── write_cache │ │ │ ├── write_same_max_bytes │ │ │ ├── write_zeroes_max_bytes │ │ │ └── zoned │ │ │ └── stat │ ├── class │ │ ├── dmi │ │ │ └── id │ │ │ │ ├── bios_date │ │ │ │ ├── bios_release │ │ │ │ ├── bios_vendor │ │ │ │ ├── bios_version │ │ │ │ ├── board_name │ │ │ │ ├── board_serial │ │ │ │ ├── board_vendor │ │ │ │ ├── board_version │ │ │ │ ├── chassis_asset_tag │ │ │ │ ├── chassis_serial │ │ │ │ ├── chassis_type │ │ │ │ ├── chassis_vendor │ │ │ │ ├── chassis_version │ │ │ │ ├── modalias │ │ │ │ ├── product_family │ │ │ │ ├── product_name │ │ │ │ ├── product_serial │ │ │ │ ├── product_sku │ │ │ │ ├── product_uuid │ │ │ │ ├── product_version │ │ │ │ ├── sys_vendor │ │ │ │ └── uevent │ │ ├── drm │ │ │ └── card0 │ │ │ │ └── device │ │ │ │ ├── aer_dev_correctable │ │ │ │ ├── aer_dev_fatal │ │ │ │ ├── aer_dev_nonfatal │ │ │ │ ├── ari_enabled │ │ │ │ ├── boot_vga │ │ │ │ ├── broken_parity_status │ │ │ │ ├── class │ │ │ │ ├── consistent_dma_mask_bits │ │ │ │ ├── current_link_speed │ │ │ │ ├── current_link_width │ │ │ │ ├── d3cold_allowed │ │ │ │ ├── device │ │ │ │ ├── dma_mask_bits │ │ │ │ ├── driver_override │ │ │ │ ├── enable │ │ │ │ ├── gpu_busy_percent │ │ │ │ ├── irq │ │ │ │ ├── local_cpulist │ │ │ │ ├── local_cpus │ │ │ │ ├── max_link_speed │ │ │ │ ├── max_link_width │ │ │ │ ├── mem_info_gtt_total │ │ │ │ ├── mem_info_gtt_used │ │ │ │ ├── mem_info_vis_vram_total │ │ │ │ ├── mem_info_vis_vram_used │ │ │ │ ├── mem_info_vram_total │ │ │ │ ├── mem_info_vram_used │ │ │ │ ├── mem_info_vram_vendor │ │ │ │ ├── modalias │ │ │ │ ├── msi_bus │ │ │ │ ├── numa_node │ │ │ │ ├── pcie_bw │ │ │ │ ├── pcie_replay_count │ │ │ │ ├── power_dpm_force_performance_level │ │ │ │ ├── power_dpm_state │ │ │ │ ├── power_state │ │ │ │ ├── pp_cur_state │ │ │ │ ├── pp_dpm_dcefclk │ │ │ │ ├── pp_dpm_mclk │ │ │ │ ├── pp_dpm_pcie │ │ │ │ ├── pp_dpm_sclk │ │ │ │ ├── pp_dpm_socclk │ │ │ │ ├── pp_features │ │ │ │ ├── pp_force_state │ │ │ │ ├── pp_mclk_od │ │ │ │ ├── pp_num_states │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ ├── pp_power_profile_mode │ │ │ │ ├── pp_sclk_od │ │ │ │ ├── product_name │ │ │ │ ├── product_number │ │ │ │ ├── resource │ │ │ │ ├── revision │ │ │ │ ├── serial_number │ │ │ │ ├── subsystem_device │ │ │ │ ├── subsystem_vendor │ │ │ │ ├── thermal_throttling_logging │ │ │ │ ├── uevent │ │ │ │ ├── unique_id │ │ │ │ ├── vbios_version │ │ │ │ └── vendor │ │ ├── fc_host │ │ │ └── host0 │ │ │ │ ├── dev_loss_tmo │ │ │ │ ├── fabric_name │ │ │ │ ├── node_name │ │ │ │ ├── port_id │ │ │ │ ├── port_name │ │ │ │ ├── port_state │ │ │ │ ├── port_type │ │ │ │ ├── speed │ │ │ │ ├── statistics │ │ │ │ ├── dumped_frames │ │ │ │ ├── error_frames │ │ │ │ ├── fcp_packet_aborts │ │ │ │ ├── invalid_crc_count │ │ │ │ ├── invalid_tx_word_count │ │ │ │ ├── link_failure_count │ │ │ │ ├── loss_of_signal_count │ │ │ │ ├── loss_of_sync_count │ │ │ │ ├── nos_count │ │ │ │ ├── rx_frames │ │ │ │ ├── rx_words │ │ │ │ ├── seconds_since_last_reset │ │ │ │ ├── tx_frames │ │ │ │ └── tx_words │ │ │ │ ├── supported_classes │ │ │ │ ├── supported_speeds │ │ │ │ └── symbolic_name │ │ ├── hwmon │ │ │ ├── hwmon0 │ │ │ ├── hwmon1 │ │ │ ├── hwmon2 │ │ │ ├── hwmon3 │ │ │ └── hwmon4 │ │ │ │ ├── temp1_crit │ │ │ │ ├── temp1_crit_alarm │ │ │ │ ├── temp1_input │ │ │ │ ├── temp1_label │ │ │ │ ├── temp1_max │ │ │ │ ├── temp2_crit │ │ │ │ ├── temp2_crit_alarm │ │ │ │ ├── temp2_input │ │ │ │ ├── temp2_label │ │ │ │ └── temp2_max │ │ ├── infiniband │ │ │ ├── hfi1_0 │ │ │ │ ├── board_id │ │ │ │ ├── fw_ver │ │ │ │ └── ports │ │ │ │ │ └── 1 │ │ │ │ │ ├── counters │ │ │ │ │ ├── VL15_dropped │ │ │ │ │ ├── excessive_buffer_overrun_errors │ │ │ │ │ ├── link_downed │ │ │ │ │ ├── link_error_recovery │ │ │ │ │ ├── local_link_integrity_errors │ │ │ │ │ ├── port_rcv_constraint_errors │ │ │ │ │ ├── port_rcv_data │ │ │ │ │ ├── port_rcv_errors │ │ │ │ │ ├── port_rcv_packets │ │ │ │ │ ├── port_rcv_remote_physical_errors │ │ │ │ │ ├── port_rcv_switch_relay_errors │ │ │ │ │ ├── port_xmit_constraint_errors │ │ │ │ │ ├── port_xmit_data │ │ │ │ │ ├── port_xmit_discards │ │ │ │ │ ├── port_xmit_packets │ │ │ │ │ ├── port_xmit_wait │ │ │ │ │ └── symbol_error │ │ │ │ │ ├── phys_state │ │ │ │ │ ├── rate │ │ │ │ │ └── state │ │ │ └── mlx4_0 │ │ │ │ ├── board_id │ │ │ │ ├── fw_ver │ │ │ │ ├── hca_type │ │ │ │ └── ports │ │ │ │ ├── 1 │ │ │ │ ├── counters │ │ │ │ │ ├── VL15_dropped │ │ │ │ │ ├── excessive_buffer_overrun_errors │ │ │ │ │ ├── link_downed │ │ │ │ │ ├── link_error_recovery │ │ │ │ │ ├── local_link_integrity_errors │ │ │ │ │ ├── port_rcv_constraint_errors │ │ │ │ │ ├── port_rcv_data │ │ │ │ │ ├── port_rcv_errors │ │ │ │ │ ├── port_rcv_packets │ │ │ │ │ ├── port_rcv_remote_physical_errors │ │ │ │ │ ├── port_rcv_switch_relay_errors │ │ │ │ │ ├── port_xmit_constraint_errors │ │ │ │ │ ├── port_xmit_data │ │ │ │ │ ├── port_xmit_discards │ │ │ │ │ ├── port_xmit_packets │ │ │ │ │ ├── port_xmit_wait │ │ │ │ │ └── symbol_error │ │ │ │ ├── phys_state │ │ │ │ ├── rate │ │ │ │ └── state │ │ │ │ └── 2 │ │ │ │ ├── counters │ │ │ │ ├── VL15_dropped │ │ │ │ ├── excessive_buffer_overrun_errors │ │ │ │ ├── link_downed │ │ │ │ ├── link_error_recovery │ │ │ │ ├── local_link_integrity_errors │ │ │ │ ├── port_rcv_constraint_errors │ │ │ │ ├── port_rcv_data │ │ │ │ ├── port_rcv_errors │ │ │ │ ├── port_rcv_packets │ │ │ │ ├── port_rcv_remote_physical_errors │ │ │ │ ├── port_rcv_switch_relay_errors │ │ │ │ ├── port_xmit_constraint_errors │ │ │ │ ├── port_xmit_data │ │ │ │ ├── port_xmit_discards │ │ │ │ ├── port_xmit_packets │ │ │ │ ├── port_xmit_wait │ │ │ │ └── symbol_error │ │ │ │ ├── phys_state │ │ │ │ ├── rate │ │ │ │ └── state │ │ ├── net │ │ │ ├── bond0 │ │ │ │ ├── addr_assign_type │ │ │ │ ├── addr_len │ │ │ │ ├── address │ │ │ │ ├── bonding │ │ │ │ │ └── slaves │ │ │ │ ├── broadcast │ │ │ │ ├── carrier │ │ │ │ ├── carrier_changes │ │ │ │ ├── carrier_down_count │ │ │ │ ├── carrier_up_count │ │ │ │ ├── dev_id │ │ │ │ ├── dormant │ │ │ │ ├── duplex │ │ │ │ ├── flags │ │ │ │ ├── ifalias │ │ │ │ ├── ifindex │ │ │ │ ├── iflink │ │ │ │ ├── link_mode │ │ │ │ ├── mtu │ │ │ │ ├── name_assign_type │ │ │ │ ├── netdev_group │ │ │ │ ├── operstate │ │ │ │ ├── phys_port_id │ │ │ │ ├── phys_port_name │ │ │ │ ├── phys_switch_id │ │ │ │ ├── speed │ │ │ │ ├── tx_queue_len │ │ │ │ └── type │ │ │ ├── bonding_masters │ │ │ ├── dmz │ │ │ │ ├── addr_assign_type │ │ │ │ ├── addr_len │ │ │ │ ├── address │ │ │ │ ├── bonding │ │ │ │ │ └── slaves │ │ │ │ ├── broadcast │ │ │ │ ├── carrier │ │ │ │ ├── carrier_changes │ │ │ │ ├── carrier_down_count │ │ │ │ ├── carrier_up_count │ │ │ │ ├── dev_id │ │ │ │ ├── dormant │ │ │ │ ├── duplex │ │ │ │ ├── flags │ │ │ │ ├── ifalias │ │ │ │ ├── ifindex │ │ │ │ ├── iflink │ │ │ │ ├── link_mode │ │ │ │ ├── mtu │ │ │ │ ├── name_assign_type │ │ │ │ ├── netdev_group │ │ │ │ ├── operstate │ │ │ │ ├── phys_port_id │ │ │ │ ├── phys_port_name │ │ │ │ ├── phys_switch_id │ │ │ │ ├── slave_eth0 │ │ │ │ │ ├── bonding_slave │ │ │ │ │ │ └── mii_status │ │ │ │ │ └── operstate │ │ │ │ ├── slave_eth4 │ │ │ │ │ ├── bonding_slave │ │ │ │ │ │ └── mii_status │ │ │ │ │ └── operstate │ │ │ │ ├── speed │ │ │ │ ├── tx_queue_len │ │ │ │ └── type │ │ │ ├── eth0 │ │ │ │ ├── addr_assign_type │ │ │ │ ├── addr_len │ │ │ │ ├── address │ │ │ │ ├── broadcast │ │ │ │ ├── carrier │ │ │ │ ├── carrier_changes │ │ │ │ ├── carrier_down_count │ │ │ │ ├── carrier_up_count │ │ │ │ ├── dev_id │ │ │ │ ├── device │ │ │ │ ├── dormant │ │ │ │ ├── duplex │ │ │ │ ├── flags │ │ │ │ ├── ifalias │ │ │ │ ├── ifindex │ │ │ │ ├── iflink │ │ │ │ ├── link_mode │ │ │ │ ├── mtu │ │ │ │ ├── name_assign_type │ │ │ │ ├── netdev_group │ │ │ │ ├── operstate │ │ │ │ ├── phys_port_id │ │ │ │ ├── phys_port_name │ │ │ │ ├── phys_switch_id │ │ │ │ ├── speed │ │ │ │ ├── tx_queue_len │ │ │ │ └── type │ │ │ └── int │ │ │ │ ├── addr_assign_type │ │ │ │ ├── addr_len │ │ │ │ ├── address │ │ │ │ ├── bonding │ │ │ │ └── slaves │ │ │ │ ├── broadcast │ │ │ │ ├── carrier │ │ │ │ ├── carrier_changes │ │ │ │ ├── carrier_down_count │ │ │ │ ├── carrier_up_count │ │ │ │ ├── dev_id │ │ │ │ ├── dormant │ │ │ │ ├── duplex │ │ │ │ ├── flags │ │ │ │ ├── ifalias │ │ │ │ ├── ifindex │ │ │ │ ├── iflink │ │ │ │ ├── link_mode │ │ │ │ ├── mtu │ │ │ │ ├── name_assign_type │ │ │ │ ├── netdev_group │ │ │ │ ├── operstate │ │ │ │ ├── phys_port_id │ │ │ │ ├── phys_port_name │ │ │ │ ├── phys_switch_id │ │ │ │ ├── slave_eth1 │ │ │ │ ├── bonding_slave │ │ │ │ │ └── mii_status │ │ │ │ └── operstate │ │ │ │ ├── slave_eth5 │ │ │ │ ├── bonding_slave │ │ │ │ │ └── mii_status │ │ │ │ └── operstate │ │ │ │ ├── speed │ │ │ │ ├── tx_queue_len │ │ │ │ └── type │ │ ├── nvme │ │ │ └── nvme0 │ │ │ │ ├── firmware_rev │ │ │ │ ├── model │ │ │ │ ├── serial │ │ │ │ └── state │ │ ├── power_supply │ │ │ ├── AC │ │ │ └── BAT0 │ │ ├── powercap │ │ │ ├── intel-rapl │ │ │ │ ├── enabled │ │ │ │ └── uevent │ │ │ ├── intel-rapl:0 │ │ │ │ ├── constraint_0_max_power_uw │ │ │ │ ├── constraint_0_name │ │ │ │ ├── constraint_0_power_limit_uw │ │ │ │ ├── constraint_0_time_window_us │ │ │ │ ├── constraint_1_max_power_uw │ │ │ │ ├── constraint_1_name │ │ │ │ ├── constraint_1_power_limit_uw │ │ │ │ ├── constraint_1_time_window_us │ │ │ │ ├── enabled │ │ │ │ ├── energy_uj │ │ │ │ ├── max_energy_range_uj │ │ │ │ ├── name │ │ │ │ └── uevent │ │ │ ├── intel-rapl:0:0 │ │ │ │ ├── constraint_0_max_power_uw │ │ │ │ ├── constraint_0_name │ │ │ │ ├── constraint_0_power_limit_uw │ │ │ │ ├── constraint_0_time_window_us │ │ │ │ ├── enabled │ │ │ │ ├── energy_uj │ │ │ │ ├── max_energy_range_uj │ │ │ │ ├── name │ │ │ │ └── uevent │ │ │ └── intel-rapl:a │ │ │ │ ├── constraint_0_max_power_uw │ │ │ │ ├── constraint_0_name │ │ │ │ ├── constraint_0_power_limit_uw │ │ │ │ ├── constraint_0_time_window_us │ │ │ │ ├── constraint_1_max_power_uw │ │ │ │ ├── constraint_1_name │ │ │ │ ├── constraint_1_power_limit_uw │ │ │ │ ├── constraint_1_time_window_us │ │ │ │ ├── enabled │ │ │ │ ├── energy_uj │ │ │ │ ├── max_energy_range_uj │ │ │ │ ├── name │ │ │ │ └── uevent │ │ ├── scsi_tape │ │ │ ├── nst0 │ │ │ ├── nst0a │ │ │ ├── nst0l │ │ │ ├── nst0m │ │ │ ├── st0 │ │ │ ├── st0a │ │ │ ├── st0l │ │ │ └── st0m │ │ └── thermal │ │ │ ├── cooling_device0 │ │ │ ├── cur_state │ │ │ ├── max_state │ │ │ └── type │ │ │ ├── cooling_device1 │ │ │ ├── cur_state │ │ │ ├── max_state │ │ │ └── type │ │ │ ├── thermal_zone0 │ │ │ ├── policy │ │ │ ├── temp │ │ │ └── type │ │ │ └── thermal_zone1 │ │ │ ├── mode │ │ │ ├── passive │ │ │ ├── policy │ │ │ ├── temp │ │ │ └── type │ ├── devices │ │ ├── LNXSYSTM:00 │ │ │ └── LNXSYBUS:00 │ │ │ │ └── PNP0A08:00 │ │ │ │ └── device:00 │ │ │ │ └── PNP0C09:00 │ │ │ │ ├── ACPI0003:00 │ │ │ │ └── power_supply │ │ │ │ │ └── AC │ │ │ │ │ ├── device │ │ │ │ │ ├── online │ │ │ │ │ ├── power │ │ │ │ │ ├── async │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ ├── control │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ ├── runtime_status │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ ├── runtime_usage │ │ │ │ │ ├── wakeup │ │ │ │ │ ├── wakeup_abort_count │ │ │ │ │ ├── wakeup_active │ │ │ │ │ ├── wakeup_active_count │ │ │ │ │ ├── wakeup_count │ │ │ │ │ ├── wakeup_expire_count │ │ │ │ │ ├── wakeup_last_time_ms │ │ │ │ │ ├── wakeup_max_time_ms │ │ │ │ │ ├── wakeup_prevent_sleep_time_ms │ │ │ │ │ └── wakeup_total_time_ms │ │ │ │ │ ├── subsystem │ │ │ │ │ ├── type │ │ │ │ │ └── uevent │ │ │ │ └── PNP0C0A:00 │ │ │ │ └── power_supply │ │ │ │ └── BAT0 │ │ │ │ ├── alarm │ │ │ │ ├── capacity │ │ │ │ ├── capacity_level │ │ │ │ ├── charge_start_threshold │ │ │ │ ├── charge_stop_threshold │ │ │ │ ├── cycle_count │ │ │ │ ├── device │ │ │ │ ├── energy_full │ │ │ │ ├── energy_full_design │ │ │ │ ├── energy_now │ │ │ │ ├── manufacturer │ │ │ │ ├── model_name │ │ │ │ ├── power │ │ │ │ ├── async │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ ├── control │ │ │ │ ├── runtime_active_kids │ │ │ │ ├── runtime_active_time │ │ │ │ ├── runtime_enabled │ │ │ │ ├── runtime_status │ │ │ │ ├── runtime_suspended_time │ │ │ │ └── runtime_usage │ │ │ │ ├── power_now │ │ │ │ ├── present │ │ │ │ ├── serial_number │ │ │ │ ├── status │ │ │ │ ├── subsystem │ │ │ │ ├── technology │ │ │ │ ├── type │ │ │ │ ├── uevent │ │ │ │ ├── voltage_min_design │ │ │ │ └── voltage_now │ │ ├── pci0000:00 │ │ │ ├── 0000:00:00.0 │ │ │ │ └── host0 │ │ │ │ │ └── port-0:0 │ │ │ │ │ └── end_device-0:0 │ │ │ │ │ └── target0:0:0 │ │ │ │ │ └── 0:0:0:0 │ │ │ │ │ └── scsi_tape │ │ │ │ │ ├── nst0 │ │ │ │ │ └── stats │ │ │ │ │ │ ├── in_flight │ │ │ │ │ │ ├── io_ns │ │ │ │ │ │ ├── other_cnt │ │ │ │ │ │ ├── read_byte_cnt │ │ │ │ │ │ ├── read_cnt │ │ │ │ │ │ ├── read_ns │ │ │ │ │ │ ├── resid_cnt │ │ │ │ │ │ ├── write_byte_cnt │ │ │ │ │ │ ├── write_cnt │ │ │ │ │ │ └── write_ns │ │ │ │ │ ├── nst0a │ │ │ │ │ └── stats │ │ │ │ │ │ ├── in_flight │ │ │ │ │ │ ├── io_ns │ │ │ │ │ │ ├── other_cnt │ │ │ │ │ │ ├── read_byte_cnt │ │ │ │ │ │ ├── read_cnt │ │ │ │ │ │ ├── read_ns │ │ │ │ │ │ ├── resid_cnt │ │ │ │ │ │ ├── write_byte_cnt │ │ │ │ │ │ ├── write_cnt │ │ │ │ │ │ └── write_ns │ │ │ │ │ ├── nst0l │ │ │ │ │ └── stats │ │ │ │ │ │ ├── in_flight │ │ │ │ │ │ ├── io_ns │ │ │ │ │ │ ├── other_cnt │ │ │ │ │ │ ├── read_byte_cnt │ │ │ │ │ │ ├── read_cnt │ │ │ │ │ │ ├── read_ns │ │ │ │ │ │ ├── resid_cnt │ │ │ │ │ │ ├── write_byte_cnt │ │ │ │ │ │ ├── write_cnt │ │ │ │ │ │ └── write_ns │ │ │ │ │ ├── nst0m │ │ │ │ │ └── stats │ │ │ │ │ │ ├── in_flight │ │ │ │ │ │ ├── io_ns │ │ │ │ │ │ ├── other_cnt │ │ │ │ │ │ ├── read_byte_cnt │ │ │ │ │ │ ├── read_cnt │ │ │ │ │ │ ├── read_ns │ │ │ │ │ │ ├── resid_cnt │ │ │ │ │ │ ├── write_byte_cnt │ │ │ │ │ │ ├── write_cnt │ │ │ │ │ │ └── write_ns │ │ │ │ │ ├── st0 │ │ │ │ │ └── stats │ │ │ │ │ │ ├── in_flight │ │ │ │ │ │ ├── io_ns │ │ │ │ │ │ ├── other_cnt │ │ │ │ │ │ ├── read_byte_cnt │ │ │ │ │ │ ├── read_cnt │ │ │ │ │ │ ├── read_ns │ │ │ │ │ │ ├── resid_cnt │ │ │ │ │ │ ├── write_byte_cnt │ │ │ │ │ │ ├── write_cnt │ │ │ │ │ │ └── write_ns │ │ │ │ │ ├── st0a │ │ │ │ │ └── stats │ │ │ │ │ │ ├── in_flight │ │ │ │ │ │ ├── io_ns │ │ │ │ │ │ ├── other_cnt │ │ │ │ │ │ ├── read_byte_cnt │ │ │ │ │ │ ├── read_cnt │ │ │ │ │ │ ├── read_ns │ │ │ │ │ │ ├── resid_cnt │ │ │ │ │ │ ├── write_byte_cnt │ │ │ │ │ │ ├── write_cnt │ │ │ │ │ │ └── write_ns │ │ │ │ │ ├── st0l │ │ │ │ │ └── stats │ │ │ │ │ │ ├── in_flight │ │ │ │ │ │ ├── io_ns │ │ │ │ │ │ ├── other_cnt │ │ │ │ │ │ ├── read_byte_cnt │ │ │ │ │ │ ├── read_cnt │ │ │ │ │ │ ├── read_ns │ │ │ │ │ │ ├── resid_cnt │ │ │ │ │ │ ├── write_byte_cnt │ │ │ │ │ │ ├── write_cnt │ │ │ │ │ │ └── write_ns │ │ │ │ │ └── st0m │ │ │ │ │ └── stats │ │ │ │ │ ├── in_flight │ │ │ │ │ ├── io_ns │ │ │ │ │ ├── other_cnt │ │ │ │ │ ├── read_byte_cnt │ │ │ │ │ ├── read_cnt │ │ │ │ │ ├── read_ns │ │ │ │ │ ├── resid_cnt │ │ │ │ │ ├── write_byte_cnt │ │ │ │ │ ├── write_cnt │ │ │ │ │ └── write_ns │ │ │ ├── 0000:00:0d.0 │ │ │ │ ├── ata4 │ │ │ │ │ └── host3 │ │ │ │ │ │ └── target3:0:0 │ │ │ │ │ │ └── 3:0:0:0 │ │ │ │ │ │ └── block │ │ │ │ │ │ └── sdb │ │ │ │ │ │ └── bcache │ │ │ │ │ │ ├── dirty_data │ │ │ │ │ │ ├── stats_day │ │ │ │ │ │ ├── bypassed │ │ │ │ │ │ ├── cache_bypass_hits │ │ │ │ │ │ ├── cache_bypass_misses │ │ │ │ │ │ ├── cache_hit_ratio │ │ │ │ │ │ ├── cache_hits │ │ │ │ │ │ ├── cache_miss_collisions │ │ │ │ │ │ ├── cache_misses │ │ │ │ │ │ └── cache_readaheads │ │ │ │ │ │ ├── stats_five_minute │ │ │ │ │ │ ├── bypassed │ │ │ │ │ │ ├── cache_bypass_hits │ │ │ │ │ │ ├── cache_bypass_misses │ │ │ │ │ │ ├── cache_hit_ratio │ │ │ │ │ │ ├── cache_hits │ │ │ │ │ │ ├── cache_miss_collisions │ │ │ │ │ │ ├── cache_misses │ │ │ │ │ │ └── cache_readaheads │ │ │ │ │ │ ├── stats_hour │ │ │ │ │ │ ├── bypassed │ │ │ │ │ │ ├── cache_bypass_hits │ │ │ │ │ │ ├── cache_bypass_misses │ │ │ │ │ │ ├── cache_hit_ratio │ │ │ │ │ │ ├── cache_hits │ │ │ │ │ │ ├── cache_miss_collisions │ │ │ │ │ │ ├── cache_misses │ │ │ │ │ │ └── cache_readaheads │ │ │ │ │ │ └── stats_total │ │ │ │ │ │ ├── bypassed │ │ │ │ │ │ ├── cache_bypass_hits │ │ │ │ │ │ ├── cache_bypass_misses │ │ │ │ │ │ ├── cache_hit_ratio │ │ │ │ │ │ ├── cache_hits │ │ │ │ │ │ ├── cache_miss_collisions │ │ │ │ │ │ ├── cache_misses │ │ │ │ │ │ └── cache_readaheads │ │ │ │ └── ata5 │ │ │ │ │ └── host4 │ │ │ │ │ └── target4:0:0 │ │ │ │ │ └── 4:0:0:0 │ │ │ │ │ └── block │ │ │ │ │ └── sdc │ │ │ │ │ └── bcache │ │ │ │ │ ├── io_errors │ │ │ │ │ ├── metadata_written │ │ │ │ │ ├── priority_stats │ │ │ │ │ └── written │ │ │ └── 0000:00:1f.6 │ │ │ │ ├── ari_enabled │ │ │ │ ├── broken_parity_status │ │ │ │ ├── class │ │ │ │ ├── consistent_dma_mask_bits │ │ │ │ ├── d3cold_allowed │ │ │ │ ├── device │ │ │ │ ├── dma_mask_bits │ │ │ │ ├── driver_override │ │ │ │ ├── enable │ │ │ │ ├── irq │ │ │ │ ├── local_cpulist │ │ │ │ ├── local_cpus │ │ │ │ ├── modalias │ │ │ │ ├── msi_bus │ │ │ │ ├── numa_node │ │ │ │ ├── resource │ │ │ │ ├── revision │ │ │ │ ├── subsystem_device │ │ │ │ ├── subsystem_vendor │ │ │ │ ├── uevent │ │ │ │ └── vendor │ │ ├── platform │ │ │ ├── applesmc.768 │ │ │ │ ├── fan1_input │ │ │ │ ├── fan1_label │ │ │ │ ├── fan1_manual │ │ │ │ ├── fan1_max │ │ │ │ ├── fan1_min │ │ │ │ ├── fan1_output │ │ │ │ ├── fan1_safe │ │ │ │ ├── fan2_input │ │ │ │ ├── fan2_label │ │ │ │ ├── fan2_manual │ │ │ │ ├── fan2_max │ │ │ │ ├── fan2_min │ │ │ │ ├── fan2_output │ │ │ │ ├── fan2_safe │ │ │ │ ├── hwmon │ │ │ │ │ └── hwmon2 │ │ │ │ │ │ └── device │ │ │ │ └── name │ │ │ ├── coretemp.0 │ │ │ │ └── hwmon │ │ │ │ │ └── hwmon0 │ │ │ │ │ ├── device │ │ │ │ │ ├── name │ │ │ │ │ ├── temp1_crit │ │ │ │ │ ├── temp1_crit_alarm │ │ │ │ │ ├── temp1_input │ │ │ │ │ ├── temp1_label │ │ │ │ │ ├── temp1_max │ │ │ │ │ ├── temp2_crit │ │ │ │ │ ├── temp2_crit_alarm │ │ │ │ │ ├── temp2_input │ │ │ │ │ ├── temp2_label │ │ │ │ │ ├── temp2_max │ │ │ │ │ ├── temp3_crit │ │ │ │ │ ├── temp3_crit_alarm │ │ │ │ │ ├── temp3_input │ │ │ │ │ ├── temp3_label │ │ │ │ │ ├── temp3_max │ │ │ │ │ ├── temp4_crit │ │ │ │ │ ├── temp4_crit_alarm │ │ │ │ │ ├── temp4_input │ │ │ │ │ ├── temp4_label │ │ │ │ │ ├── temp4_max │ │ │ │ │ ├── temp5_crit │ │ │ │ │ ├── temp5_crit_alarm │ │ │ │ │ ├── temp5_input │ │ │ │ │ ├── temp5_label │ │ │ │ │ └── temp5_max │ │ │ ├── coretemp.1 │ │ │ │ └── hwmon │ │ │ │ │ └── hwmon1 │ │ │ │ │ ├── device │ │ │ │ │ ├── name │ │ │ │ │ ├── temp1_crit │ │ │ │ │ ├── temp1_crit_alarm │ │ │ │ │ ├── temp1_input │ │ │ │ │ ├── temp1_label │ │ │ │ │ ├── temp1_max │ │ │ │ │ ├── temp2_crit │ │ │ │ │ ├── temp2_crit_alarm │ │ │ │ │ ├── temp2_input │ │ │ │ │ ├── temp2_label │ │ │ │ │ ├── temp2_max │ │ │ │ │ ├── temp3_crit │ │ │ │ │ ├── temp3_crit_alarm │ │ │ │ │ ├── temp3_input │ │ │ │ │ ├── temp3_label │ │ │ │ │ ├── temp3_max │ │ │ │ │ ├── temp4_crit │ │ │ │ │ ├── temp4_crit_alarm │ │ │ │ │ ├── temp4_input │ │ │ │ │ ├── temp4_label │ │ │ │ │ ├── temp4_max │ │ │ │ │ ├── temp5_crit │ │ │ │ │ ├── temp5_crit_alarm │ │ │ │ │ ├── temp5_input │ │ │ │ │ ├── temp5_label │ │ │ │ │ └── temp5_max │ │ │ └── nct6775.656 │ │ │ │ └── hwmon │ │ │ │ └── hwmon3 │ │ │ │ ├── fan2_alarm │ │ │ │ ├── fan2_beep │ │ │ │ ├── fan2_input │ │ │ │ ├── fan2_min │ │ │ │ ├── fan2_pulses │ │ │ │ ├── fan2_target │ │ │ │ ├── fan2_tolerance │ │ │ │ ├── in0_alarm │ │ │ │ ├── in0_beep │ │ │ │ ├── in0_input │ │ │ │ ├── in0_max │ │ │ │ ├── in0_min │ │ │ │ ├── in1_alarm │ │ │ │ ├── in1_beep │ │ │ │ ├── in1_input │ │ │ │ ├── in1_max │ │ │ │ ├── in1_min │ │ │ │ ├── intrusion0_alarm │ │ │ │ ├── intrusion0_beep │ │ │ │ ├── intrusion1_alarm │ │ │ │ ├── intrusion1_beep │ │ │ │ ├── name │ │ │ │ ├── pwm1_auto_point1_pwm │ │ │ │ ├── pwm1_auto_point1_temp │ │ │ │ ├── pwm1_auto_point2_pwm │ │ │ │ ├── pwm1_auto_point2_temp │ │ │ │ ├── pwm1_auto_point3_pwm │ │ │ │ ├── pwm1_auto_point3_temp │ │ │ │ ├── pwm1_auto_point4_pwm │ │ │ │ ├── pwm1_auto_point4_temp │ │ │ │ ├── pwm1_auto_point5_pwm │ │ │ │ ├── pwm1_auto_point5_temp │ │ │ │ ├── pwm1_crit_temp_tolerance │ │ │ │ ├── pwm1_enable │ │ │ │ ├── pwm1_floor │ │ │ │ ├── pwm1_mode │ │ │ │ ├── pwm1_start │ │ │ │ ├── pwm1_step_down_time │ │ │ │ ├── pwm1_step_up_time │ │ │ │ ├── pwm1_stop_time │ │ │ │ ├── pwm1_target_temp │ │ │ │ ├── pwm1_temp_sel │ │ │ │ ├── pwm1_temp_tolerance │ │ │ │ ├── pwm1_weight_duty_base │ │ │ │ ├── pwm1_weight_duty_step │ │ │ │ ├── pwm1_weight_temp_sel │ │ │ │ ├── pwm1_weight_temp_step │ │ │ │ ├── pwm1_weight_temp_step_base │ │ │ │ └── pwm1_weight_temp_step_tol │ │ ├── rbd │ │ │ ├── 0 │ │ │ │ ├── name │ │ │ │ └── pool │ │ │ └── 1 │ │ │ │ ├── name │ │ │ │ └── pool │ │ └── system │ │ │ ├── clocksource │ │ │ └── clocksource0 │ │ │ │ ├── available_clocksource │ │ │ │ └── current_clocksource │ │ │ ├── cpu │ │ │ ├── cpu0 │ │ │ │ ├── cpufreq │ │ │ │ ├── thermal_throttle │ │ │ │ │ ├── core_throttle_count │ │ │ │ │ └── package_throttle_count │ │ │ │ └── topology │ │ │ │ │ ├── core_id │ │ │ │ │ ├── core_siblings │ │ │ │ │ ├── core_siblings_list │ │ │ │ │ ├── physical_package_id │ │ │ │ │ ├── thread_siblings │ │ │ │ │ └── thread_siblings_list │ │ │ ├── cpu1 │ │ │ │ ├── cpufreq │ │ │ │ │ ├── cpuinfo_cur_freq │ │ │ │ │ ├── cpuinfo_max_freq │ │ │ │ │ ├── cpuinfo_min_freq │ │ │ │ │ ├── cpuinfo_transition_latency │ │ │ │ │ ├── related_cpus │ │ │ │ │ ├── scaling_available_governors │ │ │ │ │ ├── scaling_driver │ │ │ │ │ ├── scaling_governor │ │ │ │ │ ├── scaling_max_freq │ │ │ │ │ ├── scaling_min_freq │ │ │ │ │ └── scaling_setspeed │ │ │ │ ├── thermal_throttle │ │ │ │ │ ├── core_throttle_count │ │ │ │ │ └── package_throttle_count │ │ │ │ └── topology │ │ │ │ │ ├── core_id │ │ │ │ │ ├── core_siblings │ │ │ │ │ ├── core_siblings_list │ │ │ │ │ ├── physical_package_id │ │ │ │ │ ├── thread_siblings │ │ │ │ │ └── thread_siblings_list │ │ │ └── cpufreq │ │ │ │ └── policy0 │ │ │ │ ├── affected_cpus │ │ │ │ ├── cpuinfo_max_freq │ │ │ │ ├── cpuinfo_min_freq │ │ │ │ ├── cpuinfo_transition_latency │ │ │ │ ├── related_cpus │ │ │ │ ├── scaling_available_governors │ │ │ │ ├── scaling_cur_freq │ │ │ │ ├── scaling_driver │ │ │ │ ├── scaling_governor │ │ │ │ ├── scaling_max_freq │ │ │ │ ├── scaling_min_freq │ │ │ │ └── scaling_setspeed │ │ │ ├── edac │ │ │ └── mc │ │ │ │ └── mc0 │ │ │ │ ├── ce_count │ │ │ │ ├── ce_noinfo_count │ │ │ │ ├── csrow0 │ │ │ │ ├── ce_count │ │ │ │ └── ue_count │ │ │ │ ├── ue_count │ │ │ │ └── ue_noinfo_count │ │ │ └── node │ │ │ ├── node1 │ │ │ └── vmstat │ │ │ └── node2 │ │ │ └── vmstat │ ├── fs │ │ ├── bcache │ │ │ └── deaddd54-c735-46d5-868e-f331c5fd7c74 │ │ │ │ ├── average_key_size │ │ │ │ ├── bdev0 │ │ │ │ ├── dirty_data │ │ │ │ ├── stats_day │ │ │ │ │ ├── bypassed │ │ │ │ │ ├── cache_bypass_hits │ │ │ │ │ ├── cache_bypass_misses │ │ │ │ │ ├── cache_hit_ratio │ │ │ │ │ ├── cache_hits │ │ │ │ │ ├── cache_miss_collisions │ │ │ │ │ ├── cache_misses │ │ │ │ │ └── cache_readaheads │ │ │ │ ├── stats_five_minute │ │ │ │ │ ├── bypassed │ │ │ │ │ ├── cache_bypass_hits │ │ │ │ │ ├── cache_bypass_misses │ │ │ │ │ ├── cache_hit_ratio │ │ │ │ │ ├── cache_hits │ │ │ │ │ ├── cache_miss_collisions │ │ │ │ │ ├── cache_misses │ │ │ │ │ └── cache_readaheads │ │ │ │ ├── stats_hour │ │ │ │ │ ├── bypassed │ │ │ │ │ ├── cache_bypass_hits │ │ │ │ │ ├── cache_bypass_misses │ │ │ │ │ ├── cache_hit_ratio │ │ │ │ │ ├── cache_hits │ │ │ │ │ ├── cache_miss_collisions │ │ │ │ │ ├── cache_misses │ │ │ │ │ └── cache_readaheads │ │ │ │ ├── stats_total │ │ │ │ │ ├── bypassed │ │ │ │ │ ├── cache_bypass_hits │ │ │ │ │ ├── cache_bypass_misses │ │ │ │ │ ├── cache_hit_ratio │ │ │ │ │ ├── cache_hits │ │ │ │ │ ├── cache_miss_collisions │ │ │ │ │ ├── cache_misses │ │ │ │ │ └── cache_readaheads │ │ │ │ └── writeback_rate_debug │ │ │ │ ├── btree_cache_size │ │ │ │ ├── cache0 │ │ │ │ ├── io_errors │ │ │ │ ├── metadata_written │ │ │ │ ├── priority_stats │ │ │ │ └── written │ │ │ │ ├── cache_available_percent │ │ │ │ ├── congested │ │ │ │ ├── internal │ │ │ │ ├── active_journal_entries │ │ │ │ ├── btree_nodes │ │ │ │ ├── btree_read_average_duration_us │ │ │ │ └── cache_read_races │ │ │ │ ├── root_usage_percent │ │ │ │ ├── stats_day │ │ │ │ ├── bypassed │ │ │ │ ├── cache_bypass_hits │ │ │ │ ├── cache_bypass_misses │ │ │ │ ├── cache_hit_ratio │ │ │ │ ├── cache_hits │ │ │ │ ├── cache_miss_collisions │ │ │ │ ├── cache_misses │ │ │ │ └── cache_readaheads │ │ │ │ ├── stats_five_minute │ │ │ │ ├── bypassed │ │ │ │ ├── cache_bypass_hits │ │ │ │ ├── cache_bypass_misses │ │ │ │ ├── cache_hit_ratio │ │ │ │ ├── cache_hits │ │ │ │ ├── cache_miss_collisions │ │ │ │ ├── cache_misses │ │ │ │ └── cache_readaheads │ │ │ │ ├── stats_hour │ │ │ │ ├── bypassed │ │ │ │ ├── cache_bypass_hits │ │ │ │ ├── cache_bypass_misses │ │ │ │ ├── cache_hit_ratio │ │ │ │ ├── cache_hits │ │ │ │ ├── cache_miss_collisions │ │ │ │ ├── cache_misses │ │ │ │ └── cache_readaheads │ │ │ │ ├── stats_total │ │ │ │ ├── bypassed │ │ │ │ ├── cache_bypass_hits │ │ │ │ ├── cache_bypass_misses │ │ │ │ ├── cache_hit_ratio │ │ │ │ ├── cache_hits │ │ │ │ ├── cache_miss_collisions │ │ │ │ ├── cache_misses │ │ │ │ └── cache_readaheads │ │ │ │ └── tree_depth │ │ ├── btrfs │ │ │ ├── 0abb23a9-579b-43e6-ad30-227ef47fcb9d │ │ │ │ ├── allocation │ │ │ │ │ ├── data │ │ │ │ │ │ ├── bytes_may_use │ │ │ │ │ │ ├── bytes_pinned │ │ │ │ │ │ ├── bytes_readonly │ │ │ │ │ │ ├── bytes_reserved │ │ │ │ │ │ ├── bytes_used │ │ │ │ │ │ ├── disk_total │ │ │ │ │ │ ├── disk_used │ │ │ │ │ │ ├── flags │ │ │ │ │ │ ├── raid0 │ │ │ │ │ │ │ ├── total_bytes │ │ │ │ │ │ │ └── used_bytes │ │ │ │ │ │ ├── total_bytes │ │ │ │ │ │ └── total_bytes_pinned │ │ │ │ │ ├── global_rsv_reserved │ │ │ │ │ ├── global_rsv_size │ │ │ │ │ ├── metadata │ │ │ │ │ │ ├── bytes_may_use │ │ │ │ │ │ ├── bytes_pinned │ │ │ │ │ │ ├── bytes_readonly │ │ │ │ │ │ ├── bytes_reserved │ │ │ │ │ │ ├── bytes_used │ │ │ │ │ │ ├── disk_total │ │ │ │ │ │ ├── disk_used │ │ │ │ │ │ ├── flags │ │ │ │ │ │ ├── raid1 │ │ │ │ │ │ │ ├── total_bytes │ │ │ │ │ │ │ └── used_bytes │ │ │ │ │ │ ├── total_bytes │ │ │ │ │ │ └── total_bytes_pinned │ │ │ │ │ └── system │ │ │ │ │ │ ├── bytes_may_use │ │ │ │ │ │ ├── bytes_pinned │ │ │ │ │ │ ├── bytes_readonly │ │ │ │ │ │ ├── bytes_reserved │ │ │ │ │ │ ├── bytes_used │ │ │ │ │ │ ├── disk_total │ │ │ │ │ │ ├── disk_used │ │ │ │ │ │ ├── flags │ │ │ │ │ │ ├── raid1 │ │ │ │ │ │ ├── total_bytes │ │ │ │ │ │ └── used_bytes │ │ │ │ │ │ ├── total_bytes │ │ │ │ │ │ └── total_bytes_pinned │ │ │ │ ├── clone_alignment │ │ │ │ ├── devices │ │ │ │ │ ├── loop25 │ │ │ │ │ │ └── size │ │ │ │ │ └── loop26 │ │ │ │ │ │ └── size │ │ │ │ ├── features │ │ │ │ │ ├── big_metadata │ │ │ │ │ ├── extended_iref │ │ │ │ │ ├── mixed_backref │ │ │ │ │ └── skinny_metadata │ │ │ │ ├── label │ │ │ │ ├── metadata_uuid │ │ │ │ ├── nodesize │ │ │ │ ├── quota_override │ │ │ │ └── sectorsize │ │ │ └── 7f07c59f-6136-449c-ab87-e1cf2328731b │ │ │ │ ├── allocation │ │ │ │ ├── data │ │ │ │ │ ├── bytes_may_use │ │ │ │ │ ├── bytes_pinned │ │ │ │ │ ├── bytes_readonly │ │ │ │ │ ├── bytes_reserved │ │ │ │ │ ├── bytes_used │ │ │ │ │ ├── disk_total │ │ │ │ │ ├── disk_used │ │ │ │ │ ├── flags │ │ │ │ │ ├── raid5 │ │ │ │ │ │ ├── total_bytes │ │ │ │ │ │ └── used_bytes │ │ │ │ │ ├── total_bytes │ │ │ │ │ └── total_bytes_pinned │ │ │ │ ├── global_rsv_reserved │ │ │ │ ├── global_rsv_size │ │ │ │ ├── metadata │ │ │ │ │ ├── bytes_may_use │ │ │ │ │ ├── bytes_pinned │ │ │ │ │ ├── bytes_readonly │ │ │ │ │ ├── bytes_reserved │ │ │ │ │ ├── bytes_used │ │ │ │ │ ├── disk_total │ │ │ │ │ ├── disk_used │ │ │ │ │ ├── flags │ │ │ │ │ ├── raid6 │ │ │ │ │ │ ├── total_bytes │ │ │ │ │ │ └── used_bytes │ │ │ │ │ ├── total_bytes │ │ │ │ │ └── total_bytes_pinned │ │ │ │ └── system │ │ │ │ │ ├── bytes_may_use │ │ │ │ │ ├── bytes_pinned │ │ │ │ │ ├── bytes_readonly │ │ │ │ │ ├── bytes_reserved │ │ │ │ │ ├── bytes_used │ │ │ │ │ ├── disk_total │ │ │ │ │ ├── disk_used │ │ │ │ │ ├── flags │ │ │ │ │ ├── raid6 │ │ │ │ │ ├── total_bytes │ │ │ │ │ └── used_bytes │ │ │ │ │ ├── total_bytes │ │ │ │ │ └── total_bytes_pinned │ │ │ │ ├── clone_alignment │ │ │ │ ├── devices │ │ │ │ ├── loop22 │ │ │ │ ├── loop23 │ │ │ │ ├── loop24 │ │ │ │ └── loop25 │ │ │ │ ├── features │ │ │ │ ├── big_metadata │ │ │ │ ├── extended_iref │ │ │ │ ├── mixed_backref │ │ │ │ ├── raid56 │ │ │ │ └── skinny_metadata │ │ │ │ ├── label │ │ │ │ ├── metadata_uuid │ │ │ │ ├── nodesize │ │ │ │ ├── quota_override │ │ │ │ └── sectorsize │ │ └── xfs │ │ │ ├── sda1 │ │ │ └── stats │ │ │ │ └── stats │ │ │ └── sdb1 │ │ │ └── stats │ │ │ └── stats │ └── kernel │ │ └── config │ │ └── target │ │ ├── core │ │ ├── fileio_1 │ │ │ └── file_lio_1G │ │ │ │ ├── enable │ │ │ │ └── udev_path │ │ ├── iblock_0 │ │ │ └── block_lio_rbd1 │ │ │ │ ├── enable │ │ │ │ └── udev_path │ │ ├── rbd_0 │ │ │ └── iscsi-images-demo │ │ │ │ ├── enable │ │ │ │ └── udev_path │ │ └── rd_mcp_119 │ │ │ └── ramdisk_lio_1G │ │ │ ├── enable │ │ │ └── udev_path │ │ └── iscsi │ │ ├── iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0 │ │ └── tpgt_1 │ │ │ ├── enable │ │ │ └── lun │ │ │ └── lun_0 │ │ │ ├── 7f4a4eb56d │ │ │ └── statistics │ │ │ └── scsi_tgt_port │ │ │ ├── in_cmds │ │ │ ├── read_mbytes │ │ │ └── write_mbytes │ │ ├── iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab │ │ └── tpgt_1 │ │ │ ├── enable │ │ │ └── lun │ │ │ └── lun_0 │ │ │ ├── 795b7c7026 │ │ │ └── statistics │ │ │ └── scsi_tgt_port │ │ │ ├── in_cmds │ │ │ ├── read_mbytes │ │ │ └── write_mbytes │ │ ├── iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0 │ │ └── tpgt_1 │ │ │ ├── enable │ │ │ └── lun │ │ │ └── lun_0 │ │ │ ├── fff5e16686 │ │ │ └── statistics │ │ │ └── scsi_tgt_port │ │ │ ├── in_cmds │ │ │ ├── read_mbytes │ │ │ └── write_mbytes │ │ └── iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo │ │ └── tpgt_1 │ │ ├── enable │ │ └── lun │ │ └── lun_0 │ │ ├── eba1edf893 │ │ └── statistics │ │ └── scsi_tgt_port │ │ ├── in_cmds │ │ ├── read_mbytes │ │ └── write_mbytes └── usr │ └── lib │ └── os-release ├── nvidia ├── mock.sh ├── output_ubuntu_20.04_v465.27.txt ├── output_win10_v466.63.txt ├── sample-output.csv └── sample-source.sh ├── prometheus ├── remote_write.yml ├── vertex.yml └── vertex_prom_remote_write_sink.yml ├── redfish ├── dell_r720_power.json ├── idrac9 │ └── index.json └── xclarity │ └── index.json ├── socket.rs ├── syslog.rs ├── tail ├── gzipped.log └── utf-16le.log ├── topology.rs ├── util ├── mock │ └── mod.rs ├── mod.rs ├── topology.rs └── trace.rs └── zookeeper └── mntr.txt /.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | !./target/release/vertex -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- 1 | reorder_imports = true 2 | edition = "2024" -------------------------------------------------------------------------------- /lib/buffer/src/disk/tests/record.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/bytesize/src/external/mod.rs: -------------------------------------------------------------------------------- 1 | mod bytes; 2 | mod value; 3 | -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/array/generic.json: -------------------------------------------------------------------------------- 1 | [1, "two", 3.0, 4e0] -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/boolean/false.json: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/boolean/true.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/bytes/cn.json: -------------------------------------------------------------------------------- 1 | "九尾狐" -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/bytes/friendly.json: -------------------------------------------------------------------------------- 1 | "Just some friendly text." -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/bytes/ios-crashers.json: -------------------------------------------------------------------------------- 1 | "Powerلُلُصّبُلُلصّبُررً ॣ ॣh ॣ ॣ冗🏳0🌈️జ్ఞ‌ా" -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/bytes/jp-emoji.json: -------------------------------------------------------------------------------- 1 | "・( ̄∀ ̄)・:*:(。◕ ∀ ◕。)(ノಥ益ಥ)ノ ┻━┻" -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/bytes/quotes.json: -------------------------------------------------------------------------------- 1 | "'\"'\"''''" -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/bytes/zalgo.json: -------------------------------------------------------------------------------- 1 | "⁰⁴⁵\n₀₁₂\n⁰⁴⁵₀₁₂" -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/integer/forty-two.json: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/integer/maxint_32.json: -------------------------------------------------------------------------------- 1 | 2147483647 -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/integer/maxint_64.json: -------------------------------------------------------------------------------- 1 | 9223372036854775807 -------------------------------------------------------------------------------- /lib/event/tests/data/fixtures/value/null/null.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /lib/finalize/src/lib.rs: -------------------------------------------------------------------------------- 1 | mod finalization; 2 | mod finalizer; 3 | 4 | pub use finalization::*; 5 | pub use finalizer::*; 6 | -------------------------------------------------------------------------------- /lib/framework/tests/ca/intermediate/crlnumber: -------------------------------------------------------------------------------- 1 | 1000 -------------------------------------------------------------------------------- /lib/framework/tests/ca/intermediate/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /lib/framework/tests/ca/intermediate/serial: -------------------------------------------------------------------------------- 1 | 1001 2 | -------------------------------------------------------------------------------- /lib/framework/tests/ca/intermediate/serial.old: -------------------------------------------------------------------------------- 1 | 1000 -------------------------------------------------------------------------------- /lib/framework/tests/ca/localhost.v3.ext: -------------------------------------------------------------------------------- 1 | subjectAltName = DNS:localhost, DNS:*.localhost -------------------------------------------------------------------------------- /lib/framework/tests/ca/serial: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /lib/jaeger/src/translate/internal_to_proto.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/resolver/tests/case-hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 PreserveMe PreserveMe.local 2 | ::1 PreserveMe PreserveMe.local 3 | -------------------------------------------------------------------------------- /lib/resolver/tests/empty-resolv.conf: -------------------------------------------------------------------------------- 1 | # /etc/resolv.conf 2 | -------------------------------------------------------------------------------- /lib/resolver/tests/freebsd-usevc-resolv.conf: -------------------------------------------------------------------------------- 1 | options usevc -------------------------------------------------------------------------------- /lib/resolver/tests/invalid-ndots-resolv.conf: -------------------------------------------------------------------------------- 1 | options ndots:invalid -------------------------------------------------------------------------------- /lib/resolver/tests/large-ndots-resolv.conf: -------------------------------------------------------------------------------- 1 | options ndots:16 -------------------------------------------------------------------------------- /lib/resolver/tests/linux-use-vc-resolv.conf: -------------------------------------------------------------------------------- 1 | options use-vc -------------------------------------------------------------------------------- /lib/resolver/tests/negative-ndots-resolv.conf: -------------------------------------------------------------------------------- 1 | options ndots:-1 -------------------------------------------------------------------------------- /lib/resolver/tests/openbsd-tcp-resolv.conf: -------------------------------------------------------------------------------- 1 | options tcp -------------------------------------------------------------------------------- /lib/resolver/tests/single-request-reopen-resolv.conf: -------------------------------------------------------------------------------- 1 | options single-request-reopen -------------------------------------------------------------------------------- /lib/resolver/tests/single-request-resolv.conf: -------------------------------------------------------------------------------- 1 | options single-request -------------------------------------------------------------------------------- /lib/resolver/tests/singleline-hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.2 odin -------------------------------------------------------------------------------- /lib/sysinfo/src/lib.rs: -------------------------------------------------------------------------------- 1 | #[cfg(unix)] 2 | mod unix; 3 | 4 | #[cfg(unix)] 5 | pub use unix::*; 6 | -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/array/generic.json: -------------------------------------------------------------------------------- 1 | [1, "two", 3.0, 4e0] -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/boolean/false.json: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/boolean/true.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/bytes/cn.json: -------------------------------------------------------------------------------- 1 | "九尾狐" 2 | -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/bytes/friendly.json: -------------------------------------------------------------------------------- 1 | "Just some friendly text." 2 | -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/bytes/ios-crashers.json: -------------------------------------------------------------------------------- 1 | "Powerلُلُصّبُلُلصّبُررً ॣ ॣh ॣ ॣ冗🏳0🌈️జ్ఞ‌ా" 2 | -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/bytes/jp-emoji.json: -------------------------------------------------------------------------------- 1 | "・( ̄∀ ̄)・:*:(。◕ ∀ ◕。)(ノಥ益ಥ)ノ ┻━┻" 2 | -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/bytes/quotes.json: -------------------------------------------------------------------------------- 1 | "'\"'\"''''" 2 | -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/bytes/zalgo.json: -------------------------------------------------------------------------------- 1 | "⁰⁴⁵\n₀₁₂\n⁰⁴⁵₀₁₂" 2 | -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/integer/forty-two.json: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/integer/maxint_32.json: -------------------------------------------------------------------------------- 1 | 2147483647 2 | -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/integer/maxint_64.json: -------------------------------------------------------------------------------- 1 | 9223372036854775807 2 | -------------------------------------------------------------------------------- /lib/value/tests/data/fixtures/value/null/null.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /lib/vtl/tests/assignment/in_block.vtl: -------------------------------------------------------------------------------- 1 | if .num == 2 { 2 | foo = 1 3 | bar = foo + 2 4 | } 5 | 6 | .foo = 1 7 | -------------------------------------------------------------------------------- /lib/vtl/tests/string/format.vtl: -------------------------------------------------------------------------------- 1 | s = format("{}23{}", 1, "4") 2 | assert_eq(s, "1234") 3 | -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.87.0" 3 | -------------------------------------------------------------------------------- /scripts/pre-commit.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | make fmt -------------------------------------------------------------------------------- /src/sinks/http/mod.rs: -------------------------------------------------------------------------------- 1 | mod config; 2 | mod encoder; 3 | mod request_builder; 4 | mod service; 5 | mod sink; 6 | -------------------------------------------------------------------------------- /src/sinks/jaeger/grpc.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sinks/jaeger/udp.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sources/node/tapestats.rs: -------------------------------------------------------------------------------- 1 | //! Exposes statistics from /sys/class/scsi_tape 2 | -------------------------------------------------------------------------------- /src/sources/node/wifi.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/addr_assign_type: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/addr_len: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/address: -------------------------------------------------------------------------------- 1 | 01:01:01:01:01:01 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/broadcast: -------------------------------------------------------------------------------- 1 | ff:ff:ff:ff:ff:ff 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/carrier: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/carrier_changes: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/carrier_down_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/carrier_up_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/dev_id: -------------------------------------------------------------------------------- 1 | 0x20 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/dormant: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/duplex: -------------------------------------------------------------------------------- 1 | full 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/flags: -------------------------------------------------------------------------------- 1 | 0x1303 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/ifindex: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/iflink: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/link_mode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/mtu: -------------------------------------------------------------------------------- 1 | 1500 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/name_assign_type: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/netdev_group: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/speed: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/tx_queue_len: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bond0/type: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/bonding_masters: -------------------------------------------------------------------------------- 1 | bond0 dmz int 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/addr_assign_type: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/addr_len: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/address: -------------------------------------------------------------------------------- 1 | 01:01:01:01:01:01 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/bonding/slaves: -------------------------------------------------------------------------------- 1 | eth0 eth4 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/broadcast: -------------------------------------------------------------------------------- 1 | ff:ff:ff:ff:ff:ff 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/carrier: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/carrier_changes: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/carrier_down_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/carrier_up_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/dev_id: -------------------------------------------------------------------------------- 1 | 0x20 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/dormant: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/duplex: -------------------------------------------------------------------------------- 1 | full 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/flags: -------------------------------------------------------------------------------- 1 | 0x1303 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/ifindex: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/iflink: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/link_mode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/mtu: -------------------------------------------------------------------------------- 1 | 1500 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/name_assign_type: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/netdev_group: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/slave_eth0/bonding_slave/mii_status: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/slave_eth0/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/slave_eth4/bonding_slave/mii_status: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/slave_eth4/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/speed: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/tx_queue_len: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/dmz/type: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/addr_assign_type: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/addr_len: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/address: -------------------------------------------------------------------------------- 1 | 01:01:01:01:01:01 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/broadcast: -------------------------------------------------------------------------------- 1 | ff:ff:ff:ff:ff:ff 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/carrier: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/carrier_changes: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/carrier_down_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/carrier_up_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/dev_id: -------------------------------------------------------------------------------- 1 | 0x20 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/dormant: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/duplex: -------------------------------------------------------------------------------- 1 | full 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/flags: -------------------------------------------------------------------------------- 1 | 0x1303 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/ifindex: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/iflink: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/link_mode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/mtu: -------------------------------------------------------------------------------- 1 | 1500 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/name_assign_type: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/netdev_group: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/speed: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/tx_queue_len: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/eth0/type: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/addr_assign_type: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/addr_len: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/address: -------------------------------------------------------------------------------- 1 | 01:01:01:01:01:01 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/bonding/slaves: -------------------------------------------------------------------------------- 1 | eth5 eth1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/broadcast: -------------------------------------------------------------------------------- 1 | ff:ff:ff:ff:ff:ff 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/carrier: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/carrier_changes: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/carrier_down_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/carrier_up_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/dev_id: -------------------------------------------------------------------------------- 1 | 0x20 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/dormant: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/duplex: -------------------------------------------------------------------------------- 1 | full 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/flags: -------------------------------------------------------------------------------- 1 | 0x1303 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/ifindex: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/iflink: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/link_mode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/mtu: -------------------------------------------------------------------------------- 1 | 1500 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/name_assign_type: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/netdev_group: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/slave_eth1/bonding_slave/mii_status: -------------------------------------------------------------------------------- 1 | down 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/slave_eth1/operstate: -------------------------------------------------------------------------------- 1 | down 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/slave_eth5/bonding_slave/mii_status: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/slave_eth5/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/speed: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/tx_queue_len: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/bonding/sys/class/net/int/type: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/ca/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f1shl3gs/vertex/50c362a280e510f90dbb5a70b30721d59763ded4/tests/ca/index.txt -------------------------------------------------------------------------------- /tests/ca/intermediate/crlnumber: -------------------------------------------------------------------------------- 1 | 1000 -------------------------------------------------------------------------------- /tests/ca/intermediate/index.txt: -------------------------------------------------------------------------------- 1 | V 330724174652Z 1000 unknown /C=CN/ST=ZheJiang/L=HangZhou/O=Vertex/OU=vertex/CN=localhost 2 | -------------------------------------------------------------------------------- /tests/ca/intermediate/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /tests/ca/intermediate/serial: -------------------------------------------------------------------------------- 1 | 1001 2 | -------------------------------------------------------------------------------- /tests/ca/intermediate/serial.old: -------------------------------------------------------------------------------- 1 | 1000 -------------------------------------------------------------------------------- /tests/ca/localhost.v3.ext: -------------------------------------------------------------------------------- 1 | subjectAltName = DNS:localhost, DNS:*.localhost -------------------------------------------------------------------------------- /tests/ca/serial: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/nginx/nginx_auth_basic.conf: -------------------------------------------------------------------------------- 1 | tom:$apr1$8nZ7Ca0h$5bblL0iPjEblePudSptHk1 2 | -------------------------------------------------------------------------------- /tests/node/proc/26231/cmdline: -------------------------------------------------------------------------------- 1 | vimtest.go+10 -------------------------------------------------------------------------------- /tests/node/proc/26231/comm: -------------------------------------------------------------------------------- 1 | vim 2 | -------------------------------------------------------------------------------- /tests/node/proc/26231/cwd: -------------------------------------------------------------------------------- 1 | /usr/bin -------------------------------------------------------------------------------- /tests/node/proc/26231/exe: -------------------------------------------------------------------------------- 1 | /usr/bin/vim -------------------------------------------------------------------------------- /tests/node/proc/26231/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /tests/node/proc/26231/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /tests/node/proc/26231/fd/10: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /tests/node/proc/26231/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /tests/node/proc/26231/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /tests/node/proc/26231/fdinfo/1: -------------------------------------------------------------------------------- 1 | pos: 0 2 | flags: 02004002 3 | mnt_id: 13 4 | eventfd-count: 0 5 | -------------------------------------------------------------------------------- /tests/node/proc/26231/fdinfo/10: -------------------------------------------------------------------------------- 1 | pos: 0 2 | flags: 02004002 3 | mnt_id: 9 4 | -------------------------------------------------------------------------------- /tests/node/proc/26231/fdinfo/2: -------------------------------------------------------------------------------- 1 | pos: 0 2 | flags: 02004002 3 | mnt_id: 9 4 | -------------------------------------------------------------------------------- /tests/node/proc/26231/fdinfo/3: -------------------------------------------------------------------------------- 1 | pos: 0 2 | flags: 02004002 3 | mnt_id: 9 4 | -------------------------------------------------------------------------------- /tests/node/proc/26231/ns/mnt: -------------------------------------------------------------------------------- 1 | mnt:[4026531840] -------------------------------------------------------------------------------- /tests/node/proc/26231/ns/net: -------------------------------------------------------------------------------- 1 | net:[4026531993] -------------------------------------------------------------------------------- /tests/node/proc/26231/root: -------------------------------------------------------------------------------- 1 | / -------------------------------------------------------------------------------- /tests/node/proc/26231/schedstat: -------------------------------------------------------------------------------- 1 | 411605849 93680043 79 2 | -------------------------------------------------------------------------------- /tests/node/proc/26231/wchan: -------------------------------------------------------------------------------- 1 | poll_schedule_timeout -------------------------------------------------------------------------------- /tests/node/proc/26232/comm: -------------------------------------------------------------------------------- 1 | ata_sff 2 | -------------------------------------------------------------------------------- /tests/node/proc/26232/cwd: -------------------------------------------------------------------------------- 1 | /does/not/exist -------------------------------------------------------------------------------- /tests/node/proc/26232/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /tests/node/proc/26232/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /tests/node/proc/26232/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /tests/node/proc/26232/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /tests/node/proc/26232/fd/4: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /tests/node/proc/26232/root: -------------------------------------------------------------------------------- 1 | /does/not/exist -------------------------------------------------------------------------------- /tests/node/proc/26232/wchan: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /tests/node/proc/26233/cmdline: -------------------------------------------------------------------------------- 1 | com.github.uiautomator -------------------------------------------------------------------------------- /tests/node/proc/loadavg: -------------------------------------------------------------------------------- 1 | 0.02 0.04 0.05 1/497 11947 2 | -------------------------------------------------------------------------------- /tests/node/proc/net/softnet_stat.broken: -------------------------------------------------------------------------------- 1 | 00015c73 00020e76 F0000769 00000000 2 | -------------------------------------------------------------------------------- /tests/node/proc/net/udp_broken: -------------------------------------------------------------------------------- 1 | sl local_address rem_address st 2 | 1: 00000000:0016 00000000:0000 0A 3 | -------------------------------------------------------------------------------- /tests/node/proc/pressure/cpu: -------------------------------------------------------------------------------- 1 | some avg10=0.10 avg60=2.00 avg300=3.85 total=15 2 | -------------------------------------------------------------------------------- /tests/node/proc/self: -------------------------------------------------------------------------------- 1 | 26231 -------------------------------------------------------------------------------- /tests/node/proc/spl/kstat/zfs/pool1/state: -------------------------------------------------------------------------------- 1 | ONLINE 2 | -------------------------------------------------------------------------------- /tests/node/proc/spl/kstat/zfs/poolz1/state: -------------------------------------------------------------------------------- 1 | DEGRADED 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/fs/file-nr: -------------------------------------------------------------------------------- 1 | 1024 0 1631329 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/kernel/random/entropy_avail: -------------------------------------------------------------------------------- 1 | 3943 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/kernel/random/poolsize: -------------------------------------------------------------------------------- 1 | 4096 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/kernel/random/urandom_min_reseed_secs: -------------------------------------------------------------------------------- 1 | 60 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/kernel/random/write_wakeup_threshold: -------------------------------------------------------------------------------- 1 | 3072 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/admin_reserve_kbytes: -------------------------------------------------------------------------------- 1 | 8192 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/block_dump: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/compact_unevictable_allowed: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/dirty_background_bytes: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/dirty_background_ratio: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/dirty_bytes: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/dirty_expire_centisecs: -------------------------------------------------------------------------------- 1 | 3000 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/dirty_ratio: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/dirty_writeback_centisecs: -------------------------------------------------------------------------------- 1 | 500 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/dirtytime_expire_seconds: -------------------------------------------------------------------------------- 1 | 43200 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/drop_caches: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/extfrag_threshold: -------------------------------------------------------------------------------- 1 | 500 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/hugetlb_shm_group: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/laptop_mode: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/legacy_va_layout: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/lowmem_reserve_ratio: -------------------------------------------------------------------------------- 1 | 256 256 32 0 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/max_map_count: -------------------------------------------------------------------------------- 1 | 65530 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/memory_failure_early_kill: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/memory_failure_recovery: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/min_free_kbytes: -------------------------------------------------------------------------------- 1 | 67584 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/min_slab_ratio: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/min_unmapped_ratio: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/mmap_min_addr: -------------------------------------------------------------------------------- 1 | 65536 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/nr_hugepages: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/nr_hugepages_mempolicy: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/nr_overcommit_hugepages: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/numa_stat: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/numa_zonelist_order: -------------------------------------------------------------------------------- 1 | Node 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/oom_dump_tasks: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/oom_kill_allocating_task: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/overcommit_kbytes: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/overcommit_memory: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/overcommit_ratio: -------------------------------------------------------------------------------- 1 | 50 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/page-cluster: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/panic_on_oom: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/percpu_pagelist_fraction: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/stat_interval: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/swappiness: -------------------------------------------------------------------------------- 1 | 60 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/user_reserve_kbytes: -------------------------------------------------------------------------------- 1 | 131072 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/vfs_cache_pressure: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/watermark_boost_factor: -------------------------------------------------------------------------------- 1 | 15000 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/watermark_scale_factor: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /tests/node/proc/sys/vm/zone_reclaim_mode: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/proc/uptime: -------------------------------------------------------------------------------- 1 | 128158.16 4025491.30 -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/add_random: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/chunk_sectors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/dax: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/discard_granularity: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/discard_max_bytes: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/discard_max_hw_bytes: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/discard_zeroes_data: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/fua: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/hw_sector_size: -------------------------------------------------------------------------------- 1 | 512 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/io_poll: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/io_poll_delay: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/io_timeout: -------------------------------------------------------------------------------- 1 | 30000 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/iosched/back_seek_max: -------------------------------------------------------------------------------- 1 | 16384 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/iosched/back_seek_penalty: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/iosched/fifo_expire_async: -------------------------------------------------------------------------------- 1 | 250 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/iosched/fifo_expire_sync: -------------------------------------------------------------------------------- 1 | 125 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/iosched/low_latency: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/iosched/max_budget: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/iosched/slice_idle: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/iosched/slice_idle_us: -------------------------------------------------------------------------------- 1 | 8000 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/iosched/strict_guarantees: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/iosched/timeout_sync: -------------------------------------------------------------------------------- 1 | 125 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/iostats: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/logical_block_size: -------------------------------------------------------------------------------- 1 | 512 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/max_discard_segments: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/max_hw_sectors_kb: -------------------------------------------------------------------------------- 1 | 32767 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/max_integrity_segments: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/max_sectors_kb: -------------------------------------------------------------------------------- 1 | 1280 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/max_segment_size: -------------------------------------------------------------------------------- 1 | 65536 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/max_segments: -------------------------------------------------------------------------------- 1 | 168 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/minimum_io_size: -------------------------------------------------------------------------------- 1 | 512 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/nomerges: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/nr_requests: -------------------------------------------------------------------------------- 1 | 64 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/nr_zones: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/optimal_io_size: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/physical_block_size: -------------------------------------------------------------------------------- 1 | 512 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/read_ahead_kb: -------------------------------------------------------------------------------- 1 | 128 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/rotational: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/rq_affinity: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/scheduler: -------------------------------------------------------------------------------- 1 | mq-deadline kyber [bfq] none 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/wbt_lat_usec: -------------------------------------------------------------------------------- 1 | 75000 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/write_cache: -------------------------------------------------------------------------------- 1 | write back 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/write_same_max_bytes: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/write_zeroes_max_bytes: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/block/sda/queue/zoned: -------------------------------------------------------------------------------- 1 | none 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/bios_date: -------------------------------------------------------------------------------- 1 | 04/12/2021 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/bios_release: -------------------------------------------------------------------------------- 1 | 2.2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/bios_vendor: -------------------------------------------------------------------------------- 1 | Dell Inc. 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/bios_version: -------------------------------------------------------------------------------- 1 | 2.2.4 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/board_name: -------------------------------------------------------------------------------- 1 | 07PXPY 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/board_serial: -------------------------------------------------------------------------------- 1 | .7N62AI2.GRTCL6944100GP. 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/board_vendor: -------------------------------------------------------------------------------- 1 | Dell Inc. 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/board_version: -------------------------------------------------------------------------------- 1 | A01 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/chassis_asset_tag: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/chassis_serial: -------------------------------------------------------------------------------- 1 | 7N62AI2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/chassis_type: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/chassis_vendor: -------------------------------------------------------------------------------- 1 | Dell Inc. 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/chassis_version: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/product_family: -------------------------------------------------------------------------------- 1 | PowerEdge 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/product_name: -------------------------------------------------------------------------------- 1 | PowerEdge R6515 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/product_serial: -------------------------------------------------------------------------------- 1 | 7N62AI2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/product_sku: -------------------------------------------------------------------------------- 1 | SKU=NotProvided;ModelName=PowerEdge R6515 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/product_uuid: -------------------------------------------------------------------------------- 1 | 83340ca8-cb49-4474-8c29-d2088ca84dd9 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/product_version: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/dmi/id/sys_vendor: -------------------------------------------------------------------------------- 1 | Dell Inc. 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/ari_enabled: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/boot_vga: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/broken_parity_status: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/class: -------------------------------------------------------------------------------- 1 | 0x030000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/consistent_dma_mask_bits: -------------------------------------------------------------------------------- 1 | 44 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 8.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/d3cold_allowed: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/device: -------------------------------------------------------------------------------- 1 | 0x687f 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/dma_mask_bits: -------------------------------------------------------------------------------- 1 | 44 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/driver_override: -------------------------------------------------------------------------------- 1 | (null) 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/irq: -------------------------------------------------------------------------------- 1 | 95 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/local_cpulist: -------------------------------------------------------------------------------- 1 | 0-15 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/local_cpus: -------------------------------------------------------------------------------- 1 | 0000ffff 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/max_link_speed: -------------------------------------------------------------------------------- 1 | 8.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/max_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/mem_info_gtt_total: -------------------------------------------------------------------------------- 1 | 8573157376 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/mem_info_gtt_used: -------------------------------------------------------------------------------- 1 | 144560128 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/mem_info_vis_vram_total: -------------------------------------------------------------------------------- 1 | 8573157376 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/mem_info_vis_vram_used: -------------------------------------------------------------------------------- 1 | 1490378752 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/mem_info_vram_total: -------------------------------------------------------------------------------- 1 | 8573157376 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/mem_info_vram_used: -------------------------------------------------------------------------------- 1 | 1490378752 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/mem_info_vram_vendor: -------------------------------------------------------------------------------- 1 | samsung 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/modalias: -------------------------------------------------------------------------------- 1 | pci:v00001002d0000687Fsv00001043sd000004C4bc03sc00i00 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/msi_bus: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/numa_node: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/pcie_bw: -------------------------------------------------------------------------------- 1 | 6641 815 256 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/pcie_replay_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/power_dpm_force_performance_level: -------------------------------------------------------------------------------- 1 | manual 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/power_dpm_state: -------------------------------------------------------------------------------- 1 | performance 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/power_state: -------------------------------------------------------------------------------- 1 | D0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/pp_dpm_dcefclk: -------------------------------------------------------------------------------- 1 | 0: 600Mhz * 2 | 1: 720Mhz 3 | 2: 800Mhz 4 | 3: 847Mhz 5 | 4: 900Mhz 6 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/pp_dpm_mclk: -------------------------------------------------------------------------------- 1 | 0: 167Mhz * 2 | 1: 500Mhz 3 | 2: 800Mhz 4 | 3: 945Mhz 5 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/pp_dpm_pcie: -------------------------------------------------------------------------------- 1 | 0: 8.0GT/s, x16 2 | 1: 8.0GT/s, x16 * 3 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/pp_mclk_od: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 2 2 | 0 boot 3 | 1 performance 4 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/pp_sclk_od: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/product_name: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/product_number: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/revision: -------------------------------------------------------------------------------- 1 | 0xc1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/serial_number: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/subsystem_device: -------------------------------------------------------------------------------- 1 | 0x04c4 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/subsystem_vendor: -------------------------------------------------------------------------------- 1 | 0x1043 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/unique_id: -------------------------------------------------------------------------------- 1 | 0123456789abcdef 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/vbios_version: -------------------------------------------------------------------------------- 1 | 115-D050PIL-100 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/drm/card0/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/dev_loss_tmo: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/fabric_name: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/node_name: -------------------------------------------------------------------------------- 1 | 0x2000e0071bce95f2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/port_id: -------------------------------------------------------------------------------- 1 | 0x000002 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/port_name: -------------------------------------------------------------------------------- 1 | 0x1000e0071bce95f2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/port_state: -------------------------------------------------------------------------------- 1 | Online 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/port_type: -------------------------------------------------------------------------------- 1 | Point-To-Point (direct nport connection) 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/speed: -------------------------------------------------------------------------------- 1 | 16 Gbit 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/dumped_frames: -------------------------------------------------------------------------------- 1 | 0xffffffffffffffff 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/error_frames: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/fcp_packet_aborts: -------------------------------------------------------------------------------- 1 | 0x13 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/invalid_crc_count: -------------------------------------------------------------------------------- 1 | 0x2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/invalid_tx_word_count: -------------------------------------------------------------------------------- 1 | 0x8 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/link_failure_count: -------------------------------------------------------------------------------- 1 | 0x9 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/loss_of_signal_count: -------------------------------------------------------------------------------- 1 | 0x11 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/loss_of_sync_count: -------------------------------------------------------------------------------- 1 | 0x10 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/nos_count: -------------------------------------------------------------------------------- 1 | 0x12 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/rx_frames: -------------------------------------------------------------------------------- 1 | 0x3 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/rx_words: -------------------------------------------------------------------------------- 1 | 0x4 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/seconds_since_last_reset: -------------------------------------------------------------------------------- 1 | 0x7 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/tx_frames: -------------------------------------------------------------------------------- 1 | 0x5 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/statistics/tx_words: -------------------------------------------------------------------------------- 1 | 0x6 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/supported_classes: -------------------------------------------------------------------------------- 1 | Class 3 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/supported_speeds: -------------------------------------------------------------------------------- 1 | 4 Gbit, 8 Gbit, 16 Gbit 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/fc_host/host0/symbolic_name: -------------------------------------------------------------------------------- 1 | Emulex SN1100E2P FV12.4.270.3 DV12.4.0.0. HN:gotest. OS:Linux 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon0: -------------------------------------------------------------------------------- 1 | ../../devices/platform/coretemp.0/hwmon/hwmon0 -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon1: -------------------------------------------------------------------------------- 1 | ../../devices/platform/coretemp.1/hwmon/hwmon1 -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon2: -------------------------------------------------------------------------------- 1 | ../../devices/platform/applesmc.768/hwmon/hwmon2 -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon3: -------------------------------------------------------------------------------- 1 | ../../devices/platform/nct6775.656/hwmon/hwmon3 -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon4/temp1_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon4/temp1_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon4/temp1_input: -------------------------------------------------------------------------------- 1 | 55000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon4/temp1_label: -------------------------------------------------------------------------------- 1 | foosensor 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon4/temp1_max: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon4/temp2_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon4/temp2_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon4/temp2_input: -------------------------------------------------------------------------------- 1 | 54000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon4/temp2_label: -------------------------------------------------------------------------------- 1 | foosensor 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/hwmon/hwmon4/temp2_max: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/board_id: -------------------------------------------------------------------------------- 1 | HPE 100Gb 1-port OP101 QSFP28 x16 PCIe Gen3 with Intel Omni-Path Adapter 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/fw_ver: -------------------------------------------------------------------------------- 1 | 1.27.0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/VL15_dropped: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/excessive_buffer_overrun_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/link_downed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/link_error_recovery: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/local_link_integrity_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/port_rcv_constraint_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/port_rcv_data: -------------------------------------------------------------------------------- 1 | 345091702026 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/port_rcv_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/port_rcv_packets: -------------------------------------------------------------------------------- 1 | 638036947 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/port_rcv_remote_physical_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/port_rcv_switch_relay_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/port_xmit_constraint_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/port_xmit_data: -------------------------------------------------------------------------------- 1 | 273558326543 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/port_xmit_discards: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/port_xmit_packets: -------------------------------------------------------------------------------- 1 | 568318856 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/port_xmit_wait: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/counters/symbol_error: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/phys_state: -------------------------------------------------------------------------------- 1 | 5: LinkUp 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/rate: -------------------------------------------------------------------------------- 1 | 100 Gb/sec (4X EDR) 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/hfi1_0/ports/1/state: -------------------------------------------------------------------------------- 1 | 4: ACTIVE 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/board_id: -------------------------------------------------------------------------------- 1 | SM_1141000001000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/fw_ver: -------------------------------------------------------------------------------- 1 | 2.31.5050 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/hca_type: -------------------------------------------------------------------------------- 1 | MT4099 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/VL15_dropped: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/excessive_buffer_overrun_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/link_downed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/link_error_recovery: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/local_link_integrity_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_constraint_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_data: -------------------------------------------------------------------------------- 1 | 2221223609 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_packets: -------------------------------------------------------------------------------- 1 | 87169372 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_remote_physical_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_switch_relay_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_constraint_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_data: -------------------------------------------------------------------------------- 1 | 26509113295 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_discards: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_packets: -------------------------------------------------------------------------------- 1 | 85734114 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_wait: -------------------------------------------------------------------------------- 1 | 3599 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/counters/symbol_error: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/phys_state: -------------------------------------------------------------------------------- 1 | 5: LinkUp 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/rate: -------------------------------------------------------------------------------- 1 | 40 Gb/sec (4X QDR) 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/1/state: -------------------------------------------------------------------------------- 1 | 4: ACTIVE 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/VL15_dropped: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/excessive_buffer_overrun_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/link_downed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/link_error_recovery: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/local_link_integrity_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_constraint_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_data: -------------------------------------------------------------------------------- 1 | 2460436784 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_packets: -------------------------------------------------------------------------------- 1 | 89332064 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_remote_physical_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_switch_relay_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/port_xmit_constraint_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/port_xmit_data: -------------------------------------------------------------------------------- 1 | 26540356890 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/port_xmit_discards: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/port_xmit_packets: -------------------------------------------------------------------------------- 1 | 88622850 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/port_xmit_wait: -------------------------------------------------------------------------------- 1 | 3846 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/counters/symbol_error: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/phys_state: -------------------------------------------------------------------------------- 1 | 5: LinkUp 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/rate: -------------------------------------------------------------------------------- 1 | 40 Gb/sec (4X QDR) 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/infiniband/mlx4_0/ports/2/state: -------------------------------------------------------------------------------- 1 | 4: ACTIVE 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/addr_assign_type: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/addr_len: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/address: -------------------------------------------------------------------------------- 1 | 01:01:01:01:01:01 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/broadcast: -------------------------------------------------------------------------------- 1 | ff:ff:ff:ff:ff:ff 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/carrier: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/carrier_changes: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/carrier_down_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/carrier_up_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/dev_id: -------------------------------------------------------------------------------- 1 | 0x20 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/dormant: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/duplex: -------------------------------------------------------------------------------- 1 | full 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/flags: -------------------------------------------------------------------------------- 1 | 0x1303 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/ifindex: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/iflink: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/link_mode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/mtu: -------------------------------------------------------------------------------- 1 | 1500 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/name_assign_type: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/netdev_group: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/speed: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/tx_queue_len: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bond0/type: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/bonding_masters: -------------------------------------------------------------------------------- 1 | bond0 dmz int 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/addr_assign_type: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/addr_len: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/address: -------------------------------------------------------------------------------- 1 | 01:01:01:01:01:01 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/bonding/slaves: -------------------------------------------------------------------------------- 1 | eth0 eth4 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/broadcast: -------------------------------------------------------------------------------- 1 | ff:ff:ff:ff:ff:ff 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/carrier: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/carrier_changes: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/carrier_down_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/carrier_up_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/dev_id: -------------------------------------------------------------------------------- 1 | 0x20 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/dormant: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/duplex: -------------------------------------------------------------------------------- 1 | full 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/flags: -------------------------------------------------------------------------------- 1 | 0x1303 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/ifindex: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/iflink: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/link_mode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/mtu: -------------------------------------------------------------------------------- 1 | 1500 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/name_assign_type: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/netdev_group: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/slave_eth0/bonding_slave/mii_status: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/slave_eth0/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/slave_eth4/bonding_slave/mii_status: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/slave_eth4/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/speed: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/tx_queue_len: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/dmz/type: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/addr_assign_type: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/addr_len: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/address: -------------------------------------------------------------------------------- 1 | 01:01:01:01:01:01 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/broadcast: -------------------------------------------------------------------------------- 1 | ff:ff:ff:ff:ff:ff 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/carrier: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/carrier_changes: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/carrier_down_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/carrier_up_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/dev_id: -------------------------------------------------------------------------------- 1 | 0x20 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/device: -------------------------------------------------------------------------------- 1 | ../../../devices/pci0000:00/0000:00:1f.6/ -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/dormant: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/duplex: -------------------------------------------------------------------------------- 1 | full 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/flags: -------------------------------------------------------------------------------- 1 | 0x1303 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/ifindex: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/iflink: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/link_mode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/mtu: -------------------------------------------------------------------------------- 1 | 1500 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/name_assign_type: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/netdev_group: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/speed: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/tx_queue_len: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/eth0/type: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/addr_assign_type: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/addr_len: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/address: -------------------------------------------------------------------------------- 1 | 01:01:01:01:01:01 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/bonding/slaves: -------------------------------------------------------------------------------- 1 | eth5 eth1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/broadcast: -------------------------------------------------------------------------------- 1 | ff:ff:ff:ff:ff:ff 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/carrier: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/carrier_changes: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/carrier_down_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/carrier_up_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/dev_id: -------------------------------------------------------------------------------- 1 | 0x20 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/dormant: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/duplex: -------------------------------------------------------------------------------- 1 | full 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/flags: -------------------------------------------------------------------------------- 1 | 0x1303 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/ifindex: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/iflink: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/link_mode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/mtu: -------------------------------------------------------------------------------- 1 | 1500 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/name_assign_type: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/netdev_group: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/slave_eth1/bonding_slave/mii_status: -------------------------------------------------------------------------------- 1 | down 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/slave_eth1/operstate: -------------------------------------------------------------------------------- 1 | down 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/slave_eth5/bonding_slave/mii_status: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/slave_eth5/operstate: -------------------------------------------------------------------------------- 1 | up 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/speed: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/tx_queue_len: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/net/int/type: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/nvme/nvme0/firmware_rev: -------------------------------------------------------------------------------- 1 | 1B2QEXP7 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/nvme/nvme0/model: -------------------------------------------------------------------------------- 1 | Samsung SSD 970 PRO 512GB 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/nvme/nvme0/serial: -------------------------------------------------------------------------------- 1 | S680HF8N190894I 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/nvme/nvme0/state: -------------------------------------------------------------------------------- 1 | live 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl/enabled: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/constraint_0_max_power_uw: -------------------------------------------------------------------------------- 1 | 95000000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/constraint_0_name: -------------------------------------------------------------------------------- 1 | long_term 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/constraint_0_power_limit_uw: -------------------------------------------------------------------------------- 1 | 4090000000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/constraint_0_time_window_us: -------------------------------------------------------------------------------- 1 | 999424 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/constraint_1_max_power_uw: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/constraint_1_name: -------------------------------------------------------------------------------- 1 | short_term 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/constraint_1_power_limit_uw: -------------------------------------------------------------------------------- 1 | 4090000000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/constraint_1_time_window_us: -------------------------------------------------------------------------------- 1 | 2440 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/enabled: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/energy_uj: -------------------------------------------------------------------------------- 1 | 240422366267 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/max_energy_range_uj: -------------------------------------------------------------------------------- 1 | 262143328850 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0/name: -------------------------------------------------------------------------------- 1 | package-0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0:0/constraint_0_name: -------------------------------------------------------------------------------- 1 | long_term 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0:0/constraint_0_power_limit_uw: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0:0/constraint_0_time_window_us: -------------------------------------------------------------------------------- 1 | 976 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0:0/enabled: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0:0/energy_uj: -------------------------------------------------------------------------------- 1 | 118821284256 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0:0/max_energy_range_uj: -------------------------------------------------------------------------------- 1 | 262143328850 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:0:0/name: -------------------------------------------------------------------------------- 1 | core 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/constraint_0_max_power_uw: -------------------------------------------------------------------------------- 1 | 95000000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/constraint_0_name: -------------------------------------------------------------------------------- 1 | long_term 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/constraint_0_power_limit_uw: -------------------------------------------------------------------------------- 1 | 4090000000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/constraint_0_time_window_us: -------------------------------------------------------------------------------- 1 | 999424 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/constraint_1_max_power_uw: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/constraint_1_name: -------------------------------------------------------------------------------- 1 | short_term 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/constraint_1_power_limit_uw: -------------------------------------------------------------------------------- 1 | 4090000000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/constraint_1_time_window_us: -------------------------------------------------------------------------------- 1 | 2440 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/enabled: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/energy_uj: -------------------------------------------------------------------------------- 1 | 240422366267 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/max_energy_range_uj: -------------------------------------------------------------------------------- 1 | 262143328850 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/powercap/intel-rapl:a/name: -------------------------------------------------------------------------------- 1 | package-10 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/cooling_device0/cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/cooling_device0/max_state: -------------------------------------------------------------------------------- 1 | 50 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/cooling_device0/type: -------------------------------------------------------------------------------- 1 | Processor 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/cooling_device1/cur_state: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/cooling_device1/max_state: -------------------------------------------------------------------------------- 1 | 27 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/cooling_device1/type: -------------------------------------------------------------------------------- 1 | intel_powerclamp 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/thermal_zone0/policy: -------------------------------------------------------------------------------- 1 | step_wise 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/thermal_zone0/temp: -------------------------------------------------------------------------------- 1 | 49925 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/thermal_zone0/type: -------------------------------------------------------------------------------- 1 | bcm2835_thermal 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/thermal_zone1/mode: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/thermal_zone1/passive: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/thermal_zone1/policy: -------------------------------------------------------------------------------- 1 | step_wise 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/thermal_zone1/temp: -------------------------------------------------------------------------------- 1 | -44000 2 | -------------------------------------------------------------------------------- /tests/node/sys/class/thermal/thermal_zone1/type: -------------------------------------------------------------------------------- 1 | acpitz 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/online: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/type: -------------------------------------------------------------------------------- 1 | Mains 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/alarm: -------------------------------------------------------------------------------- 1 | 2369000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/capacity: -------------------------------------------------------------------------------- 1 | 98 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/cycle_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/manufacturer: -------------------------------------------------------------------------------- 1 | LGC 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/present: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/type: -------------------------------------------------------------------------------- 1 | Battery 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:00.0/host0/port-0:0/end_device-0:0/target0:0:0/0:0:0:0/scsi_tape/nst0/stats/in_flight: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:00.0/host0/port-0:0/end_device-0:0/target0:0:0/0:0:0:0/scsi_tape/st0/stats/in_flight: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/dirty_data: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/bypassed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_hits: -------------------------------------------------------------------------------- 1 | 289 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/bypassed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/bypassed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache/io_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache/metadata_written: -------------------------------------------------------------------------------- 1 | 512 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache/written: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/ari_enabled: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/broken_parity_status: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/class: -------------------------------------------------------------------------------- 1 | 0x020000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/consistent_dma_mask_bits: -------------------------------------------------------------------------------- 1 | 64 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/d3cold_allowed: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/device: -------------------------------------------------------------------------------- 1 | 0x15d7 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/dma_mask_bits: -------------------------------------------------------------------------------- 1 | 64 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/driver_override: -------------------------------------------------------------------------------- 1 | (null) 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/irq: -------------------------------------------------------------------------------- 1 | 140 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/local_cpulist: -------------------------------------------------------------------------------- 1 | 0-7 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/local_cpus: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/modalias: -------------------------------------------------------------------------------- 1 | pci:v00008086d000015D7sv000017AAsd0000225Abc02sc00i00 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/msi_bus: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/numa_node: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/revision: -------------------------------------------------------------------------------- 1 | 0x21 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/subsystem_device: -------------------------------------------------------------------------------- 1 | 0x225a 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/subsystem_vendor: -------------------------------------------------------------------------------- 1 | 0x17aa 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/pci0000:00/0000:00:1f.6/vendor: -------------------------------------------------------------------------------- 1 | 0x8086 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan1_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan1_label: -------------------------------------------------------------------------------- 1 | Left side 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan1_manual: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan1_max: -------------------------------------------------------------------------------- 1 | 6156 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan1_min: -------------------------------------------------------------------------------- 1 | 2160 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan1_output: -------------------------------------------------------------------------------- 1 | 2160 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan2_input: -------------------------------------------------------------------------------- 1 | 1998 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan2_label: -------------------------------------------------------------------------------- 1 | Right side 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan2_manual: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan2_max: -------------------------------------------------------------------------------- 1 | 5700 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan2_min: -------------------------------------------------------------------------------- 1 | 2000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/fan2_output: -------------------------------------------------------------------------------- 1 | 2000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/hwmon/hwmon2/device: -------------------------------------------------------------------------------- 1 | ../../../applesmc.768 -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/applesmc.768/name: -------------------------------------------------------------------------------- 1 | applesmc 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/device: -------------------------------------------------------------------------------- 1 | ../../../coretemp.0 -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/name: -------------------------------------------------------------------------------- 1 | coretemp 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_input: -------------------------------------------------------------------------------- 1 | 55000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_label: -------------------------------------------------------------------------------- 1 | Physical id 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_max: -------------------------------------------------------------------------------- 1 | 84000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_input: -------------------------------------------------------------------------------- 1 | 54000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_label: -------------------------------------------------------------------------------- 1 | Core 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_max: -------------------------------------------------------------------------------- 1 | 84000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_input: -------------------------------------------------------------------------------- 1 | 52000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_label: -------------------------------------------------------------------------------- 1 | Core 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_max: -------------------------------------------------------------------------------- 1 | 84000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp4_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp4_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp4_input: -------------------------------------------------------------------------------- 1 | 53000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp4_label: -------------------------------------------------------------------------------- 1 | Core 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp4_max: -------------------------------------------------------------------------------- 1 | 84000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp5_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp5_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp5_input: -------------------------------------------------------------------------------- 1 | 50000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp5_label: -------------------------------------------------------------------------------- 1 | Core 3 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp5_max: -------------------------------------------------------------------------------- 1 | 84000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/device: -------------------------------------------------------------------------------- 1 | ../../../coretemp.1 -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/name: -------------------------------------------------------------------------------- 1 | coretemp 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp1_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp1_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp1_input: -------------------------------------------------------------------------------- 1 | 55000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp1_label: -------------------------------------------------------------------------------- 1 | Physical id 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp1_max: -------------------------------------------------------------------------------- 1 | 84000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp2_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp2_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp2_input: -------------------------------------------------------------------------------- 1 | 54000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp2_label: -------------------------------------------------------------------------------- 1 | Core 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp2_max: -------------------------------------------------------------------------------- 1 | 84000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp3_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp3_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp3_input: -------------------------------------------------------------------------------- 1 | 52000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp3_label: -------------------------------------------------------------------------------- 1 | Core 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp3_max: -------------------------------------------------------------------------------- 1 | 84000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp4_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp4_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp4_input: -------------------------------------------------------------------------------- 1 | 53000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp4_label: -------------------------------------------------------------------------------- 1 | Core 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp4_max: -------------------------------------------------------------------------------- 1 | 84000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp5_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp5_crit_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp5_input: -------------------------------------------------------------------------------- 1 | 50000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp5_label: -------------------------------------------------------------------------------- 1 | Core 3 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/coretemp.1/hwmon/hwmon1/temp5_max: -------------------------------------------------------------------------------- 1 | 84000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_beep: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_input: -------------------------------------------------------------------------------- 1 | 1098 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_pulses: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_target: -------------------------------------------------------------------------------- 1 | 27000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/fan2_tolerance: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/in0_alarm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/in0_beep: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/in0_input: -------------------------------------------------------------------------------- 1 | 792 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/in0_max: -------------------------------------------------------------------------------- 1 | 1744 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/in0_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/in1_alarm: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/in1_beep: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/in1_input: -------------------------------------------------------------------------------- 1 | 1024 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/in1_max: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/in1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/intrusion0_alarm: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/intrusion0_beep: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/intrusion1_alarm: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/intrusion1_beep: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/name: -------------------------------------------------------------------------------- 1 | nct6779 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point1_pwm: -------------------------------------------------------------------------------- 1 | 153 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point1_temp: -------------------------------------------------------------------------------- 1 | 30000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point2_pwm: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point2_temp: -------------------------------------------------------------------------------- 1 | 70000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point3_pwm: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point3_temp: -------------------------------------------------------------------------------- 1 | 70000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point4_pwm: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point4_temp: -------------------------------------------------------------------------------- 1 | 70000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point5_pwm: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_auto_point5_temp: -------------------------------------------------------------------------------- 1 | 75000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_crit_temp_tolerance: -------------------------------------------------------------------------------- 1 | 2000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_enable: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_floor: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_mode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_start: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_step_down_time: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_step_up_time: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_stop_time: -------------------------------------------------------------------------------- 1 | 6000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_target_temp: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_temp_sel: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_temp_tolerance: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_duty_base: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_duty_step: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_temp_sel: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_temp_step: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_temp_step_base: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/platform/nct6775.656/hwmon/hwmon3/pwm1_weight_temp_step_tol: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/rbd/0/name: -------------------------------------------------------------------------------- 1 | demo 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/rbd/0/pool: -------------------------------------------------------------------------------- 1 | iscsi-images 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/rbd/1/name: -------------------------------------------------------------------------------- 1 | wrong 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/rbd/1/pool: -------------------------------------------------------------------------------- 1 | wrong-images 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/clocksource/clocksource0/available_clocksource: -------------------------------------------------------------------------------- 1 | tsc hpet acpi_pm 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/clocksource/clocksource0/current_clocksource: -------------------------------------------------------------------------------- 1 | tsc 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu0/cpufreq: -------------------------------------------------------------------------------- 1 | ../cpufreq/policy0 -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count: -------------------------------------------------------------------------------- 1 | 10084 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count: -------------------------------------------------------------------------------- 1 | 34818 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu0/topology/core_id: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu0/topology/core_siblings: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu0/topology/core_siblings_list: -------------------------------------------------------------------------------- 1 | 0-7 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu0/topology/physical_package_id: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu0/topology/thread_siblings: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu0/topology/thread_siblings_list: -------------------------------------------------------------------------------- 1 | 0,4 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_cur_freq: -------------------------------------------------------------------------------- 1 | 1200195 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_max_freq: -------------------------------------------------------------------------------- 1 | 3300000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_min_freq: -------------------------------------------------------------------------------- 1 | 1200000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_transition_latency: -------------------------------------------------------------------------------- 1 | 4294967295 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/cpufreq/related_cpus: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_governors: -------------------------------------------------------------------------------- 1 | performance powersave 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/cpufreq/scaling_driver: -------------------------------------------------------------------------------- 1 | intel_pstate 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/cpufreq/scaling_governor: -------------------------------------------------------------------------------- 1 | powersave 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/cpufreq/scaling_max_freq: -------------------------------------------------------------------------------- 1 | 3300000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq: -------------------------------------------------------------------------------- 1 | 1200000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/cpufreq/scaling_setspeed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count: -------------------------------------------------------------------------------- 1 | 523 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count: -------------------------------------------------------------------------------- 1 | 34818 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/topology/core_id: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/topology/core_siblings: -------------------------------------------------------------------------------- 1 | ff 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/topology/core_siblings_list: -------------------------------------------------------------------------------- 1 | 0-7 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/topology/physical_package_id: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/topology/thread_siblings: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpu1/topology/thread_siblings_list: -------------------------------------------------------------------------------- 1 | 1,5 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/affected_cpus: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq: -------------------------------------------------------------------------------- 1 | 2400000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq: -------------------------------------------------------------------------------- 1 | 800000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/related_cpus: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors: -------------------------------------------------------------------------------- 1 | performance powersave 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq: -------------------------------------------------------------------------------- 1 | 1219917 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/scaling_driver: -------------------------------------------------------------------------------- 1 | intel_pstate 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/scaling_governor: -------------------------------------------------------------------------------- 1 | powersave 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq: -------------------------------------------------------------------------------- 1 | 2400000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq: -------------------------------------------------------------------------------- 1 | 800000 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/edac/mc/mc0/ce_count: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/edac/mc/mc0/ce_noinfo_count: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/edac/mc/mc0/csrow0/ce_count: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/edac/mc/mc0/csrow0/ue_count: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/edac/mc/mc0/ue_count: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/node/sys/devices/system/edac/mc/mc0/ue_noinfo_count: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/average_key_size: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/dirty_data: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/bypassed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_bypass_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_bypass_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_hit_ratio: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_hits: -------------------------------------------------------------------------------- 1 | 289 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_miss_collisions: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_readaheads: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/bypassed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_bypass_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_bypass_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_hit_ratio: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_miss_collisions: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_readaheads: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/bypassed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_bypass_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_bypass_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_hit_ratio: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_miss_collisions: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_readaheads: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/bypassed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_bypass_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_bypass_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_hit_ratio: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_hits: -------------------------------------------------------------------------------- 1 | 546 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_miss_collisions: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_readaheads: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/btree_cache_size: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache0/io_errors: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache0/metadata_written: -------------------------------------------------------------------------------- 1 | 512 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache0/written: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache_available_percent: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/congested: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/active_journal_entries: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/btree_nodes: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/btree_read_average_duration_us: -------------------------------------------------------------------------------- 1 | 1305 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/cache_read_races: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/root_usage_percent: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/bypassed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_bypass_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_bypass_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_hit_ratio: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_hits: -------------------------------------------------------------------------------- 1 | 289 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_miss_collisions: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_readaheads: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/bypassed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_bypass_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_bypass_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_hit_ratio: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_miss_collisions: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_readaheads: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/bypassed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_bypass_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_bypass_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_hit_ratio: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_miss_collisions: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_readaheads: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/bypassed: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_bypass_hits: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_bypass_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_hit_ratio: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_hits: -------------------------------------------------------------------------------- 1 | 546 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_miss_collisions: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_misses: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_readaheads: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/tree_depth: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_may_use: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_readonly: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_reserved: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_used: -------------------------------------------------------------------------------- 1 | 808189952 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/disk_total: -------------------------------------------------------------------------------- 1 | 2147483648 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/disk_used: -------------------------------------------------------------------------------- 1 | 808189952 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/flags: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/raid0/total_bytes: -------------------------------------------------------------------------------- 1 | 2147483648 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/raid0/used_bytes: -------------------------------------------------------------------------------- 1 | 808189952 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/total_bytes: -------------------------------------------------------------------------------- 1 | 2147483648 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/total_bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/global_rsv_reserved: -------------------------------------------------------------------------------- 1 | 16777216 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/global_rsv_size: -------------------------------------------------------------------------------- 1 | 16777216 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_may_use: -------------------------------------------------------------------------------- 1 | 16777216 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_readonly: -------------------------------------------------------------------------------- 1 | 131072 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_reserved: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_used: -------------------------------------------------------------------------------- 1 | 933888 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/disk_total: -------------------------------------------------------------------------------- 1 | 2147483648 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/disk_used: -------------------------------------------------------------------------------- 1 | 1867776 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/flags: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/raid1/total_bytes: -------------------------------------------------------------------------------- 1 | 1073741824 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/raid1/used_bytes: -------------------------------------------------------------------------------- 1 | 933888 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/total_bytes: -------------------------------------------------------------------------------- 1 | 1073741824 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/total_bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_may_use: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_readonly: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_reserved: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_used: -------------------------------------------------------------------------------- 1 | 16384 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/disk_total: -------------------------------------------------------------------------------- 1 | 16777216 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/disk_used: -------------------------------------------------------------------------------- 1 | 32768 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/flags: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/raid1/total_bytes: -------------------------------------------------------------------------------- 1 | 8388608 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/raid1/used_bytes: -------------------------------------------------------------------------------- 1 | 16384 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/total_bytes: -------------------------------------------------------------------------------- 1 | 8388608 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/total_bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/clone_alignment: -------------------------------------------------------------------------------- 1 | 4096 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices/loop25/size: -------------------------------------------------------------------------------- 1 | 20971520 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices/loop26/size: -------------------------------------------------------------------------------- 1 | 20971520 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/big_metadata: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/extended_iref: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/mixed_backref: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/skinny_metadata: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/label: -------------------------------------------------------------------------------- 1 | fixture 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/metadata_uuid: -------------------------------------------------------------------------------- 1 | 0abb23a9-579b-43e6-ad30-227ef47fcb9d 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/nodesize: -------------------------------------------------------------------------------- 1 | 16384 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/quota_override: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/sectorsize: -------------------------------------------------------------------------------- 1 | 4096 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_may_use: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_readonly: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_reserved: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_used: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/disk_total: -------------------------------------------------------------------------------- 1 | 644087808 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/disk_used: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/flags: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/raid5/total_bytes: -------------------------------------------------------------------------------- 1 | 644087808 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/raid5/used_bytes: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/total_bytes: -------------------------------------------------------------------------------- 1 | 644087808 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/total_bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/global_rsv_reserved: -------------------------------------------------------------------------------- 1 | 16777216 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/global_rsv_size: -------------------------------------------------------------------------------- 1 | 16777216 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_may_use: -------------------------------------------------------------------------------- 1 | 16777216 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_readonly: -------------------------------------------------------------------------------- 1 | 262144 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_reserved: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_used: -------------------------------------------------------------------------------- 1 | 114688 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/disk_total: -------------------------------------------------------------------------------- 1 | 429391872 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/disk_used: -------------------------------------------------------------------------------- 1 | 114688 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/flags: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/raid6/total_bytes: -------------------------------------------------------------------------------- 1 | 429391872 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/raid6/used_bytes: -------------------------------------------------------------------------------- 1 | 114688 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/total_bytes: -------------------------------------------------------------------------------- 1 | 429391872 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/total_bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_may_use: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_readonly: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_reserved: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_used: -------------------------------------------------------------------------------- 1 | 16384 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/disk_total: -------------------------------------------------------------------------------- 1 | 16777216 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/disk_used: -------------------------------------------------------------------------------- 1 | 16384 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/flags: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/raid6/total_bytes: -------------------------------------------------------------------------------- 1 | 16777216 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/raid6/used_bytes: -------------------------------------------------------------------------------- 1 | 16384 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/total_bytes: -------------------------------------------------------------------------------- 1 | 16777216 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/total_bytes_pinned: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/clone_alignment: -------------------------------------------------------------------------------- 1 | 4096 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop22: -------------------------------------------------------------------------------- 1 | ../../../../devices/virtual/block/loop22 -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop23: -------------------------------------------------------------------------------- 1 | ../../../../devices/virtual/block/loop23 -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop24: -------------------------------------------------------------------------------- 1 | ../../../../devices/virtual/block/loop24 -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop25: -------------------------------------------------------------------------------- 1 | ../../../../devices/virtual/block/loop25 -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/big_metadata: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/extended_iref: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/mixed_backref: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/raid56: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/skinny_metadata: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/metadata_uuid: -------------------------------------------------------------------------------- 1 | 7f07c59f-6136-449c-ab87-e1cf2328731b 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/nodesize: -------------------------------------------------------------------------------- 1 | 16384 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/quota_override: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/sectorsize: -------------------------------------------------------------------------------- 1 | 4096 2 | -------------------------------------------------------------------------------- /tests/node/sys/fs/xfs/sdb1/stats/stats: -------------------------------------------------------------------------------- 1 | extent_alloc 2 0 0 0 2 | -------------------------------------------------------------------------------- /tests/node/sys/kernel/config/target/core/fileio_1/file_lio_1G/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/kernel/config/target/core/fileio_1/file_lio_1G/udev_path: -------------------------------------------------------------------------------- 1 | /home/iscsi/file_back_1G 2 | -------------------------------------------------------------------------------- /tests/node/sys/kernel/config/target/core/iblock_0/block_lio_rbd1/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/kernel/config/target/core/iblock_0/block_lio_rbd1/udev_path: -------------------------------------------------------------------------------- 1 | /dev/rbd1 2 | -------------------------------------------------------------------------------- /tests/node/sys/kernel/config/target/core/rbd_0/iscsi-images-demo/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/kernel/config/target/core/rbd_0/iscsi-images-demo/udev_path: -------------------------------------------------------------------------------- 1 | /dev/rbd/iscsi-images/demo 2 | -------------------------------------------------------------------------------- /tests/node/sys/kernel/config/target/core/rd_mcp_119/ramdisk_lio_1G/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0/tpgt_1/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab/tpgt_1/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0/tpgt_1/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/node/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo/tpgt_1/enable: -------------------------------------------------------------------------------- 1 | 1 2 | --------------------------------------------------------------------------------