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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
|
/*
Copyright 2024 Northern.tech AS
This file is part of CFEngine 3 - written and maintained by Northern.tech AS.
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; version 3.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
To the extent this program is licensed as part of the Enterprise
versions of CFEngine, the applicable Commercial Open Source License
(COSL) may apply to this file if you as a licensee so wish it. See
included file COSL.txt.
*/
#include <monitoring_read.h>
#include <file_lib.h> /* FILE_SEPARATOR */
#include <known_dirs.h>
/* GLOBALS */
static const char *UNITS[CF_OBSERVABLES] = /* constant */
{
"average users per 2.5 mins",
"processes",
"processes",
"percent",
"jobs",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"packets",
"packets",
"packets",
"packets",
"packets",
"packets",
"packets",
"packets",
"packets",
"packets",
"packets",
"packets",
"packets",
"packets",
"entries",
"entries",
"entries",
"entries",
"Celcius",
"Celcius",
"Celcius",
"Celcius",
"percent",
"percent",
"percent",
"percent",
"percent",
"packets",
"packets",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
"connections",
};
time_t slots_load_time = 0;
MonitoringSlot *SLOTS[CF_OBSERVABLES - ob_spare];
/*****************************************************************************/
void Nova_FreeSlot(MonitoringSlot *slot)
{
if (slot)
{
free(slot->name);
free(slot->description);
free(slot->units);
free(slot);
}
}
MonitoringSlot *Nova_MakeSlot(const char *name, const char *description,
const char *units,
double expected_minimum, double expected_maximum,
bool consolidable)
{
MonitoringSlot *slot = xmalloc(sizeof(MonitoringSlot));
slot->name = xstrdup(name);
slot->description = xstrdup(description);
slot->units = xstrdup(units);
slot->expected_minimum = expected_minimum;
slot->expected_maximum = expected_maximum;
slot->consolidable = consolidable;
return slot;
}
// This function is similar to cf-check/observables.c function GetObservableNames
// If we refactor for dynamic observables instead of hard coded and limited to 100
// then we likely should change here and there or refactor to have
// this ts_key read/parse code in one shared place.
void Nova_LoadSlots(void)
{
char filename[CF_BUFSIZE];
int i;
snprintf(filename, CF_BUFSIZE - 1, "%s%cts_key", GetStateDir(), FILE_SEPARATOR);
FILE *f = safe_fopen(filename, "r");
if (f == NULL)
{
return;
}
int fd = fileno(f);
struct stat sb;
if ((fstat(fd, &sb) != 0) ||
(sb.st_mtime <= slots_load_time))
{
fclose(f);
return;
}
slots_load_time = sb.st_mtime;
for (i = 0; i < CF_OBSERVABLES; ++i)
{
if (i < ob_spare)
{
int r;
do
{
r = fgetc(f);
} while (r != (int)'\n' && r != EOF);
if (r == EOF)
{
break;
}
}
else
{
char line[CF_MAXVARSIZE];
char name[CF_MAXVARSIZE], desc[CF_MAXVARSIZE];
char units[CF_MAXVARSIZE] = "unknown";
double expected_min = 0.0;
double expected_max = 100.0;
int consolidable = true;
if (fgets(line, CF_MAXVARSIZE, f) == NULL)
{
Log(LOG_LEVEL_ERR, "Error trying to read ts_key from file '%s'. (fgets: %s)", filename, GetErrorStr());
break;
}
int fields = sscanf(line, "%*d,%1023[^,],%1023[^,],%1023[^,],%lf,%lf,%d",
name, desc, units, &expected_min, &expected_max, &consolidable);
if (fields == 2)
{
/* Old-style ts_key with name and description */
}
else if (fields == 6)
{
/* New-style ts_key with additional parameters */
}
else
{
Log(LOG_LEVEL_ERR, "Wrong line format in ts_key: %s", line);
}
if (strcmp(name, "spare") != 0)
{
Nova_FreeSlot(SLOTS[i - ob_spare]);
SLOTS[i - ob_spare] = Nova_MakeSlot(name, desc, units, expected_min, expected_max, consolidable);
}
}
}
fclose(f);
}
bool NovaHasSlot(int idx)
{
Nova_LoadSlots();
return idx < ob_spare || SLOTS[idx - ob_spare];
}
const char *NovaGetSlotName(int idx)
{
Nova_LoadSlots();
return idx < ob_spare ? OBSERVABLES[idx][0] : SLOTS[idx - ob_spare]->name;
}
const char *NovaGetSlotDescription(int idx)
{
Nova_LoadSlots();
return idx < ob_spare ? OBSERVABLES[idx][1] : SLOTS[idx - ob_spare]->description;
}
const char *NovaGetSlotUnits(int idx)
{
Nova_LoadSlots();
return idx < ob_spare ? UNITS[idx] : SLOTS[idx - ob_spare]->units;
}
// TODO: real expected minimum/maximum/consolidable for core slots
double NovaGetSlotExpectedMinimum(int idx)
{
Nova_LoadSlots();
return idx < ob_spare ? 0.0f : SLOTS[idx - ob_spare]->expected_minimum;
}
double NovaGetSlotExpectedMaximum(int idx)
{
Nova_LoadSlots();
return idx < ob_spare ? 100.0f : SLOTS[idx - ob_spare]->expected_maximum;
}
bool NovaIsSlotConsolidable(int idx)
{
Nova_LoadSlots();
return idx < ob_spare ? true : SLOTS[idx - ob_spare]->consolidable;
}
/*
* This function returns beginning of last Monday relative to 'time'. If 'time'
* is Monday, beginning of the same day is returned.
*/
time_t WeekBegin(time_t time)
{
struct tm tm;
gmtime_r(&time, &tm);
/* Move back in time to reach Monday. */
time -= ((tm.tm_wday == 0 ? 6 : tm.tm_wday - 1) * SECONDS_PER_DAY);
/* Move to the beginning of day */
time -= tm.tm_hour * SECONDS_PER_HOUR;
time -= tm.tm_min * SECONDS_PER_MINUTE;
time -= tm.tm_sec;
return time;
}
time_t SubtractWeeks(time_t time, int weeks)
{
return time - weeks * SECONDS_PER_WEEK;
}
time_t NextShift(time_t time)
{
return time + SECONDS_PER_SHIFT;
}
void MakeTimekey(time_t time, char *result)
{
/* Generate timekey for database */
struct tm tm;
gmtime_r(&time, &tm);
snprintf(result, 64, "%d_%.3s_Lcycle_%d_%s",
tm.tm_mday, MONTH_TEXT[tm.tm_mon], (tm.tm_year + 1900) % 3, SHIFT_TEXT[tm.tm_hour / 6]);
}
/* Returns true if entry was found, false otherwise */
bool GetRecordForTime(CF_DB *db, time_t time, Averages *result)
{
char timekey[CF_MAXVARSIZE];
MakeTimekey(time, timekey);
return ReadDB(db, timekey, result, sizeof(Averages));
}
|