VirtualTam's bookmarks
70 bookmarks found
-
Python - Logging and Multiprocessing
2017-11-09 - https://docs.python.org/3/library/logging.html
- https://docs.python.org/3/library/multiprocessing.html#multiprocessing.Queue
- https://stackoverflow.com/questions/641420/how-should-i-log-while-using-multiprocessing-in-python
- https://stackoverflow.com/questions/21419323/multiprocessing-logging-lock-vs-queue
- https://github.com/jruere/multiprocessing-logging
-
What Are Use Cases of Elasticsearch? - Quora
2017-10-02 - https://www.elastic.co/use-cases
- https://www.elastic.co/blog/found-uses-of-elasticsearch
- https://www.elastic.co/blog/using-elastic-graph-and-kibana-to-analyze-panama-papers
- https://www.elastic.co/blog/introducing-machine-learning-for-the-elastic-stack
- http://blog.florian-hopf.de/2014/07/use-cases-for-elasticsearch-document.html
- http://blog.florian-hopf.de/2014/12/use-cases-for-elasticsearch-analytics.html
-
- https://sematext.com/blog/2016/09/13/logstash-alternatives/
- https://logz.io/blog/fluentd-logstash/
- https://github.com/repeatedly/fluent-plugin-beats
- https://www.fluentd.org/guides/recipes/elasticsearch-and-s3
- https://docs.fluentd.org/v1.0/articles/out_elasticsearch
- https://dzone.com/articles/kubernetes-log-analysis-with-fluentd-elasticsearch
-
- https://www.elastic.co/guide/en/logstash/master/config-examples.html
- https://github.com/logstash-plugins/logstash-patterns-core/blob/master/patterns/httpd
- https://discuss.elastic.co/t/apache-error-logs-timestamp/82010/9
- https://discuss.elastic.co/t/parsing-apache-logs-combinedapachelog-commonapachelog-not-working/82007
- http://www.thegeekstuff.com/2014/12/logstash-setup/
-
Apache:
-
Ansible | Logging playbook runs
2017-08-29 -
Sshguard
2017-08-08 -
Jenkins - Display Information About Nodes
2016-04-12 1for (agent in hudson.model.Hudson.instance.slaves) { 2 println('===================='); 3 println('Name: ' + agent.name); 4 println('getLabelString: ' + agent.getLabelString()); 5 println('getNumExectutors: ' + agent.getNumExecutors()); 6 println('getRemoteFS: ' + agent.getRemoteFS()); 7 println('getMode: ' + agent.getMode()); 8 println('getRootPath: ' + agent.getRootPath()); 9 println('getDescriptor: ' + agent.getDescriptor()); 10 println('getComputer: ' + agent.getComputer()); 11 println('\tcomputer.isAcceptingTasks: ' + agent.getComputer().isAcceptingTasks()); 12 println('\tcomputer.isLaunchSupported: ' + agent.getComputer().isLaunchSupported()); 13 println('\tcomputer.getConnectTime: ' + agent.getComputer().getConnectTime()); 14 println('\tcomputer.getDemandStartMilliseconds: ' + agent.getComputer().getDemandStartMilliseconds()); 15 println('\tcomputer.isOffline: ' + agent.getComputer().isOffline()); 16 println('\tcomputer.countBusy: ' + agent.getComputer().countBusy()); 17 //if (agent.name == 'NAME OF NODE TO DELETE') { 18 // println('Shutting down node!!!!'); 19 // agent.getComputer().setTemporarilyOffline(true,null); 20 // agent.getComputer().doDoDelete(); 21 //} 22 println('\tcomputer.getLog: ' + agent.getComputer().getLog()); 23 println('\tcomputer.getBuilds: ' + agent.getComputer().getBuilds()); 24}