Beats: Journalbeat 7.0.0 setup dashboard

Created on 10 Apr 2019  路  6Comments  路  Source: elastic/beats

Elasticsearch & Kibana 7.0.0 deployment with Journalbeat.

version: '2.4'
volumes: { esdata: {}, kbdata: {} }
services:
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:7.0.0
    restart: unless-stopped
    environment:
      - 'ES_JAVA_OPTS=-Xms512m -Xmx512m'
      - 'discovery.type=single-node'
    volumes:
      - 'esdata:/usr/share/elasticsearch/data'
    network_mode: host
    logging:
      driver: json-file
  kibana:
    image: docker.elastic.co/kibana/kibana:7.0.0
    restart: unless-stopped
    volumes:
      - 'kbdata:/usr/share/kibana/data'
    environment:
    - SERVER_NAME=puff
    - ELASTICSEARCH_HOSTS=http://localhost:9200/
    network_mode: host
    logging:
      driver: json-file
docker run --net="host" docker.elastic.co/beats/journalbeat:7.0.0 setup --dashboards

image

Journalbeat bug

Most helpful comment

Can anyone confirm whether the journalbeat dashboards work and in which version?

All 6 comments

the problem is with the references:

[
  {
    "id": "33c018b0-2876-11e9-bc7e-af96a8fe0ddd",
    "name": "kibanaSavedObjectMeta.searchSourceJSON.index",
    "type": "index-pattern"
  }
]

should be changed to (for all 3 searches)

[
  {
    "id": "journalbeat-*",
    "name": "kibanaSavedObjectMeta.searchSourceJSON.index",
    "type": "index-pattern"
  }
]

This problem persists in 7.2.0

Same thing here. Updating the id to reflect journalbeat-* would not fix the issue on 7.2.0 when I tried it. Any ideas on what needs changed to import the dashboard for version 7.2.0?

Same problem here (Using journalbeat-7.3.1-1 on Linux Arch x86)

Same problem on 7.4.2. Any update on this?

Can anyone confirm whether the journalbeat dashboards work and in which version?

Was this page helpful?
0 / 5 - 0 ratings