APM dashboard is not showing any entries (even with expanding time to last 7 days). It shows only: "Looks like you don't have any services with APM installed. Let's add some!"
Request in APM dashboard: http://kibana:5601/api/apm/services?start=2018-09-14T09%3A20%3A57.371Z&end=2018-09-21T09%3A20%3A57.372Z
is returning an empty array and request:
http://kibana:5601/api/apm/status/agent
is returning just: {"data_found":false}
I have data in elasticsearch index:
GET apm-server-*/_search
{
"took": 1,
"timed_out": false,
"_shards": {
"total": 10,
"successful": 10,
"skipped": 0,
"failed": 0
},
"hits": {
"total": 80,
"max_score": 1,
"hits": [
{
"_index": "apm-server-2018.09.20",
"_type": "doc",
"_id": "GDNX9mUBD-fXZyWkhXAt",
"_score": 1,
"_source": {
"transaction": {
"duration": {
"us": 550000
},
"type": "HTTP",
"id": "e260d9bb-ef9b-404c-9652-b23b3282fb71",
"result": "200",
"name": "GET /",
"sampled": true
},
"tags": [
"beats_input_raw_event"
],
"host": {
"name": "a8912a2fbcd9"
},
"beat": {
"version": "6.4.1",
"hostname": "a8912a2fbcd9",
"name": "a8912a2fbcd9"
},
"@timestamp": "2018-09-20T09:37:34.292Z",
"@version": "1",
"processor": {
"name": "transaction",
"event": "transaction"
},
"context": {
"service": {
"agent": {
"name": "elastic-php",
"version": "6.3.2"
},
"version": "na",
"name": "localBackend",
"framework": {
"name": "Laravel",
"version": "5.1.43 (LTS)"
},
"language": {
"name": "php",
"version": "7.1.1"
}
},
"system": {
"architecture": "x86_64",
"hostname": "d6eeaed688b8",
"platform": "Linux",
"ip": "176.74.57.22"
},
"request": {
...
Any idea what is misconfigured?
Thanks