All Projects → sw-jung → kibana_notification_center

sw-jung / kibana_notification_center

Licence: MIT license
This plugin helps you to use kibana's notifications more usefully.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to kibana notification center

malice-kibana-plugin
Malice Kibana Plugin
Stars: ✭ 21 (-36.36%)
Mutual labels:  kibana, kibana-plugin
cleaner
An awesome Kibana plugin for setting elasticsearch index ttl
Stars: ✭ 16 (-51.52%)
Mutual labels:  kibana, kibana-plugin
kibana calendar vis
Calendar heatmap visualization Kibana plugin
Stars: ✭ 38 (+15.15%)
Mutual labels:  kibana, kibana-plugin
kibana markdown doc view
A plugin for custom doc view using markdown+handlebars template.
Stars: ✭ 35 (+6.06%)
Mutual labels:  kibana, kibana-plugin
stagemonitor-kibana
Kibana-Plugin for stagemonitor trace visualization
Stars: ✭ 13 (-60.61%)
Mutual labels:  kibana, kibana-plugin
kbn radar
Radar visualization for Kibana
Stars: ✭ 35 (+6.06%)
Mutual labels:  kibana, kibana-plugin
Microservices Sample
Sample project to create an application using microservices architecture
Stars: ✭ 167 (+406.06%)
Mutual labels:  kibana
Kibana Enhanced Table
Kibana visualization like a Data Table, but with enhanced features like computed columns, filter bar, and “Split Cols” bucket
Stars: ✭ 225 (+581.82%)
Mutual labels:  kibana
Elk Docker
Elasticsearch, Logstash, Kibana (ELK) Docker image
Stars: ✭ 1,973 (+5878.79%)
Mutual labels:  kibana
Json Logging Python
Python logging library to emit JSON log that can be easily indexed and searchable by logging infrastructure such as ELK, EFK, AWS Cloudwatch, GCP Stackdriver
Stars: ✭ 143 (+333.33%)
Mutual labels:  kibana
elastic-stack-testing
Elastic Stack Testing Framework (ESTF) 🤖
Stars: ✭ 47 (+42.42%)
Mutual labels:  kibana
Microservice Scaffold
基于Spring Cloud(Greenwich.SR2)搭建的微服务脚手架(适用于在线系统),已集成注册中心(Nacos Config)、配置中心(Nacos Discovery)、认证授权(Oauth 2 + JWT)、日志处理(ELK + Kafka)、限流熔断(AliBaba Sentinel)、应用指标监控(Prometheus + Grafana)、调用链监控(Pinpoint)、以及Spring Boot Admin。
Stars: ✭ 211 (+539.39%)
Mutual labels:  kibana
Docker Elastic Stack
ELK Stack Dockerfile
Stars: ✭ 175 (+430.3%)
Mutual labels:  kibana
Webporter
基于 webmagic 的 Java 爬虫应用
Stars: ✭ 2,598 (+7772.73%)
Mutual labels:  kibana
Synesis lite suricata
Suricata IDS/IPS log analytics using the Elastic Stack.
Stars: ✭ 167 (+406.06%)
Mutual labels:  kibana
tutorials
Tutorials
Stars: ✭ 80 (+142.42%)
Mutual labels:  kibana
Elk Stack
ELK Stack ... based on Elastic Stack 5.x
Stars: ✭ 148 (+348.48%)
Mutual labels:  kibana
Docker Elastic
Deploy Elastic stack in a Docker Swarm cluster. Ship application logs and metrics using beats & GELF plugin to Elasticsearch
Stars: ✭ 202 (+512.12%)
Mutual labels:  kibana
Eui
Elastic UI Framework 🙌
Stars: ✭ 3,248 (+9742.42%)
Mutual labels:  kibana
Elastic Charts
📊 Elastic Charts library
Stars: ✭ 191 (+478.79%)
Mutual labels:  kibana

Notification Center

Notification Center is a kibana plugin for better experience of notifier toasts.

Demo

Features

Webhook Endpoint

Provides a webhook endpoint that can generate a notification toast.

This feature is useful with the x-pack alerting.

  • See API for usage.

Notification History

You can see notification history in the notification center.(It's appear when you click the navbar button.)

This feature is useful when there are notifications that not be checked, such as when you are not looking at the screen.

In particular, you can check notifications received via webhook when you are not connected.

Of course, you can clear the checked notification.

NOTE: Not only notifications pushed through api, all notifications of generated by kibana's Notifier are displayed in notification center panel.

Installation

Copy installation file's url as same version of your kibana from the repository releases.

And

$ cd path/to/your/kibana
$ bin/kibana-plugin install <installation file's url>

If you want more information, See this document.

NOTE: How can I do if I cannot find version I want?
I'm sorry for that. This plugin not all of kibana versions are supported.
If you need unsupported version, please test nearest version.
In this case, you need to modify the kibana.version field in package.json.
Currently minimum support version is v5.4.3

Configuration

The following configurable options are set by default.

kibana.yml

notification_center:
  enabled: true

  # Name of the index where pushed notification is stored.
  # You can use momentjs's date format in wrapped by `%{}`. See https://momentjs.com/docs/#/displaying/format/
  index: "notification-%{+YYYY.MM.DD}"

  # The index template is created when you start kibana.
  template:
    name: "notification_center_template"
    overwrite: false

  api:
    # If `false` then disable all of REST APIs.
    enabled: true
    # The maximum size of the notification that user can pull from the server in a single request.
    pull.maxSize: 100

  supportDarkTheme: true

API

Push notification

  • URL: /api/notification_center/notification
  • Method: POST|PUT
  • Headers
{
  "Authorization": "your credential token here", // If you use x-pack security.
  "Content-Type": "application/json",
  "kbn-version": "your kibana version here" // This is kibana spec. ex: 5.6.0
}
  • Data Params
{
  "type": "error|warning|info" // Optional. Default "info"
  "content": "Write your notification content here." // Required
}
  • Response
// 200 OK
{
  "acknowledged": true
}

// The others are error.

development

See the kibana contributing guide for instructions setting up your development environment. Once you have completed that, use the following npm tasks.

  • npm start

    Start kibana and have it include this plugin

  • npm start -- --config kibana.yml

    You can pass any argument that you would normally send to bin/kibana by putting them after -- when running npm start

  • npm run build

    Build a distributable archive

  • npm run test:browser

    Run the browser tests in a real web browser

  • npm run test:server

    Run the server tests using mocha

For more information about any of these commands run npm run ${task} -- --help.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].