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
5a533b0b
Commit
5a533b0b
authored
Jun 05, 2019
by
Alessio Netti
Browse files
Merge master branch
parents
588e014d
d92d905a
Changes
175
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
5a533b0b
...
...
@@ -4,6 +4,8 @@ install/
## Ignore DCDB generated documentation
doc/html
doc/dcdb_documentation.html
doc/dox_stderr.txt
## Ignore object files and other binaries
*.o
...
...
Makefile
View file @
5a533b0b
...
...
@@ -100,7 +100,7 @@ cleandeps:
cleandoc
:
@
echo
"Cleaning doc/html..."
@
rm
-rf
doc/html
@
rm
-rf
doc/html
&&
rm
doc/dcdb_documentation.html
&&
rm
doc/dox_stderr.txt
cleanall
:
clean cleandeps cleandoc
...
...
@@ -117,7 +117,7 @@ mrproper: distclean
doc
:
@
echo
"Generating doxygen HTML documentation..."
@
cd
doc/
&&
doxygen Doxyfile
@
cd
doc/
&&
doxygen Doxyfile
&&
ln
-sf
./html/index.html ./dcdb_documentation.html
@
echo
"Generated docs into doc/html"
all
:
check-cross-compile deps $(foreach s
,
$(SUB_DIRS)
,
$(s)-build)
...
...
analytics/AnalyticsManager.cpp
View file @
5a533b0b
//================================================================================
// Name : AnalyticsManager.cpp
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Management class implementation for the data analytics framework.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2018-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 10.12.18.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#include "AnalyticsManager.h"
#include "timestamp.h"
...
...
analytics/AnalyticsManager.h
View file @
5a533b0b
//================================================================================
// Name : AnalyticsManager.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Management class for the data analytics framework.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2018-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 10.12.18.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_ANALYTICSMANAGER_H
#define PROJECT_ANALYTICSMANAGER_H
...
...
analytics/analyzers/aggregator/AggregatorAnalyzer.cpp
View file @
5a533b0b
//================================================================================
// Name : AggregatorAnalyzer.cpp
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description :
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2019-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 16.01.19.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#include "AggregatorAnalyzer.h"
...
...
@@ -45,7 +67,7 @@ void AggregatorAnalyzer::computeSum(int unitID) {
// Getting the most recent values as specified in _window
_buffer
=
_queryEngine
.
querySensor
(
in
->
getName
(),
_window
,
0
,
_buffer
);
if
(
!
_buffer
||
_buffer
->
empty
())
{
LOG
(
error
)
<<
"Analyzer "
<<
_name
<<
" cannot read from sensor "
<<
in
->
getName
()
<<
"!"
;
LOG
(
debug
)
<<
"Analyzer "
<<
_name
<<
" cannot read from sensor "
<<
in
->
getName
()
<<
"!"
;
return
;
}
...
...
@@ -66,7 +88,7 @@ void AggregatorAnalyzer::computeAvg(int unitID) {
// Getting the most recent values as specified in _window
_buffer
=
_queryEngine
.
querySensor
(
in
->
getName
(),
_window
,
0
,
_buffer
);
if
(
!
_buffer
||
_buffer
->
empty
())
{
LOG
(
error
)
<<
"Analyzer "
<<
_name
<<
" cannot read from sensor "
<<
in
->
getName
()
<<
"!"
;
LOG
(
debug
)
<<
"Analyzer "
<<
_name
<<
" cannot read from sensor "
<<
in
->
getName
()
<<
"!"
;
return
;
}
...
...
@@ -91,7 +113,7 @@ void AggregatorAnalyzer::computeMax(int unitID) {
// Getting the most recent values as specified in _window
_buffer
=
_queryEngine
.
querySensor
(
in
->
getName
(),
_window
,
0
,
_buffer
);
if
(
!
_buffer
||
_buffer
->
empty
())
{
LOG
(
error
)
<<
"Analyzer "
<<
_name
<<
" cannot read from sensor "
<<
in
->
getName
()
<<
"!"
;
LOG
(
debug
)
<<
"Analyzer "
<<
_name
<<
" cannot read from sensor "
<<
in
->
getName
()
<<
"!"
;
return
;
}
...
...
@@ -114,7 +136,7 @@ void AggregatorAnalyzer::computeMin(int unitID) {
// Getting the most recent values as specified in _window
_buffer
=
_queryEngine
.
querySensor
(
in
->
getName
(),
_window
,
0
,
_buffer
);
if
(
!
_buffer
||
_buffer
->
empty
())
{
LOG
(
error
)
<<
"Analyzer "
<<
_name
<<
" cannot read from sensor "
<<
in
->
getName
()
<<
"!"
;
LOG
(
debug
)
<<
"Analyzer "
<<
_name
<<
" cannot read from sensor "
<<
in
->
getName
()
<<
"!"
;
return
;
}
...
...
analytics/analyzers/aggregator/AggregatorAnalyzer.h
View file @
5a533b0b
//================================================================================
// Name : AggregatorAnalyzer.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description :
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2019-2019 Leibniz Supercomputing Centre
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// Created by Netti, Alessio on 16.01.19.
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_AGGREGATORANALYZER_H
#define PROJECT_AGGREGATORANALYZER_H
...
...
analytics/analyzers/aggregator/AggregatorConfigurator.cpp
View file @
5a533b0b
//================================================================================
// Name : AggregatorConfigurator.cpp
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description :
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2019-2019 Leibniz Supercomputing Centre
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// Created by Netti, Alessio on 16.01.19.
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#include "AggregatorConfigurator.h"
...
...
analytics/analyzers/aggregator/AggregatorConfigurator.h
View file @
5a533b0b
//================================================================================
// Name : AggregatorConfigurator.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description :
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2019-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 16.01.19.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_AGGREGATORCONFIGURATOR_H
#define PROJECT_AGGREGATORCONFIGURATOR_H
...
...
analytics/includes/AnalyzerConfiguratorInterface.h
View file @
5a533b0b
//================================================================================
// Name : AnalyzerConfiguratorInterface.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Interface to configurators for data analyzer plugins.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2018-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 10.12.18.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_ANALYZERCONFIGURATORINTERFACE_H
#define PROJECT_ANALYZERCONFIGURATORINTERFACE_H
...
...
analytics/includes/AnalyzerConfiguratorTemplate.h
View file @
5a533b0b
//================================================================================
// Name : AnalyzerConfiguratorTemplate.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Template implementing a standard AnalyzerConfiguratorInterface.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2018-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 10.12.18.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_ANALYZERCONFIGURATORTEMPLATE_H
#define PROJECT_ANALYZERCONFIGURATORTEMPLATE_H
...
...
analytics/includes/AnalyzerInterface.h
View file @
5a533b0b
//================================================================================
// Name : AnalyzerInterface.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Interface to data analyzers.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2018-2019 Leibniz Supercomputing Centre
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// Created by Netti, Alessio on 10.12.18.
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_ANALYZERINTERFACE_H
#define PROJECT_ANALYZERINTERFACE_H
...
...
analytics/includes/AnalyzerTemplate.h
View file @
5a533b0b
//================================================================================
// Name : AnalyzerTemplate.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Template implementing features needed by Analyzers.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2018-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 10.12.18.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_ANALYZERTEMPLATE_H
#define PROJECT_ANALYZERTEMPLATE_H
...
...
analytics/includes/QueryEngine.h
View file @
5a533b0b
//================================================================================
// Name : QueryEngine.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Class that grants query access to local and remote sensors.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2018-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 10.12.18.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_QUERYENGINE_H
#define PROJECT_QUERYENGINE_H
...
...
analytics/includes/UnitGenerator.h
View file @
5a533b0b
//================================================================================
// Name : UnitGenerator.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Helper template to generate Analyzer Units.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2019-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 21.01.19.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_UNITGENERATOR_H
#define PROJECT_UNITGENERATOR_H
...
...
analytics/includes/UnitInterface.h
View file @
5a533b0b
//================================================================================
// Name : UnitInterface.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Interface for Units used by Analyzers.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2019-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 07.01.19.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_UNITINTERFACE_H
#define PROJECT_UNITINTERFACE_H
...
...
analytics/includes/UnitTemplate.h
View file @
5a533b0b
//================================================================================
// Name : UnitTemplate.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Template implementing features to use Units in Analyzers.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2018-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 11.12.18.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_UNITTEMPLATE_H
#define PROJECT_UNITTEMPLATE_H
...
...
collectagent/CARestAPI.cpp
View file @
5a533b0b
/*
* CARestAPI.cpp
*
* Created on: 24.05.2019
* Author: Micha Mueller
*/
//================================================================================
// Name : CARestAPI.cpp
// Author : Micha Mueller
// Copyright : Leibniz Supercomputing Centre
// Description : RESTful API implementation for collectagent.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2019-2019 Leibniz Supercomputing Centre
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#include "CARestAPI.h"
...
...
collectagent/CARestAPI.h
View file @
5a533b0b
/*
* CARestAPI.h
*
* Created on: 24.05.2019
* Author: Micha Mueller
*/
//================================================================================
// Name : CARestAPI.h
// Author : Micha Mueller
// Copyright : Leibniz Supercomputing Centre
// Description : RESTful API for collectagent.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2019-2019 Leibniz Supercomputing Centre
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef COLLECTAGENT_CARESTAPI_H_
#define COLLECTAGENT_CARESTAPI_H_
...
...
collectagent/analyticscontroller.cpp
View file @
5a533b0b
//================================================================================
// Name : analyticscontroller.cpp
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Wrapper class implementation for AnalyticsManager.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2019-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 11.04.19.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#include "analyticscontroller.h"
...
...
collectagent/analyticscontroller.h
View file @
5a533b0b
//================================================================================
// Name : analyticscontroller.h
// Author : Alessio Netti
// Copyright : Leibniz Supercomputing Centre
// Description : Wrapper class for AnalyticsManager.
//================================================================================
//================================================================================
// This file is part of DCDB (DataCenter DataBase)
// Copyright (C) 2019-2019 Leibniz Supercomputing Centre
//
// Created by Netti, Alessio on 11.04.19.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//================================================================================
#ifndef PROJECT_ANALYTICSCONTROLLER_H
#define PROJECT_ANALYTICSCONTROLLER_H
...
...
Prev
1
2
3
4
5