Overview of ‘online’ algorithm using Standard Deviation example
Code snippets from the blog post https://blog.logentries.com/2016/10/overview-of-online-algorithm-using-standard-deviation-example
| ## This is a sample configuration file. See the nxlog reference manual about the | |
| ## configuration options. It should be installed locally and is also available | |
| ## online at http://nxlog.org/nxlog-docs/en/nxlog-reference-manual.html | |
| ## Please set the ROOT to the folder your nxlog was installed into, | |
| ## otherwise it will not start. | |
| #define ROOT C:\Program Files\nxlog | |
| define ROOT C:\Program Files (x86)\nxlog |
Overview of ‘online’ algorithm using Standard Deviation example
Code snippets from the blog post https://blog.logentries.com/2016/10/overview-of-online-algorithm-using-standard-deviation-example
Get your work done even faster with the Logentries REST API
Logging the Lights in Your Home
Code snippets from the blog post https://blog.logentries.com/2016/08/logging-the-lights-in-your-home/
Intrinsically fast: more JVM performance tinkering
Code snippets from the blog post https://blog.logentries.com/2016/05/intrinsically-fast-more-jvm-performance-tinkering
Implementing Self-Describing Log Data Using NodeJS
Code snippets from the blog post https://blog.logentries.com/2016/05/implementing-self-describing-log-data-using-nodejs
Full source code here: https://github.com/reselbob/node-logging-demo
Raspberry Pi, Logs and IoT - Sending Pi Log and Sensor data to Logentries
Code snippets from the blog post: https://blog.logentries.com/2016/05/raspberry-pi-logs-and-iot-sending-pi-log-and-sensor-data-to-logentries
Code snippets from the blog post https://blog.logentries.com/2016/05/integrating-the-logentries-javascript-library-with-react
Full source code here: https://github.com/LogentriesCommunity/Logentries_React_Sample
| /** | |
| * lists all jobs that are currently in progress. | |
| */ | |
| public List<Batch> getJobsInProgress() { | |
| Jedis instance = null; | |
| List<String> res; | |
| try { |
| /** | |
| * checks if there is job available in a 'wait' queue. If there is | |
| * job waiting in a queue, it will be transferred into 'work' queue and | |
| * returned back. | |
| * | |
| * @return Batch if available for work, otherwise null | |
| */ | |
| public Batch checkIfJobAvailable() { | |
| String jobJson = null; | |
| Jedis instance = null; |