Wednesday, August 14, 2019

RedHat - check installed Apache httpd and latest version available

1. Check installed and latest version:
yum list httpd

Output:


Installed Packages                                                                  2.4.6-45.el7_3.4                                                                                          

Available Packages
 2.4.6-88.el7


2. List ChangeLog:

rpm -q --changelog httpd


OUTPUT:

* Mon May 28 2018 Luboš Uhliarik <luhliari@redhat.com> - 2.4.6-80.1
- Resolves: #1560609 - httpd: active connections being terminated when httpd
  gets gracefully stopped/restarted, GracefulShutdownTimeout is not being
  honored

* Mon Jan 08 2018 Luboš Uhliarik <luhliari@redhat.com> - 2.4.6-80
- Related: #1288395 - httpd segfault when logrotate invoked

* Wed Nov 01 2017 Luboš Uhliarik <luhliari@redhat.com> - 2.4.6-79
- Resolves: #1274890 - mod_ssl config: tighten defaults

....

Sunday, August 4, 2019

Splunk Chart Legend: Fix start and end truncation

In order to avoid annoying ... punctuation when displaying a chart legend in Splunk, please follow next steps:

1. Edit the report/Dashboard and View Source

2. Look for the following patterns 

<option name="charting.legend.labelStyle.overflowMode">ellipsisStart</option>
OR
<option name="charting.legend.labelStyle.overflowMode">ellipsisEnd</option>

3. Replace with

<option name="charting.legend.labelStyle.overflowMode">ellipsisNone</option>