Hide Forgot
1) Description of problem: Calamri logs at /var/log/calamari/httpd_access.log show GET access calls going at two different time intervals. The first GET request from graphite happens at every 60 seconds. ~~~ 127.0.0.1 - - [10/Mar/2016:08:17:49 +0100] "GET /graphite/render/?format=json-array&from=-1d&target=sumSeries(ceph.cluster.9bae8150-fab6-4a95-8b17-f6e4bbd9eb36.pool.all.num_read,ceph.cluster.9bae8150-fab6-4a95-8b17-f6e4bbd9eb36.pool.all.num_write) HTTP/1.1" 200 3666 ~~~ while the normal GET requests for other stats such as 'osd', 'server', 'pool', 'health', 'health_counters' etc.. is sent every 20 seconds. ~~~ 127.0.0.1 - - [10/Mar/2016:08:17:49 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/osd HTTP/1.1" 200 5093 127.0.0.1 - - [10/Mar/2016:08:17:49 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/server HTTP/1.1" 200 599 127.0.0.1 - - [10/Mar/2016:08:17:49 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/pool HTTP/1.1" 200 400 127.0.0.1 - - [10/Mar/2016:08:17:50 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36 HTTP/1.1" 200 143 127.0.0.1 - - [10/Mar/2016:08:17:50 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/health HTTP/1.1" 200 547 127.0.0.1 - - [10/Mar/2016:08:17:51 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/health_counters HTTP/1.1" 200 234 127.0.0.1 - - [10/Mar/2016:08:17:51 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/space HTTP/1.1" 200 105 127.0.0.1 - - [10/Mar/2016:08:18:09 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/osd HTTP/1.1" 200 5093 127.0.0.1 - - [10/Mar/2016:08:18:09 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/server HTTP/1.1" 200 599 127.0.0.1 - - [10/Mar/2016:08:18:09 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/pool HTTP/1.1" 200 400 127.0.0.1 - - [10/Mar/2016:08:18:10 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/health HTTP/1.1" 200 548 127.0.0.1 - - [10/Mar/2016:08:18:11 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/health_counters HTTP/1.1" 200 234 127.0.0.1 - - [10/Mar/2016:08:18:11 +0100] "GET /api/v1/cluster/9bae8150-fab6-4a95-8b17-f6e4bbd9eb36/space HTTP/1.1" 200 ~~~ It seems that the GET requests sent every 20 seconds may cause spurious traffic. Is there a specific reason for the GET requests to be sent every 20 seconds rather than the 60 seconds period? 2) Version-Release number of selected component (if applicable): RHCS1.3.2 3) How reproducible: Always 4) Steps to Reproduce: a) Install a Calamari node. b) Add the OSD and MON nodes to the Calamari interface c) Watch the GET traffic going on from the Calamari node using : # tailf /var/log/calamari/httpd_access.log
This is the configured behavior. If there is not specific concern, I'm going to close this.