Ask questions. Get answers. Find technical product solutions from passionate experts in the NXLog community.
NXlog for Ubuntu 22.04
matstage created
When installing nxlog- ce, I get problems with dependency for the package.
sudo apt install ./nxlog-ce_3.0.2272_ubuntu_focal_amd64.deb
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Note, selecting 'nxlog-ce' instead of './nxlog-ce_3.0.2272_ubuntu_focal_amd64.deb'
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies.
nxlog-ce : Depends: libperl5.30 (>= 5.30.0) but it is not installable
Depends: libpython3.8 (>= 3.8.2) but it is not installable
E: Unable to correct problems, you have held broken packages.
I can do a lot of trickery but was wondering if you will create a new upgrade soon?
Pinning Python3.8 is a bit tricky and so is libperl5.30
Regards,
Mats Tage Axelsson
matstage created
Where I Can Download nxlog-ce-2.9.1716-1.x86_64 Or nxlog-ce for SLES
yao created
Hi
I have a testing environment needed by nxlog-ce-2.9.1716-1.x86_64,Where I Can Download?Note:My testing environment OS is SLES 11 SP4 and SLES 12 SP1,But on NXlog Website not for the nxlog-ce for SLES。
yao created
Nxlog Community Edition package for Debian Buster
pboniface created
Hi all,
I'm looking for a debian Buster package for nxlog-ce but i've noticed that it's not available on the download page.
Is there a reason ? Can i expect a future release soon ?
Thank you very much for your assistance.
Paul.
pboniface created
Add leading zeroes to integer
framold created
You can get microseconds of an DateTime object:
integer microsecond(datetime datetime)
Return the microsecond part of the time value.
Since this a fraction of a second want it to log:
second($EventTime) + "." + microsecond(($EventTime)
However this is wrong, when the microseconds fraction is lower then 100000. I need to add leading zeroes.
How do i do this?
Note: I cannot use sprintf("%06d", val) in perl module, since i am on windows.
framold created