Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
dcdb
dcdb
Commits
7beb1869
Commit
7beb1869
authored
Jul 01, 2019
by
Micha Müller
Browse files
Add contact mail address
parent
61f7fefe
Changes
203
Hide whitespace changes
Inline
Side-by-side
common/src/globalconfiguration.cpp
View file @
7beb1869
//================================================================================
// Name : globalconfiguration.cpp
// Author : Alessio Netti
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Common functionality implementation for reading in configuration files.
//================================================================================
...
...
common/src/logging.cpp
View file @
7beb1869
//================================================================================
// Name : logging.cpp
// Author : Alessio Netti
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Implementation of logging functionality.
//================================================================================
...
...
common/src/sensornavigator.cpp
View file @
7beb1869
//================================================================================
// Name : sensornavigator.h
// Author : Alessio Netti
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Provide simple representation of a sensor hierarchy.
//================================================================================
...
...
dcdbpusher/Caliper/dcdbpusher/DcdbPusher.cpp
View file @
7beb1869
...
...
@@ -8,6 +8,7 @@
//================================================================================
// Name : DcdbPusher.cpp
// Author : Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Caliper service to forward snapshot data to dcdb pusher.
//================================================================================
...
...
dcdbpusher/Configuration.cpp
View file @
7beb1869
//================================================================================
// Name : Configuration.cpp
// Author : Michael Ott, Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Class responsible for reading dcdb-pusher specific configuration.
//================================================================================
...
...
dcdbpusher/Configuration.h
View file @
7beb1869
//================================================================================
// Name : Configuration.h
// Author : Michael Ott, Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Class responsible for reading dcdb-pusher specific configuration.
//================================================================================
...
...
dcdbpusher/MQTTPusher.cpp
View file @
7beb1869
//================================================================================
// Name : MQTTPusher.cpp
// Author : Michael Ott, Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Collects values from the sensors and pushes them to the database.
//================================================================================
...
...
dcdbpusher/MQTTPusher.h
View file @
7beb1869
//================================================================================
// Name : MQTTPusher.h
// Author : Michael Ott, Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Collects values from the sensors and pushes them to the database.
//================================================================================
...
...
dcdbpusher/PluginManager.cpp
View file @
7beb1869
//================================================================================
// Name : PluginManager.cpp
// Author : Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Class bundling all logic related to dcdb-pusher plugins.
//================================================================================
...
...
dcdbpusher/PluginManager.h
View file @
7beb1869
//================================================================================
// Name : PluginManager.h
// Author : Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Class bundling all logic related to dcdb-pusher plugins.
//================================================================================
...
...
dcdbpusher/RestAPI.cpp
View file @
7beb1869
//================================================================================
// Name : RestAPI.cpp
// Author : Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : RESTful API implementation for dcdb-pusher
//================================================================================
...
...
dcdbpusher/RestAPI.h
View file @
7beb1869
//================================================================================
// Name : RestAPI.h
// Author : Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : RESTful API for dcdb-pusher.
//================================================================================
...
...
dcdbpusher/dcdbpusher.cpp
View file @
7beb1869
//================================================================================
// Name : dcdbpusher.cpp
// Author : Michael Ott, Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Main function for the DCDB MQTT Pusher.
//================================================================================
...
...
dcdbpusher/includes/ConfiguratorInterface.h
View file @
7beb1869
//================================================================================
// Name : ConfiguratorInterface.h
// Author : Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Abstract interface defining plugin configurator functionality.
//================================================================================
...
...
dcdbpusher/includes/ConfiguratorTemplate.h
View file @
7beb1869
//================================================================================
// Name : ConfiguratorTemplate.h
// Author : Micha Mueller, Carla Guillen
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Interface template for plugin configurators.
//================================================================================
...
...
dcdbpusher/includes/EntityInterface.h
View file @
7beb1869
//================================================================================
// Name : EntityInterface.h
// Author : Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Abstract interface defining sensor entity functionality.
//================================================================================
...
...
dcdbpusher/includes/SensorGroupInterface.h
View file @
7beb1869
//================================================================================
// Name : SensorGroupInterface.h
// Author : Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Abstract interface defining sensor group functionality.
//================================================================================
...
...
dcdbpusher/includes/SensorGroupTemplate.h
View file @
7beb1869
//================================================================================
// Name : SensorGroupTemplate.h
// Author : Micha Mueller
// Contact : info@dcdb.it
// Copyright : Leibniz Supercomputing Centre
// Description : Interface template for sensor group functionality.
//================================================================================
...
...
dcdbpusher/pluginGenerator/Configurator_cpp.sh
View file @
7beb1869
...
...
@@ -6,6 +6,7 @@ cat << EOF > ${PLUGIN_NAME}Configurator.cpp
//================================================================================
// Name :
${
PLUGIN_NAME
}
Configurator.cpp
// Author :
${
AUTHOR
}
// Contact :
// Copyright :
// Description : Source file for
${
PLUGIN_NAME
}
plugin configurator class.
//================================================================================
...
...
dcdbpusher/pluginGenerator/Configurator_h.sh
View file @
7beb1869
...
...
@@ -6,6 +6,7 @@ cat << EOF > ${PLUGIN_NAME}Configurator.h
//================================================================================
// Name :
${
PLUGIN_NAME
}
Configurator.h
// Author :
${
AUTHOR
}
// Contact :
// Copyright :
// Description : Header file for
${
PLUGIN_NAME
}
plugin configurator class.
//================================================================================
...
...
Prev
1
2
3
4
5
6
7
8
…
11
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment