This guide requires Elassandra 5.5.0.9
Try indexing a document on a non-existing index:
curl -XPUT 'http://localhost:9200/twitter/doc/1?pretty' -H 'Content-Type: application/json' -d '
{
#!/bin/bash | |
# USAGE: max_pps.sh eth0 'portrange 5060-5090' 2>&1 | tee -a output.log | |
if [ -z "$1" ] | |
then | |
echo "No capture interface supplied!" | |
fi | |
if [ -z "$2" ] | |
then | |
echo "No FILTER supplied!" | |
fi |
export DOCKER_API_VERSION=1.22 |
#!/bin/bash | |
files=(./config/*) | |
while true; do | |
nodejs hepgen.js -c "${files[RANDOM % ${#files[@]}]}" | |
sleep 2 | |
done |
This guide requires Elassandra 5.5.0.9
Try indexing a document on a non-existing index:
curl -XPUT 'http://localhost:9200/twitter/doc/1?pretty' -H 'Content-Type: application/json' -d '
{
#!/bin/bash | |
# tries to kill process with highest CPU load | |
# (if it is part of a specified list of troublemakers) | |
MAXLOAD=5 | |
TROUBLEMAKERS="chrome" | |
sleep 1 # wait a few seconds (just as a precaution) |
/* global ga */ | |
(function(ctx) { | |
/** | |
* | |
*/ | |
function Analytics(options) { | |
/* eslint-disable */ | |
if (!options.googleAnalyticsTrackingId) { |
<html> | |
<head> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> | |
<link rel="stylesheet" type="text/css" href="css/style.css"> | |
<script src="https://cdn.jsdelivr.net/npm/gun/gun.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/gun/lib/unset.js"></script> | |
<style> | |
video { | |
background-color: #ddd; | |
border-radius: 7px; |
# Configuration for telegraf agent | |
[agent] | |
## Default data collection interval for all inputs | |
interval = "10s" | |
## Rounds collection interval to 'interval' | |
## ie, if interval="10s" then always collect on :00, :10, :20, etc. | |
round_interval = true | |
## Telegraf will send metrics to outputs in batches of at most | |
## metric_batch_size metrics. |
/* | |
Copyright (C) 2019 Simon Schmidt | |
Usage of the works is permitted provided that this instrument is retained with | |
the works, so that any entity that uses the works is notified of this instrument. | |
DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. | |
*/ | |
const hyperswarm = require('hyperswarm'); |