summaryrefslogtreecommitdiffstats
path: root/pcp/PCPDynamicMeter.h
blob: a7390e612be250ed6573151cc49edda117e7a0af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef HEADER_PCPDynamicMeter
#define HEADER_PCPDynamicMeter

#include "CRT.h"
#include "DynamicMeter.h"

typedef struct {
   unsigned int id; /* index into metric array */
   ColorElements color;
   char* name; /* derived metric name */
   char* label;
   char* suffix;
} PCPDynamicMetric;

typedef struct {
   DynamicMeter super;
   PCPDynamicMetric* metrics;
   unsigned int totalMetrics;
} PCPDynamicMeter;

typedef struct {
   Hashtable* table;
   unsigned int count; /* count of dynamic meters discovered by scan */
   unsigned int offset; /* start offset into the Platform metric array */
   unsigned int cursor; /* identifier allocator for each new metric used */
} PCPDynamicMeters;

void PCPDynamicMeters_init(PCPDynamicMeters* meters);

void PCPDynamicMeter_enable(PCPDynamicMeter* this);

void PCPDynamicMeter_updateValues(PCPDynamicMeter* this, Meter* meter);

void PCPDynamicMeter_display(PCPDynamicMeter* this, const Meter* meter, RichString* out);

#endif

© 2014-2024 Faster IT GmbH | imprint | privacy policy