listener-cpu-jfreechart

Listen to CPU Formula results and display it into a JFreeChart graph. See also: http://www.jfree.org/jfreechart.

License

License

Categories

Categories

JFreeChart User Interface Charts
GroupId

GroupId

fr.inria.powerapi.listener
ArtifactId

ArtifactId

listener-cpu-jfreechart
Last Version

Last Version

1.5
Release Date

Release Date

Type

Type

jar
Description

Description

listener-cpu-jfreechart
Listen to CPU Formula results and display it into a JFreeChart graph. See also: http://www.jfree.org/jfreechart.

Download listener-cpu-jfreechart

How to add to project

<!-- https://jarcasting.com/artifacts/fr.inria.powerapi.listener/listener-cpu-jfreechart/ -->
<dependency>
    <groupId>fr.inria.powerapi.listener</groupId>
    <artifactId>listener-cpu-jfreechart</artifactId>
    <version>1.5</version>
</dependency>
// https://jarcasting.com/artifacts/fr.inria.powerapi.listener/listener-cpu-jfreechart/
implementation 'fr.inria.powerapi.listener:listener-cpu-jfreechart:1.5'
// https://jarcasting.com/artifacts/fr.inria.powerapi.listener/listener-cpu-jfreechart/
implementation ("fr.inria.powerapi.listener:listener-cpu-jfreechart:1.5")
'fr.inria.powerapi.listener:listener-cpu-jfreechart:jar:1.5'
<dependency org="fr.inria.powerapi.listener" name="listener-cpu-jfreechart" rev="1.5">
  <artifact name="listener-cpu-jfreechart" type="jar" />
</dependency>
@Grapes(
@Grab(group='fr.inria.powerapi.listener', module='listener-cpu-jfreechart', version='1.5')
)
libraryDependencies += "fr.inria.powerapi.listener" % "listener-cpu-jfreechart" % "1.5"
[fr.inria.powerapi.listener/listener-cpu-jfreechart "1.5"]

Dependencies

compile (5)

Group / Artifact Type Version
jfree : jfreechart jar 1.0.13
fr.inria.powerapi : core jar 1.5
fr.inria.powerapi.formula : formula-cpu-api jar 1.5
org.scala-lang : scala-library jar 2.9.1
com.typesafe.akka » akka-actor jar 2.0.1

test (7)

Group / Artifact Type Version
fr.inria.powerapi : library jar 1.5
fr.inria.powerapi.sensor : sensor-cpu-proc jar 1.5
fr.inria.powerapi.formula : formula-cpu-max jar 1.5
com.github.scala-incubator.io : scala-io-core_2.9.1 jar 0.4.0
com.typesafe.akka » akka-testkit jar 2.0.1
junit : junit jar 4.8.1
org.scalatest : scalatest_2.9.1 jar 1.8

Project Modules

There are no modules declared in this project.

PowerAPI

This project is now deprecated, please consider the latest version of PowerAPI available from here.

PowerAPI is a scala-based library for monitoring energy at the process-level. It is based on a modular and asynchronous event-driven architecture using the Akka library.

PowerAPI differs from existing energy process-level monitoring tool in its pure software, fully customizable and modular aspect which let user to precisely define what he wants to monitor, without any external device.

PowerAPI offers an API which can be used to express request about energy spent by a process, following its hardware resource utilization (in term of CPU, memory, disk, network, etc.).

Documentation

Getting started

PowerAPI is completely written in Scala (v. 2.9.1+), using the Akka library (v 2.0.1+). Configuration part is managed by the Typesafe Config (integrated version from the Akka library). PowerAPI project is fully managed by Maven (v. 3).

How to acquire it

There are two ways to acquire PowerAPI: With or without Maven repositories. In other words, directly from Maven repositories (to get stable or snapshot versions), or from our Git repository (to get the source code).

With Maven repositories

Stable versions are available from the Maven central repository. Thus, you just have to put on your pom.xml file your desired modules. That's all.

Snapshot versions are available from the OSS Sonatype repository. Thus, you have to add this following repository location:

<repository>
    <id>OSS Sonatype snapshot repository</id>
	<url>https://oss.sonatype.org/content/repositories/snapshots</url>
	<snapshots>
		<enabled>true</enabled>
	</snapshots>
</repository>

After that, you just have to put on your pom.xml file your desired modules.

Without Maven repositories

Without Maven repositories, you have to deal with our Git repository as explain bellow:

To acquire PowerAPI, simply clone it via your Git client:

git clone git://github.com/abourdon/powerapi-akka.git

As PowerAPI is a Maven managed project, you have to launch the install command at the root directory (here, powerapi_akka_directory) in order to compile and install it to your local machine:

cd $powerapi_akka_directory
mvn install

By default, all modules are selected to be installed. Be careful to correctly selecting yours, depending on your environment and the use case you want to do (see pom.xml file at the root directory for more details).

How to make it compatible with the Eclipse IDE

For Eclipse IDE users, make sure you have installed both:

How to use it

In the way you acquire PowerAPI from Maven repositories, you can directly use it as a Jar project in your pom.xml file.

