Code Monkey home page Code Monkey logo

Comments (4)

nreese avatar nreese commented on July 18, 2024

Nothing is in the works but pull requests are appreciated.

from kibana-time-plugin.

GustavoBellini avatar GustavoBellini commented on July 18, 2024

Hello,

I was even able to install in version 7.3.2, but on first boot appeared the following message in kibana:

@babel/polyfill is deprecated. Please, use required parts of core-js

I tried to find this library (@ babel / polyfill) with a grep -ri but couldn't find any file that uses it.

The only mistake I noticed was that the shortcuts to change the layout disappeared.

from kibana-time-plugin.

ShellySingh1 avatar ShellySingh1 commented on July 18, 2024

Hi,

I am looking forward to using it with 7.4. I am a Kibana user - not a developer and unfortunately wont be able to edit it myself. Any help?

Thanks.

from kibana-time-plugin.

shidokamo avatar shidokamo commented on July 18, 2024

Hi,

I had exactly same issue mentioned by @GustavoBellini

The error message was below which should be related to Babel 7.4 updates.

@babel/polyfill is deprecated. Please, use required parts of core-js

I think this is not a plugin issue. In my environment, Node version mismatch between Kibana and Bower was causing this issue. I changed installation process as below and now the plugin is working on my Kibana 7.3.2 environment.

Below step is using Node version manager called 'n'. This tool is pretty useful but it directly controls your system directory. I recommend you to understand how it works. (Installation path etc.)

 # Kibana installation dir for Ubuntu/Debian
 KIBANA_HOME=/usr/share/kibana
 
 # Check Node version for your Kibana
 # In my case >>  "node": "10.15.2"
 cat $KIBANA_HOME/package.json | grep node
 
 # Install Node.js with package manager
 curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
 sudo apt-get install -y nodejs
 
 # Check installed Node version
 # In my case >> v10.16.3 (!! VERSION MISMATCH !!)
 node --version
 
 # Install Node version manager
 sudo npm install -g n
 
 # Install Node version matching with Kibana
 sudo n install 10.15.2
 
 # Uninstall Ubuntu/Debian Node. 'node_modules' won't be removed so you can still use 'n'.
 sudo apt purge -y nodejs
 
 # Check Node version. It should be 'v10.15.2'
 which node
 which npm 
 node --version
 
 # Install bower for Kibana time-plugin
 sudo npm install -g bower
 
 # Install plugin
 cd $KIBANA_HOME/plugins
 sudo git clone http://github.com/nreese/kibana-time-plugin.git
 cd kibana-time-plugin
 sudo git checkout master

 # Update plugin package.json to specify your Kibana version.
 sudo sed -i -e 's/"version".*/"version" : "7.3.2"/' package.json
 
 # --allow-root was required to run bower as root.
 sudo bower install --allow-root
 
 # Restart Kibana
 sudo systemctl restart kibana

from kibana-time-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.