skeleton code for metrics

This commit is contained in:
DarthArgus
2016-10-17 16:21:39 -05:00
parent 3afa0d7b20
commit 08cc494dda
6 changed files with 315 additions and 207 deletions
+26
View File
@@ -0,0 +1,26 @@
//
// Created by Darth on 10/17/2016.
//
#ifndef webAPIHeartbeat_H
#define webAPIHeartbeat_H
#include <unordered_list>
#include "webAPI.h"
#include "../libLeff/libLeff.h"
namespace StellaBellum {
class webAPIHeartbeat {
public:
webAPIHeartbeat:webAPIHeartbeat();
webAPIHeartbeat:~webAPIHeartbeat();
bool sendHeartbeat(std::unordered_map<std::string, std::string> metricsData = nullptr);
};
}
#endif //webAPIHeartbeat_H