Hi,
I have reproduced the issue with babeltrace -v option .
Thanks & Regards
Venkata Ranganadh Kantimahanthi
----- Forwarded by Venkata Kantimahanthi/HYD/TCS on 02/24/2015 03:02 PM
-----
From: Venkata Kantimahanthi <[email protected]>
To: [email protected]
Date: 02/18/2015 02:29 PM
Subject: [lttng-dev] Error is thrown when continously using
babeltrace
Hi,
We are using babeltrace 1.2.4 and LTTng Trace Control 2.5.3. Continously
giving babeltrace is throwing this error. I am actually getting this
while reading a snapshot session . I have given continously babeltrace and
path to read the traces . Then I am getting this error.
************************************************
[error] Unexpected end of packet. Either the trace data stream is
corrupted or metadata description does not match data layout.
[error] Reading event failed.
Error printing trace.
************************************************
As you said previously "The corrupted stream probably can't be handled by
Babeltrace anymore at that point."
Please see the below code snippet how we are using the lttng calls to
handle our requirement
creation of session:
lttng create s1 --snapshot -o /pramfs/telog
lttng enable-channel ch1 -u --buffers-uid --subbuf-size 4096
--num-subbuf 16
# Enable default events
lttng enable-event -u -c ch1 --loglevel TRACE_INFO '*'
After succesful creation of the session we are able to read the traces
using babeltrace successfully. But we have written a wrappers for using
lttng API calls in such a way to meet our requirement which is reading
only traces inside the buffer at that instant by writing into a file by
removing previously created snapshots.
lttng_sessions[0].path contains /pramfs/telog
myrm is a function pointer which cleans the directory and returns 770
permissions to that particular snapshot path.
if (ted_ss_reboot == SS_RB_CONF) {
/* Only read snapshot from last reboot once */
ted_ss_reboot = SS_RB_DONE;
extra = FCORRELATE;
} else {
/* Remove all previous snapshots from output folder
* This way filesystem will not be flooded by snapshots
* taken every time user reads the log. OBS, All dirs
under
* path will be deleted.
*/
if (nftw(lttng_sessions[0].path, myrm, FOPEN_MAX,
FTW_DEPTH) < 0) {
ERR("Failed to clean path, %s",
lttng_sessions[0].path);
goto send_rsp;
}
}
/*
* Take a snapshot of lttng buffers for a given session
*/
/* Create a output handle */
if ((lttng_out = lttng_snapshot_output_create()) == NULL) {
ERR("lttng_snapshot_output_create failed");
ret = -1;
goto send_rsp;
}
/* Take a snapshot, output path used is same as configured for the
session */
ret = lttng_snapshot_record(lttng_sessions[0].name, lttng_out, 0);
if (ret < 0) {
ERR("lttng_snapshot_record failed, ses:%s, %s",
lttng_sessions[0].name, lttng_strerror(ret));
ret = -1;
goto send_rsp;
}
lttng_snapshot_output_destroy(lttng_out);
/*
* snapshot folder created by root lttng-sessiond and all its
* subfolders have permissions set to 770, meaning non-privileged
* user cant read/write from/to that folder. A regular user should
* be able to read traces generated by root sessiond.
* Changing permissions to this file tree.
*/
nftw(lttng_sessions[0].path, mychmod, FOPEN_MAX, FTW_DEPTH);
babeltrace --clock-date --clock-force-correlate /pramfs/telog
which was giving the logs which we were expecting but if we keep this
process repeatedly above mentioned error was coming. I am sharing the log
file (there te log read is the wrapper call for above process which I
mentioned).Please tell if any other logs were required.
Thanks & Regards
Venkata Ranganadh Kantimahanthi
=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain
confidential or privileged information. If you are
not the intended recipient, any dissemination, use,
review, distribution, printing or copying of the
information contained in this e-mail message
and/or attachments to it are strictly prohibited. If
you have received this communication in error,
please notify us by reply e-mail or telephone and
immediately and permanently delete the message
and any attachments. Thank you
_______________________________________________
lttng-dev mailing list
[email protected]
http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev
# te log read |grep ERROR
[warning] Forcibly correlating trace clock sources (--clock-force-correlate).
[warning] Forcibly correlating trace clock sources (--clock-force-correlate).
[warning] Forcibly correlating trace clock sources (--clock-force-correlate).
[warning] Forcibly correlating trace clock sources (--clock-force-correlate).
[warning] Forcibly correlating trace clock sources (--clock-force-correlate).
[warning] Forcibly correlating trace clock sources (--clock-force-correlate).
[
[2015-02-18 08:08:44.687776921] (+0.130724586) oamhost
com_ericsson_trithread:ERROR: { cpu_id = 2 }, { process = "Osa_lsiServer_proc",
fileAndLine = "logserver.c:2872", msg = "The program is not reliable!" }
[2015-02-18 08:08:44.687777001] (+0.000000080) oamhost
com_ericsson_trithread:ERROR: { cpu_id = 5 }, { process = "Osa_oeiServer_proc",
fileAndLine = "objevidserver.c:380", msg = "OEI Server : CelloCli_getRpuReq
ERROR" }
[2015-02-18 08:08:44.687788948] (+0.000011947) oamhost
com_ericsson_trithread:ERROR: { cpu_id = 4 }, { process =
"Osa_avliServer_proc", fileAndLine = "avli_server.c:1545", msg = "The program
is not reliable" }
[2015-02-18 08:08:44.687885934] (+0.000096986) oamhost
com_ericsson_trithread:ERROR: { cpu_id = 5 }, { process = "Osa_oeiServer_proc",
fileAndLine = "objevidserver.c:381", msg = "OEI Server : Error code is 1" }
[2015-02-18 08:08:44.687979934] (+0.000066000) oamhost
com_ericsson_trithread:ERROR: { cpu_id = 4 }, { process =
"Osa_hiliServer_proc", fileAndLine = "hili_server.c:1634", msg = "The program
is not reliable" }
# te log read |grep ERROR
[2015-02-18 08:08:44.458478388] (+0.008982213) oamhost
com_ericsson_trithread:ERROR: { cpu_id = 1 }, { process =
"Osa_upgradeControl_proc", fileAndLine = "upgrade_control_server.c:1965", msg =
"The program is not reliable!" }
[error] Unexpected end of packet. Either the trace data stream is corrupted or
metadata description does not match data layout.
[error] Reading event failed.
Error printing trace.
[2015-02-18 08:08:44.687776921] (+0.130724586) oamhost
com_ericsson_trithread:ERROR: { cpu_id = 2 }, { process = "Osa_lsiServer_proc",
fileAndLine = "logserver.c:2872", msg = "The program is not reliable!" }
[2015-02-18 08:08:44.687777001] (+0.000000080) oamhost
com_ericsson_trithread:ERROR: { cpu_id = 5 }, { process = "Osa_oeiServer_proc",
fileAndLine = "objevidserver.c:380", msg = "OEI Server : CelloCli_getRpuReq
ERROR" }
[2015-02-18 08:08:44.687885934] (+0.000108933) oamhost
com_ericsson_trithread:ERROR: { cpu_id = 5 }, { process = "Osa_oeiServer_proc",
fileAndLine = "objevidserver.c:381", msg = "OEI Server : Error code is 1" }
Error: Command error
# lttng list s1
Tracing session s1: [active snapshot]
Trace path:
Live timer interval (usec): 4294967295
=== Domain: UST global ===
Buffer type: per UID
Channels:
-------------
- ch1: [enabled]
Attributes:
overwrite mode: 1
subbufers size: 4096
number of subbufers: 16
switch timer interval: 0
read timer interval: 0
trace file count: 0
trace file size (bytes): 0
output: mmap()
Events:
* (loglevel <= TRACE_INFO (6)) (type: tracepoint) [enabled]
com_ericsson_tri* (loglevel <= TRACE_DEBUG (14)) (type: tracepoint)
[enabled]
EVOC> babeltrace -v /pramfs/telog
150223-16:27:04 10.67.30.197 11.0b CPP_MOM-CPP-LSV157-gen1_gen1_COMPLETE
stopfile=/tmp/19493
$ babeltrace -v /pramfs/telog
[verbose] Verbose mode active.
[verbose] Converting from directory(ies):
[verbose] /pramfs/telog
[verbose] Converting from format: ctf <default>
[verbose] Converting to target: <stdout>
[verbose] Converting to format: text <default>
[verbose] CTF visitor: parent links creation... [verbose] done.
[verbose] CTF visitor: semantic check... [verbose] done.
[verbose] CTF visitor: metadata construction...
[verbose] env.hostname = "oamhost"
[verbose] env.domain = "ust"
[verbose] env.tracer_name = "lttng-ust"
[verbose] env.tracer_major = 2
[verbose] env.tracer_minor = 5
[verbose] done.
[15:12:32.239911627] (+?.?????????) oamhost
com_ericsson_plf_filesys:filesystemInfo: { timestamp_begin = 9915713449,
timestamp_end = 254693917932, content_size = 22728, packet_size = 32768,
events_discarded = 0, cpu_id = 23 }, { id = ( "extended" : container = 31 ), v
= { extended = { id = 80, timestamp = 10322997289 } } }, { file =
"/repo/edanlef/cpp/control/BCS_CRX901143_1/filesys_bl/filesys_lx_swu/src/lvm.c",
linenumber = 189, msg = "/dev/cpplvm_vg/vol1: clean, 1844/244320 files,
420091/976896 blocks" }
[15:12:32.793668561] (+0.553756934) oamhost
com_ericsson_plf_filesys:filesystemInfo: { timestamp_begin = 9911313476,
timestamp_end = 254659198037, content_size = 9224, packet_size = 32768,
events_discarded = 0, cpu_id = 0 }, { id = ( "extended" : container = 31 ), v =
{ extended = { id = 80, timestamp = 10876754223 } } }, { file =
"/repo/edanlef/cpp/control/BCS_CRX901143_1/filesys_bl/filesys_lx_swu/src/lvm.c",
linenumber = 189, msg = "/dev/cpplvm_vg/vol2: clean, 1047/238080 files,
416670/952320 blocks" }
[15:12:33.269662267] (+0.475993706) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912644782, timestamp_end = 254670353552, content_size =
16240, packet_size = 32768, events_discarded = 0, cpu_id = 7 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
11352747929 } } }, { process = "mBOS_welcome_proc", fileAndLine =
"welcome.c:211", msg = "Startup of CXC1737213 D1A06 2015-02-23 07:55:14 UTC
" }
[15:12:33.272519334] (+0.002857067) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9913412596, timestamp_end = 254675921617, content_size =
2856, packet_size = 32768, events_discarded = 0, cpu_id = 11 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
11355604996 } } }, { process = "Cs_boardManager_proc", fileAndLine =
"board_manager.c:1891", msg = "Start of CXC1737213_D1A06" }
[15:12:33.282154828] (+0.009635494) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
11365240490 } } }, { process = "chpi_server_proc", fileAndLine =
"chpi-server.c:515", msg = "CHPI: Reached Checkpoint ALL_PATCHES_LOADED" }
[15:12:33.282337574] (+0.000182746) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 91134084 } } }, {
process = "chpi_server_proc", fileAndLine = "chpi-server.c:515", msg = "CHPI:
Reached Checkpoint EARLY_HW_TEST_COMPLETE" }
[15:12:33.282349441] (+0.000011867) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 91145951 } } }, {
process = "chpi_server_proc", fileAndLine = "chpi-server.c:515", msg = "CHPI:
Reached Checkpoint ALL_BOOT_LM_LOADED" }
[15:12:33.282372321] (+0.000022880) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 91168831 } } }, {
process = "chpi_server_proc", fileAndLine = "chpi-server.c:515", msg = "CHPI:
Reached Checkpoint NAME_SERVER_STARTED" }
[15:12:33.282383788] (+0.000011467) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 91180298 } } }, {
process = "chpi_server_proc", fileAndLine = "chpi-server.c:515", msg = "CHPI:
Reached Checkpoint HARDDISK_STARTED" }
[15:12:33.284014428] (+0.001630640) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
11367100090 } } }, { process = "bmLoaderClient", fileAndLine =
"loader_client.c:404", msg = "initLoaderClient" }
[15:12:33.284479388] (+0.000464960) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912644782, timestamp_end = 254670353552, content_size =
16240, packet_size = 32768, events_discarded = 0, cpu_id = 7 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 93275898 } } }, {
process = "lcim", fileAndLine = "lcim.c:523", msg = "Received PMD notification
for /system/pmd/pmd-packet_server-14262-20150223-151139.tgz" }
[15:12:33.285398054] (+0.000918666) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9913795316, timestamp_end = 29932517677, content_size =
32744, packet_size = 32768, events_discarded = 0, cpu_id = 13 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
11368483716 } } }, { process = "bmLoaderClient", fileAndLine =
"loader_client.c:539", msg = "Program handler default values, capabilities=0x17
cpu conf=0xffffff noOfgroups=1 group=1" }
[15:12:33.974530376] (+0.689132322) oamhost
com_ericsson_plf_epb2_packetserver:packet_info: { timestamp_begin = 9911313476,
timestamp_end = 254659198037, content_size = 9224, packet_size = 32768,
events_discarded = 0, cpu_id = 0 }, { id = ( "extended" : container = 31 ), v =
{ extended = { id = 60, timestamp = 12057616038 } } }, { file =
"/repo/edanlef/cpp/control/BABS_CRX901142_1/epb2_lx_bl/epb2_packet-server_lx_swu/src/packet_proc.c",
linenumber = 1281, msg = "Linepool has 38836 buffers of 1728 bytes with 1500
bytes payload." }
[15:12:34.259134456] (+0.284604080) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9913795316, timestamp_end = 29932517677, content_size =
32744, packet_size = 32768, events_discarded = 0, cpu_id = 13 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
12342220118 } } }, { process = "bmMpRole", fileAndLine = "board_mgr_mp.c:681",
msg = "checkRestartCounter" }
[15:12:34.259374402] (+0.000239946) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9913795316, timestamp_end = 29932517677, content_size =
32744, packet_size = 32768, events_discarded = 0, cpu_id = 13 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 128646816 } } }, {
process = "bmMpRole", fileAndLine = "board_mgr_mp.c:702", msg = "Restart count
increased to 0x1 (limit=0x1 flag=0xdeadbeee)
" }
[15:12:34.259379736] (+0.000005334) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9913795316, timestamp_end = 29932517677, content_size =
32744, packet_size = 32768, events_discarded = 0, cpu_id = 13 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 128652150 } } }, {
process = "bmMpRole", fileAndLine = "board_mgr_mp.c:1104", msg =
"loadConfiguredLLP" }
[15:12:34.262865762] (+0.003486026) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9913795316, timestamp_end = 29932517677, content_size =
32744, packet_size = 32768, events_discarded = 0, cpu_id = 13 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 132138176 } } }, {
process = "bmMpRole", fileAndLine = "board_mgr_cv.c:421", msg = "Select
Configuration Version <java_setup_2302>" }
[15:12:34.263315816] (+0.000450054) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9913795316, timestamp_end = 29932517677, content_size =
32744, packet_size = 32768, events_discarded = 0, cpu_id = 13 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 132588230 } } }, {
process = "bmMpRole", fileAndLine = "board_mgr_mp.c:888", msg = "loadLLP" }
[15:12:34.263319736] (+0.000003920) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9913795316, timestamp_end = 29932517677, content_size =
32744, packet_size = 32768, events_discarded = 0, cpu_id = 13 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 132592150 } } }, {
process = "bmMpRole", fileAndLine = "board_mgr_mp.c:829", msg =
"loadResidentProgram" }
[15:12:34.263349522] (+0.000029786) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9913795316, timestamp_end = 29932517677, content_size =
32744, packet_size = 32768, events_discarded = 0, cpu_id = 13 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 132621936 } } }, {
process = "bmLoaderClient", fileAndLine = "loader_client.c:1640", msg =
"handleLcLoadPgmReq" }
[15:12:34.263362056] (+0.000012534) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9913795316, timestamp_end = 29932517677, content_size =
32744, packet_size = 32768, events_discarded = 0, cpu_id = 13 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 132634470 } } }, {
process = "bmLoaderClient", fileAndLine = "bm_pgm_config_flib.c:314", msg =
"BmPgmConfig_installContainer" }
[15:12:34.263437949] (+0.000075893) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
12346523611 } } }, { process = "bmPgmConfig", fileAndLine =
"bm_pgm_config.c:1779", msg = "handleInstallContainerReq" }
[15:12:34.269405336] (+0.005967387) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 4460022 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:748", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=3" }
[15:12:34.269415469] (+0.000010133) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 4470155 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1732001%3_SQFS396 instanceId=0
loadClass=100 hwdistribution=0x0 maxMem=0x0
" }
[15:12:34.269435789] (+0.000020320) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 4490475 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=loader-server-ppc64
path=/usr/imagestore//CXC1732001%3_SQFS396/bin/loader-server-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:34.269487016] (+0.000051227) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
12352572678 } } }, { process = "bmLoaderClient", fileAndLine =
"loader_client.c:1224", msg = "createLmid noOfPrograms=1 nrOfPgmInstances=1" }
[15:12:34.269493229] (+0.000006213) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 4547915 } } }, {
process = "bmLoaderClient", fileAndLine = "loader_client.c:1082", msg =
"spawnProgram" }
[15:12:34.269529229] (+0.000036000) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 4583915 } } }, {
process = "bmLoaderClient", fileAndLine = "loader_client.c:1093", msg =
"spawnProgram CXC1732001%3_SQFS396 (instance=0) noOfPgms=1" }
[15:12:34.269533949] (+0.000004720) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 4588635 } } }, {
process = "bmLoaderClient", fileAndLine = "loader_client.c:926", msg =
"setProgramArgs" }
[15:12:34.287749202] (+0.018215253) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 22803888 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:936", msg =
"serviceGetRequests" }
[15:12:34.287759709] (+0.000010507) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 22814395 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:936", msg =
"serviceGetRequests" }
[15:12:34.287765442] (+0.000005733) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 22820128 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:936", msg =
"serviceGetRequests" }
[15:12:35.333218536] (+1.045453094) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
13416304198 } } }, { process = "Osa_loaderServer_proc", fileAndLine =
"llp.c:2980", msg = "
#################################################################" }
[15:12:35.333750403] (+0.000531867) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 129280993 } } }, {
process = "Osa_loaderServer_proc", fileAndLine = "llp_armament.c:1031", msg =
"Start CV = <java_setup_2302>" }
[15:12:35.334656243] (+0.000905840) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 130186833 } } }, {
process = "Osa_coreManager_proc", fileAndLine = "osa_cm_main.c:2408", msg =
"This CM was active last time, tries for NORMAL" }
[15:12:39.905945953] (+4.571289710) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
17989031615 } } }, { process = "bmPgmConfig", fileAndLine =
"bm_pgm_config.c:1141", msg = "handleGetLmidInfoReq" }
[15:12:39.906045313] (+0.000099360) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
17989130975 } } }, { process = "Cs_boardManager_proc", fileAndLine =
"board_manager.c:1980", msg = "BM_ALL_PATCHES_LOADED_IND" }
[15:12:39.906058727] (+0.000013414) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9911873742, timestamp_end = 23129405379, content_size =
32120, packet_size = 32768, events_discarded = 0, cpu_id = 3 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 3968837 } } }, {
process = "Cs_boardManager_proc", fileAndLine = "board_manager.c:1980", msg =
"BM_ALL_PATCHES_LOADED_IND" }
[15:12:39.906586700] (+0.000527973) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 4496810 } } }, {
process = "bmStartApplicationLoad", fileAndLine = "board_manager.c:1570", msg =
"bmStartApplicationLoad" }
[15:12:41.741037447] (+1.834450747) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
19824123109 } } }, { process = "Osa_coreManager_proc", fileAndLine =
"osa_cm_main.c:2340", msg = "Updating CM_CONFIG: ownState=NormalActive
peerSupa=0xffffffff peerState=Undefined activeSupa=0x30000" }
[15:12:41.754456567] (+0.013419120) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 107536213 } } }, {
process = "Osa_cmMci_proc", fileAndLine = "osa_cm_mci.c:572", msg = "Own
sequence number mismatch, sent=58, received=57" }
[15:12:41.754968621] (+0.000512054) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9915324089, timestamp_end = 254690401278, content_size =
21504, packet_size = 32768, events_discarded = 0, cpu_id = 21 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
19838054283 } } }, { process = "Osa_loaderServer_proc", fileAndLine =
"llp.c:774", msg = "Loader Server has received state Active" }
[15:12:41.755355154] (+0.000386533) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 108434800 } } }, {
process = "Osa_coreManager_proc", fileAndLine = "osa_cm_main.c:1946", msg =
"Number of CMI clients: own=4, peer=0" }
[15:12:41.755602674] (+0.000247520) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 108682320 } } }, {
process = "Osa_cmMci_proc", fileAndLine = "osa_cm_mci.c:730", msg = "Received
OSA_LDRI_MCI_TYPE_0 (LLP notice) from supa 0x30000" }
[15:12:41.769356114] (+0.013753440) oamhost
com_ericsson_plf_filesys:filesystemInfo: { timestamp_begin = 9913985262,
timestamp_end = 23108324099, content_size = 32712, packet_size = 32768,
events_discarded = 0, cpu_id = 14 }, { id = ( "extended" : container = 31 ), v
= { extended = { id = 80, timestamp = 19852441776 } } }, { file =
"/repo/edanlef/cpp/control/BCS_CRX901143_1/filesys_bl/filesys_lx_swu/src/global_volumes.c",
linenumber = 1824, msg = "Core mode is active" }
[15:12:41.783742834] (+0.014386720) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 2604752 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:41.783756007] (+0.000013173) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 2617925 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:41.783764434] (+0.000008427) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 2626352 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1737213_D1A06 instanceId=0 loadClass=10
hwdistribution=0x0 maxMem=0x0
" }
[15:12:41.784737554] (+0.000973120) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 3599472 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:41.785318061] (+0.000580507) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 4179979 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:41.788132994] (+0.002814933) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 6994912 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:41.788145740] (+0.000012746) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 7007658 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1321314%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:41.788153207] (+0.000007467) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 7015125 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=oam-sock-ppc64
path=/usr/imagestore//CXC1321314%3_SQFS396/bin/oam-sock-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:41.788940781] (+0.000787574) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 7802699 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:41.791834781] (+0.002894000) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 10696699 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:41.791845287] (+0.000010506) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 10707205 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1323464%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:41.791853500] (+0.000008213) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 10715418 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=objectsupport-ppc64
path=/usr/imagestore//CXC1323464%3_SQFS396/bin/objectsupport-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:41.792453767] (+0.000600267) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 11315685 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:41.794712700] (+0.002258933) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 13574618 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:41.794722727] (+0.000010027) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 13584645 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1731998%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:41.794729767] (+0.000007040) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 13591685 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=ipt-epb-ppc64
path=/usr/imagestore//CXC1731998%3_SQFS396/bin/ipt-epb-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:41.795325874] (+0.000596107) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 14187792 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:41.797307500] (+0.001981626) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 16169418 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:41.797319927] (+0.000012427) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 16181845 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1322506%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:41.797329634] (+0.000009707) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 16191552 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=oam-ip-utilities-ppc64
path=/usr/imagestore//CXC1322506%3_SQFS396/bin/oam-ip-utilities-ppc64
instanceId=0 type=1 maxMem=20000
" }
[15:12:41.797973981] (+0.000644347) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 16835899 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:41.828623074] (+0.030649093) oamhost com_ericsson_plf_ntp:ntpInfo: {
timestamp_begin = 9911497156, timestamp_end = 254660579546, content_size =
29816, packet_size = 32768, events_discarded = 0, cpu_id = 1 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 68, timestamp =
19911708736 } } }, { threadName = "ntpServerManager", file =
"/repo/edanlef/cpp/control/BCS_CRX901143_1/ntp_bl/ntp_lx_swu/src/ntp_server_mgr.c",
linenumber = 1307, msg = "NTP client started.Msg=" }
[15:12:41.840147180] (+0.011524106) oamhost com_ericsson_plf_ntp:ntpInfo: {
timestamp_begin = 9911690142, timestamp_end = 254661941615, content_size =
13248, packet_size = 32768, events_discarded = 0, cpu_id = 2 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 68, timestamp =
19923232842 } } }, { threadName = "ntpNotifer", file =
"/repo/edanlef/cpp/control/BCS_CRX901143_1/ntp_bl/ntp_lx_swu/src/ntp_inotify.c",
linenumber = 286, msg = "ntp log file created./var/log/ntp.log" }
[15:12:41.872094327] (+0.031947147) oamhost com_ericsson_plf_ntp:ntpInfo: {
timestamp_begin = 9911497156, timestamp_end = 254660579546, content_size =
29816, packet_size = 32768, events_discarded = 0, cpu_id = 1 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 68, timestamp =
19955179989 } } }, { threadName = "ntpServerManager", file =
"/repo/edanlef/cpp/control/BCS_CRX901143_1/ntp_bl/ntp_lx_swu/src/ntp_server_mgr.c",
linenumber = 2330, msg = "NTP restart" }
[15:12:41.987101582] (+0.115007255) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 9912088276, timestamp_end = 20070303804, content_size =
31736, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
20070187244 } } }, { process = "bmPgmConfig", fileAndLine =
"bm_pgm_config.c:756", msg = "Instance information instanceId=0,
hwDistribution=0, restartGroup=0" }
[15:12:41.987218142] (+0.000116560) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 71862332 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1737947_SQFS396 instanceId=0 loadClass=200
hwdistribution=0x0 maxMem=0x0
" }
[15:12:41.987445635] (+0.000227493) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 72089825 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libss7-sccpssif.so
path=/usr/imagestore//CXC1737947_SQFS396/lib/libss7-sccpssif.so instanceId=0
type=3 maxMem=0
" }
[15:12:41.987452648] (+0.000007013) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 72096838 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libss7-mtp3bssif.so
path=/usr/imagestore//CXC1737947_SQFS396/lib/libss7-mtp3bssif.so instanceId=0
type=3 maxMem=0
" }
[15:12:41.987458995] (+0.000006347) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 72103185 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libss7-sctpssif.so
path=/usr/imagestore//CXC1737947_SQFS396/lib/libss7-sctpssif.so instanceId=0
type=3 maxMem=0
" }
[15:12:41.987465528] (+0.000006533) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 72109718 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libss7-usaalssif.so
path=/usr/imagestore//CXC1737947_SQFS396/lib/libss7-usaalssif.so instanceId=0
type=3 maxMem=0
" }
[15:12:41.987471928] (+0.000006400) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 72116118 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libss7-sctpadm-ifu.so
path=/usr/imagestore//CXC1737947_SQFS396/lib/libss7-sctpadm-ifu.so instanceId=0
type=3 maxMem=0
" }
[15:12:41.988830595] (+0.001358667) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 73474785 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:41.991781315] (+0.002950720) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 76425505 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:41.991790381] (+0.000009066) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 76434571 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1320781%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:41.991797261] (+0.000006880) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 76441451 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=database-ppc64
path=/usr/imagestore//CXC1320781%3_SQFS396/bin/database-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:41.991810728] (+0.000013467) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 76454918 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=posgresql.tar.gz
path=/usr/imagestore//CXC1320781%3_SQFS396/tar/posgresql.tar.gz instanceId=0
type=5 maxMem=0
" }
[15:12:41.992341635] (+0.000530907) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 76985825 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:43.150632142] (+1.158290507) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
21233717804 } } }, { process = "bmPgmConfig", fileAndLine =
"bm_pgm_config.c:756", msg = "Instance information instanceId=0,
hwDistribution=0, restartGroup=0" }
[15:12:43.150693395] (+0.000061253) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27378033 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1737948_SQFS396 instanceId=0 loadClass=200
hwdistribution=0x0 maxMem=0x0
" }
[15:12:43.150732622] (+0.000039227) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27417260 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libcislfh-cislfi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libcislfh-cislfi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150740222] (+0.000007600) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27424860 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libcislfh-esfti-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libcislfh-esfti-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150746595] (+0.000006373) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27431233 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libcsxfh-csxfi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libcsxfh-csxfi-ifu.so instanceId=0
type=3 maxMem=0
" }
[15:12:43.150753129] (+0.000006534) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27437767 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libcsxfh-csxpregi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libcsxfh-csxpregi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150759395] (+0.000006266) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27444033 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libcsxfh-csxproci-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libcsxfh-csxproci-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150765582] (+0.000006187) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27450220 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libcsxfh-csxregi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libcsxfh-csxregi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150771742] (+0.000006160) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27456380 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libesad-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libesad-ifu.so instanceId=0 type=3
maxMem=0
" }
[15:12:43.150778062] (+0.000006320) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27462700 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libesmfh-esmpregi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libesmfh-esmpregi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150784329] (+0.000006267) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 20070303804, timestamp_end = 21233877564, content_size =
31864, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27468967 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libesmfh-esmproci-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libesmfh-esmproci-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150791902] (+0.000007573) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27476540 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libesmfh-esmregi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libesmfh-esmregi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150847289] (+0.000055387) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27531927 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libesmfh-esbpsi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libesmfh-esbpsi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150853902] (+0.000006613) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27538540 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libesmre-esmrei-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libesmre-esmrei-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150860435] (+0.000006533) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27545073 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libethfwre-ethfwci-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libethfwre-ethfwci-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150873129] (+0.000012694) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27557767 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libethfwre-ethfwdi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libethfwre-ethfwdi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150879982] (+0.000006853) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27564620 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=liblagfh-lagfi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/liblagfh-lagfi-ifu.so instanceId=0
type=3 maxMem=0
" }
[15:12:43.150886649] (+0.000006667) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27571287 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=liblagfh-lagregi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/liblagfh-lagregi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150892809] (+0.000006160) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27577447 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libstpf-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libstpf-ifu.so instanceId=0 type=3
maxMem=0
" }
[15:12:43.150898942] (+0.000006133) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27583580 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libvlanfh-esfci-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libvlanfh-esfci-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150905315] (+0.000006373) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27589953 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libvlanfh-vlanfi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libvlanfh-vlanfi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150911475] (+0.000006160) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27596113 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libebpfh-ebpregi-crm-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libebpfh-ebpregi-crm-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150932782] (+0.000021307) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27617420 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libebpfh-ebpregi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libebpfh-ebpregi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150940996] (+0.000008214) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27625634 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libepfh-epfi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libepfh-epfi-ifu.so instanceId=0
type=3 maxMem=0
" }
[15:12:43.150947822] (+0.000006826) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27632460 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libepfh-epproci-crm-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libepfh-epproci-crm-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150954062] (+0.000006240) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27638700 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libepfh-epproci-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libepfh-epproci-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150960196] (+0.000006134) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27644834 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libepfh-epregi-crm-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libepfh-epregi-crm-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150966276] (+0.000006080) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27650914 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libepfh-epregi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libepfh-epregi-ifu.so instanceId=0
type=3 maxMem=0
" }
[15:12:43.150972809] (+0.000006533) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27657447 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libepfh-epstatusfi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libepfh-epstatusfi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150979049] (+0.000006240) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27663687 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libepfh-vlanpregi-crm-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libepfh-vlanpregi-crm-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150985129] (+0.000006080) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21233877564, timestamp_end = 21234083351, content_size =
32544, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27669767 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libepfh-vlanpregi-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libepfh-vlanpregi-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.150997689] (+0.000012560) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27682327 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libesmrx-ebprei-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libesmrx-ebprei-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.151036942] (+0.000039253) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27721580 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libesmrx-l2refci-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libesmrx-l2refci-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.151043876] (+0.000006934) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27728514 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libesmrx-pmai-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libesmrx-pmai-ifu.so instanceId=0
type=3 maxMem=0
" }
[15:12:43.151050142] (+0.000006266) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 27734780 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libexscmn-snmpcoli-ifu.so
path=/usr/imagestore//CXC1737948_SQFS396/lib/libexscmn-snmpcoli-ifu.so
instanceId=0 type=3 maxMem=0
" }
[15:12:43.152344222] (+0.001294080) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 29028860 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:43.155554995] (+0.003210773) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 32239633 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:43.155564755] (+0.000009760) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 32249393 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1321316%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:43.155571955] (+0.000007200) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 32256593 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=oam-ethernet-ppc64
path=/usr/imagestore//CXC1321316%3_SQFS396/bin/oam-ethernet-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:43.156145502] (+0.000573547) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 32830140 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:43.158315902] (+0.002170400) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 35000540 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:43.158325315] (+0.000009413) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 35009953 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1321341%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:43.158332569] (+0.000007254) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 35017207 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=sw-installation-ppc64
path=/usr/imagestore//CXC1321341%3_SQFS396/bin/sw-installation-ppc64
instanceId=0 type=1 maxMem=20000
" }
[15:12:43.158847449] (+0.000514880) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 35532087 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:43.161316569] (+0.002469120) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 38001207 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:43.161326569] (+0.000010000) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 38011207 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1321315%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:43.161334435] (+0.000007866) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 38019073 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=oam-ipstack-ppc64
path=/usr/imagestore//CXC1321315%3_SQFS396/bin/oam-ipstack-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:43.161871235] (+0.000536800) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 38555873 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:43.164000942] (+0.002129707) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 40685580 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:43.164010782] (+0.000009840) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 40695420 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1321344%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:43.164017822] (+0.000007040) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 40702460 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=pm-support-ppc64
path=/usr/imagestore//CXC1321344%3_SQFS396/bin/pm-support-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:43.164576942] (+0.000559120) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 41261580 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:43.167097129] (+0.002520187) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 43781767 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:43.167107529] (+0.000010400) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 43792167 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1721176%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:43.167114462] (+0.000006933) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 43799100 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=pmagent-ppc64
path=/usr/imagestore//CXC1721176%3_SQFS396/bin/pmagent-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:43.167641689] (+0.000527227) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 44326327 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:43.205522915] (+0.037881226) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 82207553 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:43.205632755] (+0.000109840) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 82317393 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1737971_SQFS396 instanceId=0 loadClass=200
hwdistribution=0x0 maxMem=0x0
" }
[15:12:43.205644169] (+0.000011414) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 82328807 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=liblscf-if.so
path=/usr/imagestore//CXC1737971_SQFS396/lib/liblscf-if.so instanceId=0 type=3
maxMem=0
" }
[15:12:43.207040435] (+0.001396266) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 83725073 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:43.210113289] (+0.003072854) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21234083351, timestamp_end = 21293210124, content_size =
32600, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 86797927 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:43.210124462] (+0.000011173) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 86809100 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1320787%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:43.210181636] (+0.000057174) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 86866274 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=sysmgragent-ppc64
path=/usr/imagestore//CXC1320787%3_SQFS396/bin/sysmgragent-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:43.210769315] (+0.000587679) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 87453953 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:43.213078249] (+0.002308934) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 89762887 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:43.213088089] (+0.000009840) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 89772727 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1320782%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:43.213095742] (+0.000007653) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 89780380 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=eqm-resource-ppc64
path=/usr/imagestore//CXC1320782%3_SQFS396/bin/eqm-resource-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:43.213660595] (+0.000564853) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 90345233 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:43.216973662] (+0.003313067) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 93658300 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:756", msg = "Instance
information instanceId=0, hwDistribution=0, restartGroup=0" }
[15:12:43.216984356] (+0.000010694) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 93668994 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1720483%3_SQFS396 instanceId=0
loadClass=200 hwdistribution=0x0 maxMem=0x0
" }
[15:12:43.216992035] (+0.000007679) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 93676673 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=nclishell-ppc64
path=/usr/imagestore//CXC1720483%3_SQFS396/bin/nclishell-ppc64 instanceId=0
type=1 maxMem=20000
" }
[15:12:43.217564275] (+0.000572240) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 94248913 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:1180", msg =
"nrOfPgmInstances =0" }
[15:12:43.558584382] (+0.341020107) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"extended" : container = 31 ), v = { extended = { id = 7, timestamp =
21641670044 } } }, { process = "bmPgmConfig", fileAndLine =
"bm_pgm_config.c:756", msg = "Instance information instanceId=0,
hwDistribution=0, restartGroup=0" }
[15:12:43.558672596] (+0.000088214) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 32704050 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:782", msg = "Created
container list element with lmid=CXC1737954_SQFS396 instanceId=0 loadClass=200
hwdistribution=0x0 maxMem=0x0
" }
[15:12:43.558706169] (+0.000033573) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 32737623 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libipcpbhregiproxy.so
path=/usr/imagestore//CXC1737954_SQFS396/lib/libipcpbhregiproxy.so instanceId=0
type=3 maxMem=0
" }
[15:12:43.558717475] (+0.000011306) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 32748929 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libipcpdhregiproxy.so
path=/usr/imagestore//CXC1737954_SQFS396/lib/libipcpdhregiproxy.so instanceId=0
type=3 maxMem=0
" }
[15:12:43.558724142] (+0.000006667) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 32755596 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libipcplhregiproxy.so
path=/usr/imagestore//CXC1737954_SQFS396/lib/libipcplhregiproxy.so instanceId=0
type=3 maxMem=0
" }
[15:12:43.558732835] (+0.000008693) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 32764289 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libippcmn.so
path=/usr/imagestore//CXC1737954_SQFS396/lib/libippcmn.so instanceId=0 type=3
maxMem=0
" }
[15:12:43.558740515] (+0.000007680) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 32771969 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libipicmn.so
path=/usr/imagestore//CXC1737954_SQFS396/lib/libipicmn.so instanceId=0 type=3
maxMem=0
" }
[15:12:43.558746862] (+0.000006347) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 32778316 } } }, {
process = "bmPgmConfig", fileAndLine = "bm_pgm_config.c:677", msg = "Created
program list element with handle=libapplregi.so
path=/usr/imagestore//CXC1737954_SQFS396/lib/libapplregi.so instanceId=0 type=3
maFS396/lib/liboei.so instanceId=0 type=3 maxMem=0
" }
[15:12:43.580233920] (+0.021487058) oamhost com_ericsson_trithread:INFO: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 7 ), v = { compact = { timestamp = 54265374 } } }, {
process = "bmPgmConfi element with handle=libbhri.so
path=/usr/imagestore//CXC1737954_SQFS396/lib/libbhri.so instanceId=0 type=3
maxMem=0
", fileAndLine = "9ôX7bmPgmConfig", msg = "bm_pgm_config.c:677" }
[15:12:43.583797251] (+0.003563331) oamhost com_ericsson_trithread:TRACE1: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 8 ), v = { compact = { timestamp = 57828705 } } }, {
process = "ted program list element with handle=libgfm.so
path=/usr/imagestore//CXC1737954_SQFS396/lib/libgfm.so instanceId=0 type=3
maxMem=0
", fileAndLine = "9ôpÃbmPgmConfig", msg = "bm_pgm_config.c:677" }
[15:12:43.583797251] (+0.000000000) oamhost com_ericsson_trithread:TRACE1: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 8 ), v = { compact = { timestamp = 57828705 } } }, {
process = "ted program list element with handle=libdepri-ip-lx-if.so
path=/usr/imagestore//CXC1737954_SQFS396/lib/libdepri-ip-lx-if.so instanceId=0
type=3 maxMem=0
", fileAndLine = ": \â¡bmPgmConfig", msg = "bm_pgm_config.c:1180" }
[15:12:43.634123272] (+0.050326021) oamhost com_ericsson_trithread:TRACE6: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 13 ), v = { compact = { timestamp = 108154726 } } }, {
process = "PgmInstances =0", fileAndLine = ":EÃbmPgmConfig", msg =
"bm_pgm_config.c:756" }
[15:12:43.684202006] (+0.050078734) oamhost com_ericsson_trithread:TRACE2: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 9 ), v = { compact = { timestamp = 24015732 } } }, {
process = "ance information instanceId=0, hwDistribution=0, restartGroup=0",
fileAndLine = ":FbmPgmConfig", msg = "bm_pgm_config.c:782" }
[15:12:43.718014979] (+0.033812973) oamhost com_ericsson_trithread:TRACE1: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 8 ), v = { compact = { timestamp = 57828705 } } }, {
process = "ted container list element with lmid=CXC1732000%3_SQFS396
instanceId=0 loadClass=200 hwdistribution=0x0 maxMem=0x0
", fileAndLine = ":F!âbmPgmConfig", msg = "bm_pgm_config.c:677" }
[15:12:43.718014979] (+0.000000000) oamhost com_ericsson_trithread:TRACE1: {
timestamp_begin = 21293210124, timestamp_end = 21650212738, content_size =
31984, packet_size = 32768, events_discarded = 0, cpu_id = 4 }, { id = (
"compact" : container = 8 ), v = { compact = { timestamp = 57828705 } } }, {
process = "ted program list element with handle=evo-boot-mgr-ppc64
path=/usr/imagestore//CXC1732000%3_SQFS396/bin/evo-boot-mgr-ppc64 instanceId=0
type=1 maxMem=20000
", fileAndLine = ":OvBbmPgmConfig", msg = "bm_pgm_config.c:1180" }
[error] Unexpected end of packet. Either the trace data stream is corrupted or
metadata description does not match data layout.
[error] Reading event failed.
Error printing trace.
$ _______________________________________________
lttng-dev mailing list
[email protected]
http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev