engage-engine 1.251.90910029 → 1.252.90920030
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/ConfigurationObjects.h +6 -15
- package/lib/darwin.arm64/libengage-shared.dylib +0 -0
- package/lib/darwin.x64/libengage-shared.dylib +0 -0
- package/lib/darwin.x64/rts-fips.dylib +0 -0
- package/lib/linux.arm64/libengage-shared.so +0 -0
- package/lib/linux.x64/libengage-shared.so +0 -0
- package/lib/win32.ia32/engage-shared.dll +0 -0
- package/lib/win32.ia32/rts-fips.dll +0 -0
- package/lib/win32.x64/engage-shared.dll +0 -0
- package/lib/win32.x64/rts-fips.dll +0 -0
- package/package.json +1 -1
|
@@ -8339,14 +8339,11 @@ namespace AppConfigurationObjects
|
|
|
8339
8339
|
/** @brief Enum describing format(s) for the stream stats export. */
|
|
8340
8340
|
typedef enum
|
|
8341
8341
|
{
|
|
8342
|
-
/** @brief Data in JSON format */
|
|
8343
|
-
fmtJson = 0,
|
|
8344
|
-
|
|
8345
|
-
/** @brief Data in binary format */
|
|
8346
|
-
fmtBinary = 1,
|
|
8347
|
-
|
|
8348
8342
|
/** @brief Data in CSV format */
|
|
8349
|
-
fmtCsv =
|
|
8343
|
+
fmtCsv = 0,
|
|
8344
|
+
|
|
8345
|
+
/** @brief Data in JSON format */
|
|
8346
|
+
fmtJson = 1
|
|
8350
8347
|
} ExportFormat_t;
|
|
8351
8348
|
|
|
8352
8349
|
/** File name to use for the stream stats export. */
|
|
@@ -8358,16 +8355,13 @@ namespace AppConfigurationObjects
|
|
|
8358
8355
|
/** [Optional, Default: false] Indicates if stream stats export is enabled. */
|
|
8359
8356
|
bool enabled;
|
|
8360
8357
|
|
|
8361
|
-
/** [Optional, Default: null] Named pipe path for external program communication. */
|
|
8362
|
-
std::string namedPipePath;
|
|
8363
|
-
|
|
8364
8358
|
/** [Optional, Default: false] Whether to reset counters after export. */
|
|
8365
8359
|
bool resetCountersAfterExport;
|
|
8366
8360
|
|
|
8367
8361
|
/** [Optional, Default: null] Command to be executed every time the stream stats export is produced. */
|
|
8368
8362
|
std::string runCmd;
|
|
8369
8363
|
|
|
8370
|
-
/** [Optional, Default:
|
|
8364
|
+
/** [Optional, Default: fmtCsv] Format for the stream stats export. */
|
|
8371
8365
|
ExportFormat_t format;
|
|
8372
8366
|
|
|
8373
8367
|
|
|
@@ -8381,7 +8375,6 @@ namespace AppConfigurationObjects
|
|
|
8381
8375
|
fileName.clear();
|
|
8382
8376
|
intervalSecs = 60;
|
|
8383
8377
|
enabled = false;
|
|
8384
|
-
namedPipePath.clear();
|
|
8385
8378
|
resetCountersAfterExport = false;
|
|
8386
8379
|
runCmd.clear();
|
|
8387
8380
|
format = fmtJson;
|
|
@@ -8394,7 +8387,6 @@ namespace AppConfigurationObjects
|
|
|
8394
8387
|
TOJSON_IMPL(fileName),
|
|
8395
8388
|
TOJSON_IMPL(intervalSecs),
|
|
8396
8389
|
TOJSON_IMPL(enabled),
|
|
8397
|
-
TOJSON_IMPL(namedPipePath),
|
|
8398
8390
|
TOJSON_IMPL(resetCountersAfterExport),
|
|
8399
8391
|
TOJSON_IMPL(runCmd),
|
|
8400
8392
|
TOJSON_IMPL(format)
|
|
@@ -8406,10 +8398,9 @@ namespace AppConfigurationObjects
|
|
|
8406
8398
|
getOptional<std::string>("fileName", p.fileName, j);
|
|
8407
8399
|
getOptional<int>("intervalSecs", p.intervalSecs, j, 60);
|
|
8408
8400
|
getOptional<bool>("enabled", p.enabled, j, false);
|
|
8409
|
-
getOptional<std::string>("namedPipePath", p.namedPipePath, j);
|
|
8410
8401
|
getOptional<bool>("resetCountersAfterExport", p.resetCountersAfterExport, j, false);
|
|
8411
8402
|
getOptional<std::string>("runCmd", p.runCmd, j);
|
|
8412
|
-
getOptional<RallypointServerStreamStatsExport::ExportFormat_t>("format", p.format, j, RallypointServerStreamStatsExport::ExportFormat_t::
|
|
8403
|
+
getOptional<RallypointServerStreamStatsExport::ExportFormat_t>("format", p.format, j, RallypointServerStreamStatsExport::ExportFormat_t::fmtCsv);
|
|
8413
8404
|
}
|
|
8414
8405
|
|
|
8415
8406
|
//-----------------------------------------------------------
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED