Class: Aws::ElasticBeanstalk::Types::CPUUtilization
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::CPUUtilization
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
CPU utilization metrics for an instance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#idle ⇒ Float
Percentage of time that the CPU has spent in the
Idlestate over the last 10 seconds. -
#io_wait ⇒ Float
Available on Linux environments only.
-
#irq ⇒ Float
Available on Linux environments only.
-
#nice ⇒ Float
Available on Linux environments only.
-
#privileged ⇒ Float
Available on Windows environments only.
-
#soft_irq ⇒ Float
Available on Linux environments only.
-
#system ⇒ Float
Available on Linux environments only.
-
#user ⇒ Float
Percentage of time that the CPU has spent in the
Userstate over the last 10 seconds.
Instance Attribute Details
#idle ⇒ Float
Percentage of time that the CPU has spent in the Idle state over
the last 10 seconds.
578 579 580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 578 class CPUUtilization < Struct.new( :user, :nice, :system, :idle, :io_wait, :irq, :soft_irq, :privileged) SENSITIVE = [] include Aws::Structure end |
#io_wait ⇒ Float
Available on Linux environments only.
Percentage of time that the CPU has spent in the I/O Wait state
over the last 10 seconds.
578 579 580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 578 class CPUUtilization < Struct.new( :user, :nice, :system, :idle, :io_wait, :irq, :soft_irq, :privileged) SENSITIVE = [] include Aws::Structure end |
#irq ⇒ Float
Available on Linux environments only.
Percentage of time that the CPU has spent in the IRQ state over
the last 10 seconds.
578 579 580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 578 class CPUUtilization < Struct.new( :user, :nice, :system, :idle, :io_wait, :irq, :soft_irq, :privileged) SENSITIVE = [] include Aws::Structure end |
#nice ⇒ Float
Available on Linux environments only.
Percentage of time that the CPU has spent in the Nice state over
the last 10 seconds.
578 579 580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 578 class CPUUtilization < Struct.new( :user, :nice, :system, :idle, :io_wait, :irq, :soft_irq, :privileged) SENSITIVE = [] include Aws::Structure end |
#privileged ⇒ Float
Available on Windows environments only.
Percentage of time that the CPU has spent in the Privileged state
over the last 10 seconds.
578 579 580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 578 class CPUUtilization < Struct.new( :user, :nice, :system, :idle, :io_wait, :irq, :soft_irq, :privileged) SENSITIVE = [] include Aws::Structure end |
#soft_irq ⇒ Float
Available on Linux environments only.
Percentage of time that the CPU has spent in the SoftIRQ state
over the last 10 seconds.
578 579 580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 578 class CPUUtilization < Struct.new( :user, :nice, :system, :idle, :io_wait, :irq, :soft_irq, :privileged) SENSITIVE = [] include Aws::Structure end |
#system ⇒ Float
Available on Linux environments only.
Percentage of time that the CPU has spent in the System state over
the last 10 seconds.
578 579 580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 578 class CPUUtilization < Struct.new( :user, :nice, :system, :idle, :io_wait, :irq, :soft_irq, :privileged) SENSITIVE = [] include Aws::Structure end |
#user ⇒ Float
Percentage of time that the CPU has spent in the User state over
the last 10 seconds.
578 579 580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 578 class CPUUtilization < Struct.new( :user, :nice, :system, :idle, :io_wait, :irq, :soft_irq, :privileged) SENSITIVE = [] include Aws::Structure end |