Refactoring: Changed remaining check parameters starting with an 's' to the new rules...
[check_mk.git] / .werks / 8285
blob197d309215b36e6ad9a13f06425398f8a7301a25
1 Title: apache_status: Fixed wrong IPv6 URLs to query the information
2 Level: 1
3 Component: checks
4 Compatible: incomp
5 Edition: cee
6 Version: 1.5.0i1
7 Date: 1488549674
8 Class: fix
10 If the information from Apache is queried by IPv6, the request was denied,
11 because we created a bad request. Now IPv6 addresses are surrounded by
12 square bracket.
14 Service description for IPv6 Apache status information services will change,
15 because the general CIDR notation will be used as new service description.
17 In version 1.2.8 and 1.4.0:
18 <ul>
19  <li>Apache ::1:80 Status</li>
20  <li>Apache 2001:cdba::3257:9652:443 Status</li>
21 </ul>
23 Since version 1.5.0:
24 <ul>
25  <li>Apache [::1]:80 Status</li>
26  <li>Apache [2001:cdba::3257:9652]:443 Status</li>
27 </ul>
29 If historic information should not be lost and graphs should be continued,
30 then you have to follow three steps:
32 <ul>
33  <li>Rename existing RRDs to new service description:<br>
34      RRDs im Check_MK-Format: ~/var/check_mk/rrd<br>
35      RRDs im alten Format (PNP): ~/var/pnp4nagios/perfdata<br>
36      <br>
37      Example:<br>
38      mv Apache___1_80_Status.rrd Apache_[__1]_80_Status.rrd<br>
39      mv Apache_2001_cdba__3257_9652_443_Status.rrd Apache_[2001_cdba__3257_9652]_443_Status.rrd
40  </li>
41  <li>Update apache_status plugin on monitored hosts</li>
42  <li>Make a service discovery of the affected hosts</li>
43 </ul>