In the way you acquire PowerAPI from our Git repository, you can navigate to your desired module and use it as a standard Maven module:

cd $powerapi_akka_directory/sensors/sensor-cpu-api
mvn test

How to configure it

As said above, configuration part is managed by the Typesafe Config. Thus, be aware to properly configure each module from its .conf file(s).

Let's take an example for the fr.inria.powerapi.formula.formula-cpu-dvfs module, which implements the PowerAPI CPU Formula using the well-known formula, P = c * f * V * V, where c constant, f a frequency and V its associated voltage.

To compute this formula, fr.inria.powerapi.formula.formula-cpu-dvfs module has to know:

This information can be written in its associated configuration file as the following:

powerapi {
	cpu {
		tdp = 105
		frequencies = [
			{ value = 1800002, voltage = 1.31 }
			{ value = 2100002, voltage = 1.41 }
			{ value = 2400003, voltage = 1.5 }
		]
	}
}

Each module can have its own configuration part. See more details in its associated README file.

Architecture details

PowerAPI is based on a modular and asynchronous event-driven architecture using the Akka library. Architecture is centralized around a common event bus where each module can publish/subscribe to sending events. One particularity of this architecture is that each module is in passive state and reacts to events sent by the common event bus.

These modules are organized as follow:

Core

As its name indicates, Core module gather all kernel functionnalities that will be used by other modules. More particulary, this module defines the whole types used by PowerAPI to define its architecture.

This module also defines the essential Clock class, responsible of the periodically sending of the Tick message, later responsible of the process of the PowerAPI business part.

Sensors

To compute energy spent by a process through its hardware resource utilization, PowerAPI cuts computation in two parts:

  1. Hardware resource process utilization monitoring;
  2. Computation of the energy implies by the hardware resource process utilization.

Sensor modules or Sensors represents a set of Sensor, responsible of the monitoring of hardware resource process utilization. Thus, there is a CPU Sensor, a memory Sensor, a disk Sensor and so on. As information is given by operating system, there is one Sensor implementation by operating system type. Thus there is a CPU Linux Sensor, a CPU Windows Sensor, and so on.

Formulae

Set of Formula, responsible of the computation of the energy spent by a process on a particular hardware resource (e.g CPU, memory, disk, network), following information provided by its associated Sensor. A Formula may depend on the type of the monitored hardware resource. Thus, for the same hardware resource, several Formula implementations could exist.

Processors

Set of Processor, which listen to Formula events sending by the common event bus in order to process them before their display by Reporters. Thus Processor can be, for example, an aggregating process unit, aggregating messages sent by Formula module to be more meaningful during the display by a given Reporter.

Reporters

Set of Reporter, which listen to Processor events in order to display them to the final user. Thus, a Reporter is just a graphical representation of the PowerAPI request to the final user, which can be displayed for example into a console, a file or a graph.

Library

The Library module defines the API that can be used by user to interact with PowerAPI.

API details

Process-level energy monitoring is based on a periodically computation that can be expressed via the API. Here there are several examples to describe PowerAPI's API:

What is the CPU energy spent by the 123 process? Please give me fresh results every 500 milliseconds

Assume that process run under Linux, using a procfs file system on a standard CPU architecture. Thus, we need to use the procfs CPU Sensor implementation and a given CPU Formula implementation, let's say the DVFS version. Add to this the desire to display CPU energy spent by process into a console. So we need to:

  1. Activate the desired modules:
Array(
    classOf[fr.inria.powerapi.sensor.cpu.proc.times.CpuSensor],
    classOf[fr.inria.powerapi.formula.cpu.dvfs.CpuFormula]
).foreach(PowerAPI.startEnergyModule(_))
  1. Ask to PowerAPI to provide the CPU energy spent by the 123 process, every 500 milliseconds, using a console Reporter and aggregating results by timestamp produced every 500 milliseconds:
PowerAPI.startMonitoring(
    process = Process(123),
    duration = 500 milliseconds,
    processor = classOf[fr.inria.powerapi.processor.TimestampAggregator],
    listener = classOf[fr.inria.powerapi.reporter.ConsoleReporter],
)

Note that we use listener as parameter instead of reporter for legacy reasons.

Based on the first request, how can I display CPU energy information into a chart too?

Based on the previous code, we simply have to add a new Reporter which will be able to display CPU energy information into a chart. PowerAPI integrates a Reporter using the JFreeChart Java graph library. So let's add it to the PowerAPI system:

PowerAPI.startMonitoring(
    listener = classOf[fr.inria.powerapi.reporter.JFreeChartReporter]
)

That's all!

Future works

We are working on new energy modules (Sensor + Formula) development. If you are interested to participate, feel free to contact us via our GitHub webpage or mail us at [email protected]!

License

Copyright (C) 2013 Inria, University Lille 1.

PowerAPI is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

PowerAPI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with PowerAPI. If not, see http://www.gnu.org/licenses/.

Versions

Version
1.5
1.4
1.3.2
1.3.1
1.3
1.2
1.1