Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Aspire 5 logs and metrics are directly pushed into Elasticsearch. In order to have a way to visualize them, a base set of dashboards have been created. These dashboards can be extended to support your monitoring needs.

Steps

  1. Download the export.ndjson file (export of dashboards)
  2. Import the file on Kibana
    1. CURL method

      Code Block
      languagebash
      themeRDark
      curl -u [elastic_user]:[elastic_pass] -F 'file=@/path/to/export.ndjson' -H 'kbn-xsrf:reporting' "http://kibana_host_or_ip:5601/api/saved_objects/_import?overwrite=true"
    2. Directly on Kibana
      1. Open the Menu on the Left
      2. Go to Management → Stack Management
      3. Go to Kibana → Saved Objects
      4. Click on Import, select export.ndjson file
        • Select "Check for existing bbjects" → "Automatically overwrite conflicts"
      5. Click on "Import" button.

...