Coder Social home page Coder Social logo

dachad / tcpgoon Goto Github PK

View Code? Open in Web Editor NEW
189.0 7.0 22.0 3.45 MB

tcpgoon, maximum TCP connections tester

License: MIT License

Go 76.40% Shell 23.37% Dockerfile 0.22%
concurrent-connections tcp-connection goroutine stress-test tcp tcp-client golang

tcpgoon's People

Contributors

chadell avatar codacy-badger avatar dcaba avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

tcpgoon's Issues

flags improvements

I think we can improve how we recover arguments:

As, I think a milestone for this project, is to create debian/rpm packages and a docker image, and allow users to use this tool as any other you may have in your OS, and the default flags in golang are not posix compliant plus they dont support "short letters"...

Handle partial successful execution

We should be able to deal with executions that get partial success due several reasons (stressed server?) and present propers metrics and report.

First service discovery integration to pick one instance/IP - Eureka

In order to facilitate the consumption for services not statially tied to a single DNS (or maybe behind a load balancer we don't want to test), discovering and testing an individual instance from a service discovery would be great. Starting by eureka without auth will unlock its usage in Sch

@chadell , I'll take care if you don't mind

Find a new project name

we shall find a better project name and binary name.
tcpMaxConn overlaps with a SNMP MIB object: {1 (iso). 3 (org). 6 (dod). 1 (internet). 2 (mgmt). 1 (mib-2). 6 (tcp). 4 (tcpMaxConn)}

Error management improvements

And retries should be configurable:

  • it may depend on how we are running the tool (in the mode of "open and keep X connections open", retrying makes sense. In the mode of "try to open up to X connections" it may not have sense)

Benchmark the solution...

... so we can provide some expectations in the README about max tcp connections we can test in a single instance

Closure logic

The current version of this program:

  • tries to open as many connections as requested
  • keeps the connections open unless the other end closes the connections (normally by timeout) or refuses the connections
  • and, only when all connections are closed or errored, the program finishes

We should think about a better termination logic. Maybe:

  • a flag stating the number of seconds we want to keep each single connection open before forcing a closure in our end
  • or, maybe we can just start by: keep the program running until all connections are in the state "closed, errored or established", so there's no connections waiting to be dialed or dialing. When the program finishes, print a final report with some stats, including how long it took to reach this desired state.

In this stage, I'd bet for the second option

Security check before execute

Because it's execution could became something like a SYN flood DoS, it would be great to show what's gonna do the program before just doing it.
Something like showing the parameters of the execution.
This behaviour could be avoided by using a -f / --force option when calling it

Are the wait group we use in the tcpconnect and the closureMonitor overlapping?

In one hand, we have a tcpconnect function that supports a waitgroup to report how many connections have been processed, so they can be called inside goroutines and allow the caller to know when everything finished. Now we just decrease the waitgroup when a connection becomes closed. On the other hand, we have an external closure routine that monitors the status of connections and, with the current logic, once everything has progressed to established or errored, closes the program. I never liked this external monitor; this means delay and continuous polling...

The point is then... should we consolidate this in a single approach? Probably making the wg logic smarter, and consider a configurable "termination" policy, would be great.

This issue can be integrated with the new execution modes just as a consideration when implementing configurable termination policies.

README autoupdater?

Some sections of the README (help, examples...) require update everytime we do map new functionality to the cmd flags... maybe we can create a test that, given a README.src skeleton appends the output of running the latest version of tcpgoon automatically in the right sections (markers may be needed) to generate the final README.md

Per connection metrics and some stats in final report

Collecting the time it required an specific connection to dial (so until it becomes effectively established) its a nice metric, we could collect per metric (and incorporate this to the struct representing each connection status?), output it when debug is enabled, but in the normal one, just provide some summaries in the final report (as ping does), with avg/mean/dev...

User confirmation not properly processed when run as a container

When running tcpgoon in a container, the user confirmation is not properly processed:

****************************** WARNING ******************************
* You are going to run a TCP stress check with these arguments:
*	- Host: www.google.com
*	- TCP Port: 80
*	- # of concurrent connections: 5
*********************************************************************
Do you want to continue? (y/N): Response not processed```

Coverage reporting, analysis and integration with PRs

As codacy is not progressing with bringing complete golang support (so its not monitoring and reporting code coverage for us, but out travis job), it'd be nice to consider the addition of coveralls (or maybe another?), that could run in parallel and also brings github integration (free for opensource projects). See http://docs.coveralls.io/go

Default output should show summarized stats that auto-refresh

Provide "live stats" of the number of threads and the status of each connection (using channels? being refreshed every second [configurable]) rather than each thread informing its status (thats just for debug - too close to the implementation)

New execution modes?

Or just extra behavior that can be configured just with extra flags?

  • current mode with extra options in regards to connections closure-policy?
  • open up to X concurrent connections (keeping the old ones), but in less than X seconds (and retrying failed ones)
  • "open X connections per second" (keeping previous?) until one fails, so find the actual limit

We should start by creating a proposal of new "options/commands", comparing against just extending what we have, and see which ones looks cleaner/easier to understand..

Continuous integration / tests

It'd be nice to cover:

  • continuous unit testing
  • end to end tests against a tcp server (skeleton included), checking different conditions, and probably wrapping this with docker would be easier to maintain

Using travis would be nice!!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.