stress-ng
This is the stress-ng upstream project git repository. stress-ng will stress test a computer system in various selectable ways. It was designed to exercise various physical subsystems of a computer as well as the various operating system kernel interfaces.
Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
2 of 115 committers (1.7%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (5.4%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
This is the stress-ng upstream project git repository. stress-ng will stress test a computer system in various selectable ways. It was designed to exercise various physical subsystems of a computer as well as the various operating system kernel interfaces.
Basic Info
- Host: GitHub
- Owner: ColinIanKing
- License: gpl-2.0
- Language: C
- Default Branch: master
- Homepage: https://github.com/ColinIanKing/stress-ng
- Size: 36.6 MB
Statistics
- Stars: 2,254
- Watchers: 32
- Forks: 325
- Open Issues: 1
- Releases: 0
Topics
Metadata Files
README.Android
= Android porting notes =
How to setup a Ubuntu 12.04 machine to cross compile for different architectures.
== Setup ==
Install tools:
sudo apt-get install kernel-package build-essential git gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf gcc-4.6-multilib-arm-linux-gnueabihf gcc-4.6-multilib-arm-linux-gnueabi
== Environment ==
Ubuntu has a command called ''dpkg-architecture'' which setups up most of the cross compile environment.
64-bit x86:
export $(dpkg-architecture -aamd64)
32-bit x86:
export $(dpkg-architecture -ai386)
armhf (RaspberryPi/uPC):
export $(dpkg-architecture -aarmhf)
export CROSS_COMPILE=arm-linux-gnueabihf-
export CCPREFIX=${CROSS_COMPILE}
armel:
export $(dpkg-architecture -aarmel)
export CROSS_COMPILE=arm-linux-gnueabi-
export CCPREFIX=${CROSS_COMPILE}
Shared Variables:
export CONCURRENCY_LEVEL=`grep -c '^processor' /proc/cpuinfo`
export ROOT_CMD=fakeroot
== Build ==
#Make
export CC=${CROSS_COMPILE}gcc
STATIC=1 make ARCH=arm
= Ubuntu 17.04 =
Considerably easier with a cross-compilation enable distribution, swap architecture as needed.
=== Setup ===
apt-get install gcc-4.9-aarch64-linux-gnu
=== Build ===
CC=aarch64-linux-gnu-gcc-4.9 STATIC=1 make
M.Srikanth Kumar, Jul 14, 2015
Colin Ian King, Dec 6, 2016 (updated, static linking)
Owner
- Name: Colin Ian King
- Login: ColinIanKing
- Kind: user
- Location: United Kingdom
- Company: Intel
- Website: http://smackerelofopinion.blogspot.com/
- Repositories: 34
- Profile: https://github.com/ColinIanKing
C, UNIX, POSIX, Linux and open source are my bread and butter. I'm interested in Astronomy, Physics, Mathematics, Philosophy, Painting and eating chocolate.
Citation (CITATIONS.md)
# stress-ng Citations * [Linux kernel performance test tool](https://github.com/intel/lkp-tests/commit/df80a984c3aab82972733114bac3ae19963cff1e) 2015: * [Enhancing Cloud energy models for optimizing datacenters efficiency](https://cs.gmu.edu/~menasce/cs788/papers/ICCAC2015-Outin.pdf) * [Tejo: A Supervised Anomaly Detection Scheme for NewSQL Databases](https://hal.archives-ouvertes.fr/hal-01211772/document) * [CoMA: Resource Monitoring of Docker Containers](http://www.scitepress.org/Papers/2015/54480/54480.pdf) * [An Investigation of CPU utilization relationship between host and guests in a Cloud infrastructure](http://www.diva-portal.org/smash/get/diva2:861239/FULLTEXT02) 2016: * [Increasing Platform Determinism PQOS DPDK](https://www.intel.com/content/dam/www/public/us/en/documents/white-papers/increasing-platform-determinism-pqos-dpdk-paper.pdf) * [Towards Energy Efficient Data Management in HPC: The Open Ethernet Drive Approach](http://www.pdsw.org/pdsw-discs16/papers/p43-kougkas.pdf) * [CPU and memory performance analysis on dynamic and dedicated resource allocation using XenServer in Data Center environment](http://ieeexplore.ieee.org/document/7877341/) * [How Much Power Does your Server Consume? Estimating Wall Socket Power Using RAPL Measurements](http://www.ena-hpc.org/2016/pdf/khan_et_al_enahpc.pdf) * [DevOps for IoT Applications using Cellular Networks and Cloud](https://www.ericsson.com/assets/local/publications/conference-papers/devops.pdf) * [A Virtual Network Function Workload Simulator](https://uu.diva-portal.org/smash/get/diva2:1043751/FULLTEXT01.pdf) * [Characterizing and Reducing Cross-Platform Performance Variability Using OS-level Virtualization](http://www.lofstead.org/papers/2016-varsys.pdf) * [How much power does your server consume? Estimating wall socket power using RAPL measurements](https://www.researchgate.net/publication/306004997_How_much_power_does_your_server_consume_Estimating_wall_socket_power_using_RAPL_measurements) * [UIE: User-centric Interference Estimation for Cloud Applications](https://www3.cs.stonybrook.edu/~anshul/ic2e16_uie.pdf) 2017: * [Auto-scaling of Containers: the impact of Relative and Absolute Metrics](https://www.researchgate.net/publication/319905237_Auto-Scaling_of_Containers_The_Impact_of_Relative_and_Absolute_Metrics) * [Testing the Windows Subsystem for Linux](https://blogs.msdn.microsoft.com/wsl/2017/04/11/testing-the-windows-subsystem-for-linux/) * [Practical analysis of the Precision Time Protocol under different types of system load](http://www.diva-portal.org/smash/get/diva2:1106630/FULLTEXT01.pdf) * [Towards Virtual Machine Energy-Aware Cost Prediction in Clouds](http://eprints.whiterose.ac.uk/124309/1/paper_final.pdf) * [Algorithms and Architectures for Parallel Processing](https://books.google.co.uk/books?id=S4wwDwAAQBAJ&pg=PA7&lpg=PA7&dq=http://kernel.ubuntu.com/~cking/stress-ng/&source=bl&ots=bVZccBq2Io&sig=rIqKWyEhGmVPosAJiemKjGgEv0M&hl=en&sa=X&ved=0ahUKEwiFo6LO2fbXAhWBtxQKHRcnDY04HhDoAQguMAE#v=onepage&q=http%3A%2F%2Fkernel.ubuntu.com%2F~cking%2Fstress-ng%2F&f=false) * [Advanced concepts and tools for renewable energy supply of Data Centres](https://www.riverpublishers.com/pdf/ebook/RP_9788793519411.pdf) * [Monitoring and Modelling Open Compute Servers](http://staff.www.ltu.se/~damvar/Publications/Eriksson%20et%20al.%20-%202017%20-%20Monitoring%20and%20Modelling%20Open%20Compute%20Servers.pdf) * [Experimental and numerical analysis for potential heat reuse in liquid cooled data centres](http://personals.ac.upc.edu/jguitart/HomepageFiles/ECM16.pdf) * [Modeling and Analysis of Performance under Interference in the Cloud](https://www3.cs.stonybrook.edu/~anshul/mascots17.pdf) * [Effectively Measure and Reduce Kernel Latencies for Real time Constraints](https://elinux.org/images/a/a9/ELC2017-_Effectively_Measure_and_Reduce_Kernel_Latencies_for_Real-time_Constraints_%281%29.pdf) * [Monitoring and Analysis of CPU load relationships between Host and Guests in a Cloud Networking Infrastructure](http://www.diva-portal.org/smash/get/diva2:861235/FULLTEXT02) * [Measuring the impacts of the Preempt-RT patch](http://events17.linuxfoundation.org/sites/events/files/slides/rtpatch.pdf) * [Reliable Library Identification Using VMI Techniques](https://rp.os3.nl/2016-2017/p64/report.pdf) * [Elastic-PPQ: A two-level autonomic system for spatial preference query processing over dynamic data stream](https://www.researchgate.net/publication/319613604_Elastic-PPQ_A_two-level_autonomic_system_for_spatial_preference_query_processing_over_dynamic_data_streams) * [OpenEPC integration within 5GTN as an NFV proof of concept](http://jultika.oulu.fi/files/nbnfioulu-201706082638.pdf) * [Time-Aware Dynamic Binary Instrumentation](https://uwspace.uwaterloo.ca/bitstream/handle/10012/12182/Arafa_Pansy.pdf?sequence=3) * [Experience Report: Log Mining using Natural Language Processing and Application to Anomaly Detection](https://hal.laas.fr/hal-01576291/document) * [Mixed time-criticality process interferences characterization on a multicore Linux system](https://re.public.polimi.it/retrieve/handle/11311/1033069/292404/paper-accepted-version.pdf) * [Cloud Orchestration at the Level of Application](https://ec.europa.eu/research/participants/documents/downloadPublic/RFpPOGljenYrclUyK3N5eFN4NnVVZEJpVEl3TTAxcFhXRzRGaXdzN2dmSjBycjNIbXB6dlJ3PT0=/attachment/VFEyQTQ4M3ptUWQ4VDN5UWNDYVZ0UEVSWSt2REhrV1Q=) 2018: * [Multicore Emulation on Virtualised Environment](https://indico.esa.int/event/165/contributions/1230/attachments/1195/1412/04b_-_Multicore_-_Presentation.pdf) * [Stress-SGX : Load and Stress your Enclaves for Fun and Profit](https://seb.vaucher.org/papers/stress-sgx.pdf) * [quiho: Automated Performance Regression Testing Using Inferred Resource Utilization Profiles](https://dl.acm.org/citation.cfm?id=3184422&dl=ACM&coll=DL&preflayout=flat) * [Hypervisor and Virtual Machine Memory Optimization Analysis](http://dspace.ut.ee/bitstream/handle/10062/60705/Viitkar_BSc2018.pdf) * [Real-Time testing with Fuego](https://elinux.org/images/4/43/ELC2018_Real-time_testing_with_Fuego-181024m.pdf) * [FECBench: An Extensible Framework for Pinpointing Sources of Performance Interference in the Cloud-Edge Resource Spectrum](https://www.academia.edu/68455840/FECBench_An_Extensible_Framework_for_Pinpointing_Sources_of_Performance_Interference_in_the_Cloud_Edge_Resource_Spectrum) * [Quantifying the Interaction Between Structural Properties of Software and Hardware in the ARM Big.LITTLE Architecture](https://research.abo.fi/ws/files/26568716/QuantifyingInteraction.pdf) * [RAPL in Action: Experiences in Using RAPL for Power Measurements](https://dl.acm.org/doi/10.1145/3177754) 2019: * [Performance Isolation of Co-located Workload in a Container-based Vehicle Software Architecture](https://www.thinkmind.org/articles/ambient_2019_2_20_40020.pdf) * [Analysis and Detection of Cache-Based Exploits](https://ssg.lancs.ac.uk/wp-content/uploads/2020/07/analysis_and_detection_vateva.pdf) * [kMVX: Detecting Kernel Information Leaks with Multi-variant Execution](https://research.vu.nl/ws/files/122357910/KMVX.pdf) * [Scalability of Kubernetes Running Over AWS](https://www.diva-portal.org/smash/get/diva2:1367111/FULLTEXT02) * [A study on performance measures for auto-scaling CPU-intensive containerized applications](https://link.springer.com/article/10.1007/s10586-018-02890-1) * [Scavenger: A Black-Box Batch Workload Resource Manager for Improving Utilization in Cloud Environments](https://www3.cs.stonybrook.edu/~sjavadi/files/javadi_socc2019.pdf) * [Estimating Cloud Application Performance Based on Micro-Benchmark Profiling](https://core.ac.uk/download/pdf/198051426.pdf) * [Anomaly Detection in NFV Using Tree-Based Unsupervised Learning Method](https://osf.io/preprints/indiarxiv/fxubm) 2020: * [Performance and Energy Trade-Offs for Parallel Applications on Heterogeneous Multi-Processing Systems](https://www.mdpi.com/1996-1073/13/9/2409/htm) * [C-Balancer: A System for Container Profiling and Scheduling](https://arxiv.org/pdf/2009.08912.pdf) * [Modelling VM Latent Characteristics and Predicting Application Performance using Semi-supervised Non-negative Matrix Factorization](https://ieeexplore.ieee.org/document/9284328) * [Semi-dynamic load balancing: efficient distributed learning in non-dedicated environments](https://dl.acm.org/doi/10.1145/3419111.3421299) * [A Performance Analysis of Hardware-assisted Security Technologies](https://openscholarship.wustl.edu/cgi/viewcontent.cgi?article=1556&context=eng_etds) * [Green Cloud Software Engineering for Big Data Processing](https://eprints.leedsbeckett.ac.uk/id/eprint/7294/1/GreenCloudSoftwareEngineeringForBigDataProcessingPV-KOR.pdf) * [Real-Time Detection for Cache Side Channel Attack using Performance Counter Monitor](https://www.proquest.com/docview/2533920884) * [Subverting Linux’ Integrity Measurement Architecture](https://svs.informatik.uni-hamburg.de/publications/2020/2020-08-27-Bohling-IMA.pdf) * [Real-time performance assessment using fast interrupt request on a standard Linux kernel](https://onlinelibrary.wiley.com/doi/full/10.1002/eng2.12114) * [Low Energy Consumption on Post-Moore Platforms for HPC Research](https://revistas.usfq.edu.ec/index.php/avances/article/download/2108/2919/18081) * [Managing Latency in Edge-Cloud Environment](https://s2group.cs.vu.nl/files/pubs/2020-JSS-IG-Edge_Cloud.pdf) * [Demystifying the Real-Time Linux Scheduling Latency](https://bristot.me/files/research/papers/ecrts2020/deOliveira2020Demystifying.pdf) * [Latency-aware Resource Management in Data Centres](https://ntnuopen.ntnu.no/ntnu-xmlui/bitstream/handle/11250/2777859/no.ntnu%3Ainspera%3A57320302%3A34511143.pdf) 2021: * [Streamline: A Fast, Flushless Cache Covert-Channel Attack by Enabling Asynchronous Collusion](https://dl.acm.org/doi/pdf/10.1145/3445814.3446742) * [Experimental Analysis in Hadoop MapReduce: A Closer Look at Fault Detection and Recovery Techniques](https://www.mdpi.com/1131714) * [Performance Characteristics of the BlueField-2 SmartNIC](https://arxiv.org/pdf/2105.06619.pdf) * [Evaluating Latency in Multiprocessing Embedded Systems for the Smart Grid](https://www.mdpi.com/1996-1073/14/11/3322) * [Work-in-Progress: Timing Diversity as a Protective Mechanism](https://dl.acm.org/doi/pdf/10.1145/3477244.3477614) * [Sequential Deep Learning Architectures for Anomaly Detection in Virtual Network Function Chains](https://arxiv.org/pdf/2109.14276.pdf) * [WattEdge: A Holistic Approach for Empirical Energy Measurements in Edge Computing](https://www.researchgate.net/publication/356342806_WattEdge_A_Holistic_Approach_for_Empirical_Energy_Measurements_in_Edge_Computing) * [PTEMagnet: Fine-Grained Physical Memory Reservation for Faster Page Walks in Public Clouds](https://www.pure.ed.ac.uk/ws/portalfiles/portal/196157550/PTEMagnet_MARGARITOV_DOA19112020_AFV.pdf) * [The Price of Meltdown and Spectre: Energy Overhead of Mitigations at Operating System Level](https://www4.cs.fau.de/Publications/2021/herzog_2021_eurosec.pdf) * [An Empirical Study of Thermal Attacks on Edge Platforms](https://digitalcommons.kennesaw.edu/cgi/viewcontent.cgi?article=1590&context=undergradsymposiumksu) * [Sage: Practical & Scalable ML-Driven Performance Debugging in Microservices](https://people.csail.mit.edu/delimitrou/papers/2021.asplos.sage.pdf) * [A Generalized Approach For Practical Task Allocation Using A MAPE-K Control Loop](https://www.marquez-barja.com/images/papers/A_Generalized_Approach_For_Software_Placement_In_The_Fog_Using_A_MAPE_K_Control_Loop-AuthorVersion.pdf)] * [Towards Independent Run-time Cloud Monitoring](https://research.spec.org/icpe_proceedings/2021/companion/p21.pdf) * [FIRESTARTER 2: Dynamic Code Generation for Processor Stress Tests](https://tu-dresden.de/zih/forschung/ressourcen/dateien/projekte/firestarter/FIRESTARTER-2-Dynamic-Code-Generation-for-Processor-Stress-Tests.pdf?lang=en) * [Performance comparison between a Kubernetes cluster and an embedded system](http://www.diva-portal.se/smash/get/diva2:1569829/FULLTEXT01.pdf) * [Performance Exploration of Virtualization Systems](https://www.researchgate.net/publication/350061536_Performance_Exploration_of_Virtualization_Systems) * [Tricking Hardware into Efficiently Securing Software](https://research.vu.nl/ws/portalfiles/portal/120740500/983666.pdf) 2022: * [A general method for evaluating the overhead when consolidating servers: performance degradation in virtual machines and containers](https://link.springer.com/article/10.1007/s11227-022-04318-5) * [FedComm: Understanding Communication Protocols for Edge-based Federated Learning](https://arxiv.org/pdf/2208.08764.pdf) * [Achieving Isolation in Mixed-Criticality Industrial Edge Systems with Real-Time Containers](https://drops.dagstuhl.de/opus/volltexte/2022/16332/pdf/LIPIcs-ECRTS-2022-15.pdf) * [Design and Implementation of Machine Learning-Based Fault Prediction System in Cloud Infrastructure](https://www.mdpi.com/2079-9292/11/22/3765) * [The TSN Building Blocks in Linux](https://arxiv.org/pdf/2211.14138.pdf) * [uKharon: A Membership Service for Microsecond Applications](https://www.usenix.org/system/files/atc22-guerraoui.pdf) * [Evaluating Secure Enclave Firmware Development for Contemporary RISC-V WorkstationsContemporary RISC-V Workstation](https://scholar.afit.edu/cgi/viewcontent.cgi?article=6319&context=etd) * [Evaluation of Real-Time Linux on RISC-V processor architecture](https://trepo.tuni.fi/bitstream/handle/10024/138547/J%C3%A4mb%C3%A4ckMarkus.pdf) * [Hertzbleed: Turning Power Side-Channel Attacks Into Remote Timing Attacks on x86](https://www.hertzbleed.com/hertzbleed.pdf) * [Don’t Mesh Around: Side-Channel Attacks and Mitigations on Mesh Interconnects](https://www.cs.cmu.edu/~rpaccagn/papers/dont-mesh-around-usenix2022.pdf) * [Performance Implications for Multi-Core RISC-V Systems with Dedicated Security Hardware](https://papers.academic-conferences.org/index.php/iccws/article/download/56/55/96) 2023: * [Fight Hardware with Hardware: System-wide Detection and Mitigation of Side-Channel Attacks using Performance Counters](https://dl.acm.org/doi/10.1145/3519601) * [Introducing k4.0s: a Model for Mixed-Criticality Container Orchestration in Industry 4.0 ](https://arxiv.org/pdf/2205.14188.pdf) * [A Comprehensive Study on Optimizing Systems with Data Processing Units](https://arxiv.org/pdf/2301.06070.pdf) * [Estimating Cloud Application Performance Based on Micro-Benchmark Profiling](https://research.chalmers.se/publication/506903/file/506903_Fulltext.pdf) * [PSPRAY: Timing Side-Channel based Linux Kernel Heap Exploitation Technique](https://lifeasageek.github.io/papers/yoochan-pspray.pdf) * [Robust and accurate performance anomaly detection and prediction for cloud applications: a novel ensemble learning-based framework](https://journalofcloudcomputing.springeropen.com/articles/10.1186/s13677-022-00383-6#Fn4) * [Feasibility Study for a Python-Based Embedded Real-Time Control System](https://www.mdpi.com/2079-9292/12/6/1426) * [Adaptation of Parallel SaaS to Heterogeneous Co-Located Cloud Resources](https://www.mdpi.com/2076-3417/13/8/5115#B56-applsci-13-05115) * [A Methodology and Framework to Determine the Isolation Capabilities of Virtualisation Technologies](https://dl.acm.org/doi/pdf/10.1145/3578244.3583728) * [Data Station: Delegated, Trustworthy, and Auditable Computation to Enable Data-Sharing Consortia with a Data Escrow](https://arxiv.org/pdf/2305.03842.pdf) * [An Empirical Study of Resource-Stressing Faults in Edge-Computing Applications](https://dl.acm.org/doi/pdf/10.1145/3578354.3592873) * [Finding flaky tests in JavaScript applications using stress and test suite reordering](https://repositories.lib.utexas.edu/handle/2152/120282) * [The Power of Telemetry: Uncovering Software-Based Side-Channel Attacks on Apple M1/M2 Systems](https://arxiv.org/pdf/2306.16391.pdf) * [A Performance Evaluation of Embedded Multi-core Mixed-criticality System Based on PREEMPT RT Linux](https://www.jstage.jst.go.jp/article/ipsjjip/31/0/31_78/_pdf) * [Data Leakage in Isolated Virtualized Enterprise Computing SystemsSystems](https://scholar.smu.edu/cgi/viewcontent.cgi?article=1034&context=engineering_compsci_etds) * [Considerations for Benchmarking Network Performance in Containerized Infrastructures](https://datatracker.ietf.org/doc/draft-dcn-bmwg-containerized-infra/) * [EnergAt: Fine-Grained Energy Attribution for Multi-Tenancy](https://hotcarbon.org/2023/pdf/a4-he.pdf) * [Quantifying the Security Profile of Linux Applications](https://dl.acm.org/doi/10.1145/3609510.3609814) * [Gotham Testbed: a Reproducible IoT Testbed for Security Experiments and Dataset Generation](https://arxiv.org/pdf/2207.13981.pdf) * [Profiling with Trust: System Monitoring from Trusted Execution Environments](https://assets.researchsquare.com/files/rs-3169665/v1_covered_63751076-8387-429e-8296-3f3cc4c3ed34.pdf?c=1689832627) * [Thermal-Aware on-Device Inference Using Single-Layer Parallelization with Heterogeneous Processors](https://www.sciopen.com/article/pdf/10.26599/TST.2021.9010075.pdf) * [Towards Fast, Adaptive, and Hardware-Assisted User-Space Scheduling](https://arxiv.org/pdf/2308.02896.pdf) * [Heterogeneous Anomaly Detection for Software Systems via Semi-supervised Cross-modal Attention](https://arxiv.org/pdf/2302.06914.pdf) * [Green coding : an empirical approach to harness the energy consumption ofsoftware services](https://theses.hal.science/tel-04074973/document) * [Enhancing Empirical Software Performance Engineering Research with Kernel-Level Events: A Comprehensive System Tracing Approach](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4556983) * [Cloud White: Detecting and Estimating QoS Degradation of Latency-Critical Workloads in the Public Cloud](https://www.sciencedirect.com/science/article/pii/S0167739X22002734) * [Dynamic Resource Management for Cloud-native Bulk Synchronous Parallel Applications](http://www.dre.vanderbilt.edu/~gokhale/WWW/papers/ISORC23_BSP.pdf) * [Towards Serverless Optimization with In-place Scaling](https://arxiv.org/pdf/2311.09526.pdf) * [A Modular Approach to Design an Experimental Framework for Resource Management Research](https://assets.researchsquare.com/files/rs-3400308/v1_covered_90a108f8-065c-4e38-9c56-990424f66afd.pdf?c=1697164725) * [Targeted Deanonymization via the Cache Side Channel: Attacks and Defenses](https://leakuidatorplusteam.github.io/preprint.pdf) * [Validating Full-System RISC-V Simulator: A Systematic Approach](https://infoscience.epfl.ch/record/302433) * [Lightweight Implementation of Per-packet Service Protection in eBPF/XDP](https://arxiv.org/pdf/2312.07152.pdf) * [ROS2 Real-time Performance Optimization and Evaluation](https://cjme.springeropen.com/articles/10.1186/s10033-023-00976-5) * [Experimental and numerical analysis of the thermal behaviour of a single-phase immersion-cooled data centre](https://www.sciencedirect.com/science/article/pii/S1359431123012899) 2024: * [IdleLeak: Exploiting Idle State Side Effects for Information Leakage](https://www.sicheroder.net/files/idleleak.pdf) * [Profiling with trust: system monitoring from trusted execution environments](https://www.researchgate.net/publication/378265673_Profiling_with_trust_system_monitoring_from_trusted_execution_environments) * [Exemplary Determination of Cgroups-Based QoS Isolation for a Database Workload](https://dl.acm.org/doi/pdf/10.1145/3629527.3652267) * [BARO: Robust Root Cause Analysis for Microservices via Multivariate Bayesian Online Change Point Detection](https://arxiv.org/pdf/2405.09330) * [Disambiguating Performance Anomalies from Workload Changes in Cloud-Native Applications](https://dl.acm.org/doi/pdf/10.1145/3629526.3645046) * [Take a Step Further: Understanding Page Spray in Linux Kernel Exploitation](https://arxiv.org/html/2406.02624v2) * [Impact of power consumption in containerized clouds: A comprehensive analysis of open-source power measurement tools](https://www.sciencedirect.com/science/article/pii/S1389128624002032) * [Evaluation of Thermal Stress on Heterogeneous IoT-Based Federated Learning](https://www.mdpi.com/2079-9292/13/16/3140) * [Anomaly Detection Within Mission-Critical Call Processing](https://arxiv.org/html/2408.14599v1) * [A Preliminary Assessment of the real-time capabilities of Real-Time Linux on Raspberry Pi 5](https://www.ecrts.org/wp-content/uploads/2024/07/ospert24-proceedings.pdf) * [A Comparison of Real-Time Linux-Based Architectures for Embedded Musical Applications](https://www.researchgate.net/publication/358135895_A_Comparison_of_Real-Time_Linux-Based_Architectures_for_Embedded_Musical_Applications) * [Nona: Accurate Power Prediction Model Using Neural Networks](https://dl.acm.org/doi/pdf/10.1145/3649329.3655668) * [Interference-free Operating System: A 6 Years’ Experience in Mitigating Cross-Core Interference in Linux](https://arxiv.org/pdf/2412.18104) * [Enhancing the PSI framework in Linux Kernel for predictive and accurate workload analysis](https://lpc.events/event/18/contributions/1884/attachments/1439/3069/LPC2024_PIntu_PSI.pdf) * [Virtualization vs. Containerization, a Comparative Approach for Application Deployment in the Computing Continuum Focused on the Edge](https://www.researchgate.net/publication/385953515_Virtualization_vs_Containerization_a_Comparative_Approach_for_Application_Deployment_in_the_Computing_Continuum_Focused_on_the_Edge) 2025: * [SPY-PMU: Side-Channel Profiling of Your Performance Monitoring Unit to Leak Remote User Activity](https://eprint.iacr.org/2025/014) * [RCAEval: A Benchmark for Root Cause Analysis of Microservice Systems with Telemetry Data](https://arxiv.org/html/2412.17015v4) * [Performance Prediction of On-NIC Network Functions with Multi-Resource Contention and Traffic Awareness](https://arxiv.org/html/2405.05529v5) * [KernelSnitch: Side-Channel Attacks on Kernel Data Structures](https://www.ndss-symposium.org/wp-content/uploads/2025-223-paper.pdf) * [A measurement-based approach to analyze the power consumption of the softwarized 5G core](https://arxiv.org/pdf/2502.13879) * [When Radiation Meets Linux: Analyzing Soft Errors in Linux on COTS SoCs under Proton Irradiation](https://arxiv.org/html/2503.03722v1) * [CINERGY: Reasoning over the Worst Case Power Consumption of Cloud Virtual Machines](https://hal.science/hal-04981001/document) * [xPUE: Extending Power Usage Effectiveness Metrics for Cloud Infrastructures](https://arxiv.org/pdf/2503.07124) * [FALCON: A Framework for Fault Prediction in Open RAN Using Multi-Level Telemetry](https://arxiv.org/pdf/2503.06197) * [Profiling with trust: system monitoring from trusted execution environments](https://www.researchgate.net/publication/378265673_Profiling_with_trust_system_monitoring_from_trusted_execution_environments) * [GAL-MAD: Towards Explainable Anomaly Detection in Microservice Applications using Graph Attention Networks](https://www.arxiv.org/pdf/2504.00058) * [RAS-IoT: A Container-Based Solution for IoT Application Replacement](https://link.springer.com/chapter/10.1007/978-3-031-87766-7_37) * [Slice+Slice Baby: Generating Last-Level Cache Eviction Sets in the Blink of an Eye](https://arxiv.org/pdf/2504.11208) * [Benchmarking of CPU-intensive Stream Data Processing in The Edge Computing Systems](https://arxiv.org/html/2505.07755v1) * [Anomaly-Based Intrusion Detection for IoMT Networks: Design, Implementation, Dataset Generation, and ML Algorithms Evaluation](https://gala.gre.ac.uk/id/eprint/50712/1/50712%20MANTAS_Anomaly-Based_Intrusion_Detection_For_IoMT_Networks_Design_Implementation_Dataset%20Generation_And_ML_Algorithms_Evaluations_%28OA%29_2025.pdf) * [Research on AutoTune: A Lightweight Feedback-Driven Kernel Parameter Tuning System for High-Concurrency VMware Environments](https://www.jetir.org/papers/JETIR2505703.pdf) * [Non-Intrusive MLOps-Driven Performance Intelligence in Software Data Planes](https://arxiv.org/pdf/2506.17658) * [ROS 2 Agnocast: Supporting Unsized Message Types for True Zero-Copy Publish/Subscribe IPC](https://www.arxiv.org/pdf/2506.16882) * [Data Center Model for Transient Stability Analysis of Power Systems](https://arxiv.org/pdf/2505.16575) * [Rubicon: Precise Microarchitectural Attacks with Page-Granular Massaging](https://comsec-files.ethz.ch/papers/rubicon_eurosp25.pdf) * [On Fault Tolerance of Data Storage Systems: A Holistic Perspective](https://arxiv.org/pdf/2507.03849v1) * [Ecoscape: Fault Tolerance Benchmark for Adaptive Remediation Strategies in Real-Time Edge ML](https://arxiv.org/html/2507.22702v1) * [When Things Heat Up: Detecting Malicious Activity Using CPU Thermal Sensors](https://www.mdpi.com/2624-800X/5/3/56) * [SkyForge Core: A Triple Modular Redundant Computing Architecture for Small Satellites](https://pillars.taylor.edu/cgi/viewcontent.cgi?article=1000&context=physics-engineering-student-papers)
Committers
Last synced: 9 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Colin Ian King | c****g@c****m | 8,918 |
| Colin Ian King | c****g@g****m | 7,691 |
| Piyush Goyal | p****t@g****m | 200 |
| James Hunt | j****t@i****m | 12 |
| John Kacur | j****r@r****m | 11 |
| Meysam Azad | M****1@g****m | 8 |
| Mauricio Faria de Oliveira | m****o@c****m | 8 |
| André Wild | w****1@l****m | 7 |
| Fabrice Fontaine | f****e@g****m | 6 |
| Thadeu Lima de Souza Cascardo | c****o@c****m | 6 |
| Chunyu Hu | c****u@r****m | 5 |
| Florian Weimer | f****r@r****m | 4 |
| Denis Ovsienko | d****s@o****o | 4 |
| Christian Ehrhardt | p****r@g****m | 4 |
| Hsieh-Tseng Shen | w****n@s****m | 4 |
| Po-Hsu Lin | p****n@c****m | 4 |
| Baruch Siach | b****h@t****l | 3 |
| Francis Laniel | f****l@l****m | 3 |
| Julien Olivain | j****o@f****r | 3 |
| Khem Raj | r****m@g****m | 3 |
| Nick Hanley | n****y@g****m | 3 |
| Thinh Tran | t****r@l****m | 3 |
| Zhiyi Sun | z****n@m****m | 3 |
| Alexander Kanavin | a****x@l****e | 2 |
| Carlos Santos | c****s@d****r | 2 |
| Munehisa Kamata | k****m@a****m | 2 |
| Sascha Hauer | s****r@p****e | 2 |
| Tommi Rantala | t****a@n****m | 2 |
| derekye | d****9@G****m | 2 |
| mingkwind | m****d@g****m | 2 |
| and 85 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 4 months ago
All Time
- Total issues: 255
- Total pull requests: 142
- Average time to close issues: 9 days
- Average time to close pull requests: 6 days
- Total issue authors: 129
- Total pull request authors: 68
- Average comments per issue: 3.46
- Average comments per pull request: 1.74
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 113
- Pull requests: 44
- Average time to close issues: 4 days
- Average time to close pull requests: about 11 hours
- Issue authors: 45
- Pull request authors: 21
- Average comments per issue: 2.25
- Average comments per pull request: 1.45
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- chrfranke (49)
- Cypresslin (26)
- vt-alt (12)
- woodrow-shen (9)
- trippleflux (5)
- yumdeer (5)
- bladernr (4)
- anisse (3)
- xinxi7277 (3)
- mreed8855 (3)
- mator (3)
- alex-thiessen-for-siemens (3)
- baconYao (3)
- jirka-h (2)
- talhaHavadar (2)
Pull Request Authors
- jkacur (8)
- woodrow-shen (8)
- Cypresslin (6)
- lukasdurfina (6)
- ffontaine (5)
- RinHizakura (4)
- JimmyHoSF (4)
- eiffel-fl (4)
- kraj (3)
- estahlman-intel (3)
- anisse (3)
- jolivain (3)
- chrfranke (3)
- dorindabassey (2)
- AboorvaDevarajan (2)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 26
- Total downloads: unknown
-
Total dependent packages: 2
(may contain duplicates) -
Total dependent repositories: 3
(may contain duplicates) - Total versions: 98
- Total maintainers: 1
alpine-v3.18: stress-ng
stress-ng will stress test a computer system in various selectable ways
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.14.00-r0
published over 3 years ago
Rankings
Maintainers (1)
alpine-v3.18: stress-ng-bash-completion
Bash completions for stress-ng
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.14.00-r0
published over 3 years ago
Rankings
Maintainers (1)
alpine-v3.18: stress-ng-doc
stress-ng will stress test a computer system in various selectable ways (documentation)
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.14.00-r0
published over 3 years ago
Rankings
Maintainers (1)
alpine-edge: stress-ng
stress-ng will stress test a computer system in various selectable ways
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.19.03-r0
published 5 months ago
Rankings
Maintainers (1)
alpine-edge: stress-ng-bash-completion
Bash completions for stress-ng
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.19.03-r0
published 5 months ago
Rankings
Maintainers (1)
alpine-edge: stress-ng-doc
stress-ng will stress test a computer system in various selectable ways (documentation)
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.19.03-r0
published 5 months ago
Rankings
Maintainers (1)
alpine-v3.17: stress-ng
stress-ng will stress test a computer system in various selectable ways
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.14.00-r0
published over 3 years ago
Rankings
Maintainers (1)
alpine-v3.16: stress-ng-bash-completion
Bash completions for stress-ng
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.14.00-r0
published over 3 years ago
Rankings
Maintainers (1)
alpine-v3.16: stress-ng
stress-ng will stress test a computer system in various selectable ways
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.14.00-r0
published over 3 years ago
Rankings
Maintainers (1)
alpine-v3.16: stress-ng-doc
stress-ng will stress test a computer system in various selectable ways (documentation)
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.14.00-r0
published over 3 years ago
Rankings
Maintainers (1)
alpine-v3.17: stress-ng-bash-completion
Bash completions for stress-ng
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.14.00-r0
published over 3 years ago
Rankings
Maintainers (1)
alpine-v3.17: stress-ng-doc
stress-ng will stress test a computer system in various selectable ways (documentation)
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.14.00-r0
published over 3 years ago
Rankings
Maintainers (1)
conda-forge.org: stress-ng
stress-ng will stress test a computer system in various selectable ways. It was designed to exercise various physical subsystems of a computer as well as the various operating system kernel interfaces.
- Homepage: https://kernel.ubuntu.com/~cking/stress-ng/
- License: GPL-2.0-or-later
-
Latest release: 0.12.11
published over 4 years ago
Rankings
spack.io: stress-ng
stress-ng will stress test a computer system in various selectable ways. It was designed to exercise various physical subsystems of a computer as well as the various operating system kernel interfaces.
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: []
-
Latest release: 0.12.06
published over 3 years ago
Rankings
alpine-v3.19: stress-ng
stress-ng will stress test a computer system in various selectable ways
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.17.01-r0
published about 2 years ago
Rankings
Maintainers (1)
alpine-v3.20: stress-ng-bash-completion
Bash completions for stress-ng
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.17.08-r0
published over 1 year ago
Rankings
Maintainers (1)
alpine-v3.22: stress-ng
stress-ng will stress test a computer system in various selectable ways
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.18.08-r0
published 12 months ago
Rankings
Maintainers (1)
alpine-v3.20: stress-ng-doc
stress-ng will stress test a computer system in various selectable ways (documentation)
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.17.08-r0
published over 1 year ago
Rankings
Maintainers (1)
alpine-v3.21: stress-ng-bash-completion
Bash completions for stress-ng
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.18.07-r0
published about 1 year ago
Rankings
Maintainers (1)
alpine-v3.20: stress-ng
stress-ng will stress test a computer system in various selectable ways
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.17.08-r0
published over 1 year ago
Rankings
Maintainers (1)
alpine-v3.19: stress-ng-doc
stress-ng will stress test a computer system in various selectable ways (documentation)
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.17.01-r0
published about 2 years ago
Rankings
Maintainers (1)
alpine-v3.22: stress-ng-doc
stress-ng will stress test a computer system in various selectable ways (documentation)
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.18.08-r0
published 12 months ago
Rankings
Maintainers (1)
alpine-v3.21: stress-ng-doc
stress-ng will stress test a computer system in various selectable ways (documentation)
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.18.07-r0
published about 1 year ago
Rankings
Maintainers (1)
alpine-v3.21: stress-ng
stress-ng will stress test a computer system in various selectable ways
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.18.07-r0
published about 1 year ago
Rankings
Maintainers (1)
alpine-v3.22: stress-ng-bash-completion
Bash completions for stress-ng
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.18.08-r0
published 12 months ago
Rankings
Maintainers (1)
alpine-v3.19: stress-ng-bash-completion
Bash completions for stress-ng
- Homepage: https://github.com/ColinIanKing/stress-ng
- License: GPL-2.0-or-later
-
Latest release: 0.17.01-r0
published about 2 years ago
Rankings
Maintainers (1)
Dependencies
- actions/checkout v3 composite
- aquasecurity/trivy-action master composite
- docker/build-push-action v3 composite
- docker/login-action v2 composite
- docker/metadata-action v4 composite
- docker/setup-buildx-action v2 composite
- docker/setup-qemu-action v2 composite
- github/codeql-action/upload-sarif v2 composite
- actions/checkout v3 composite
- docker/build-push-action v3 composite
- docker/login-action v2 composite
- docker/metadata-action v4 composite
- docker/setup-buildx-action v2 composite
- docker/setup-qemu-action v2 composite
- alpine 3 build