-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial file structure * Added main * Hello world * Initial core object * Initialized blueprint * index, conf, status working * get and post volume working * adding mode var * Stop, Start, and Restart endpoints working * Reset endpoint * wip setup rabbitmq getting error creating vhost * Working bundle with zip and basic clean up * Setup working with error logging * Added threaded flask execution * PerDayVolume bug fix and doc update * Reset bug fix and document update * Added logging to bundle * Adding a forcible stop * wip using http instead of rabbitmq * Dockerfile fix * wip getting register and status working * wip tries to fix some stuff, tries to get logs working * Added controller logging * wip getting registering working with docker * Dockerfile fix for stdout * finishes functionality * comments code for local running * Put conf working * fixes stop with no body failing * cleans some stuff up * fixes error messages * delete more prints * Test fix * Clean up * fixes missing import * fixes stop not having optional body * Redis queue with controller rewrite * Retry logic for redis calls * Removing egbundle files * mode fix * Small test fix * Changing test check * BundleFix * Setup and PUT conf fix * Adding sudo * SSH support * SSH fix * processing * multiprocess fix * Multiprocess error case fixing * regex stanza volume fix * Global index fix * Introducing tail * dependency upgrade * fix sftp location for alpine image * Removing constants * Refactor * doc update * self forcing fix * Process issue * outputMode fix * Doc update * Fixing workerpool loop * Error catching forcible stop errors * Increasing generator queue size * Test fix from Lynch * import error * Test fix * Test fix * dependency clean up * Fixing moar tests * CircleCI error reporting fix * Test case test_server_stop fixed * Restart fix * docs typo * docs typo * Test scenario fix * last test to fix * Bring back the docker-compose install * Fix bug #275 * blueprint class cleanup * duplicate code removal * Removing unused import * multiprocess args fix
- Loading branch information
Tony Lee
authored
Jul 30, 2019
1 parent
bca8d31
commit 19bdc93
Showing
34 changed files
with
1,330 additions
and
1,706 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ dist | |
_book | ||
*.result | ||
venv/* | ||
eventgenEnv/* | ||
*.log.* | ||
splunk_eventgen-*/ | ||
.env | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Port 2222 | ||
AcceptEnv LANG LANGUAGE XMODIFIERS LC_* RD_* | ||
AddressFamily any | ||
AllowAgentForwarding yes | ||
AllowTcpForwarding yes | ||
AuthorizedKeysFile %h/.ssh/authorized_keys | ||
ChallengeResponseAuthentication no | ||
Ciphers [email protected],[email protected],[email protected],aes256-ctr,aes192-ctr,aes128-ctr | ||
ClientAliveInterval 180 | ||
Compression delayed | ||
HostBasedAuthentication no | ||
HostKey /etc/ssh/ssh_host_rsa_key | ||
IgnoreRhosts yes | ||
IgnoreUserKnownHosts yes | ||
KexAlgorithms [email protected],ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256 | ||
LogLevel INFO | ||
LoginGraceTime 30s | ||
MACs [email protected],[email protected],[email protected],hmac-sha2-512,hmac-sha2-256,[email protected] | ||
MaxAuthTries 5 | ||
MaxSessions 128 | ||
PasswordAuthentication no | ||
PermitEmptyPasswords no | ||
PermitRootLogin yes | ||
PermitTunnel yes | ||
PermitUserEnvironment no | ||
PidFile /var/run/sshd.pid | ||
PrintMotd no | ||
Protocol 2 | ||
PubKeyAuthentication yes | ||
StrictModes no | ||
Subsystem sftp /usr/lib/ssh/sftp-server | ||
SyslogFacility AUTH | ||
TcpKeepalive yes | ||
UseDns no | ||
X11Forwarding yes |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.