This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Duration in seconds, adjust as needed | |
| const duration = eventsFunctionContext.getArgument("TweenDuration") | |
| // Easing function, adjust as needed | |
| const easing = eventsFunctionContext.getArgument("TweenEasing") | |
| // const duration = 2; | |
| // const easing = "easeInOutQuad"; | |
| const paddingBetweenCards = 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # If you are running more than one instances of graylog-server you have to select one of these | |
| # instances as master. The master will perform some periodical tasks that non-masters won't perform. | |
| is_master = true | |
| # The auto-generated node ID will be stored in this file and read after restarts. It is a good idea | |
| # to use an absolute file path here if you are starting graylog-server from init scripts or similar. | |
| node_id_file = /var/opt/graylog/graylog-server-node-id | |
| # You MUST set a secret to secure/pepper the stored user passwords here. Use at least 64 characters. | |
| # Generate one by using for example: pwgen -N 1 -s 96 |