Git Product home page Git Product logo

syntheticmonitor's Introduction

SyntheticMonitor

GitHub issues GitHub license GitHub release Go Report Go Go Go Reviewed by Hound


Mit dem SyntethicMonitor kann man eine/mehrere url's Prüfen auf deren Geschwindigkeit und via Regex nach einem Inhalt suchen um zu Prüfen das die Webseite auch wirklich Online ist. Die abarbeitung erfolgt via "concurrency" sprich, es wird Parallel abarbeitet. Weiter erhaltet man Detailliertere Informationen zu den Request-Zeiten:

  • Name
  • URL
  • HTTPStatus
  • TotalTime
  • DNSLookup
  • TCPConnection
  • TLSHandshake
  • ServerProcessing
  • *ContentTransfer

Json:

[
	{
		"Name": "Google Swiss",
		"URL": "https://www.google.ch/",
		"HTTPStatus": "200",
		"TotalTime": "134",
		"DNSLookup": "16",
		"TCPConnection": "10",
		"TLSHandshake": "48",
		"ServerProcessing": "58",
		"ContentTransfer": "23"
	},
	{
		"Name": "shodan",
		"URL": "https://www.shodan.io/",
		"HTTPStatus": "200",
		"TotalTime": "319",
		"DNSLookup": "6",
		"TCPConnection": "13",
		"TLSHandshake": "43",
		"ServerProcessing": "257",
		"ContentTransfer": "23"
	}
]

Settings:

{
	"Location": "Swiss",
	"SyntheticUrls": [
		{
			"URL": "https://google.ch",
			"Name": "Google Swiss",
			"Expect": "In Progress"
		},
		{
			"URL": "https://www.shodan.io/",
			"Name": "shodan",
			"Expect": "In Progress"
		}
	]
}

Eine Musterdatei wird automatisch beim starten der Anwendung angelegt

Windows: \ProgramData\SyntheticMonitor\urlList.json
Linux: /etc/syntheticmonitor/urlList.json

Das Ergebniss kann als json ymal oder per HTTP POST Request gesendet werden.

Hier ein paar Settings Beispiele: \

Speichern als yaml

{
	"Location": "Swiss",
	"EndpointType": "File",
	"FileType": "yaml",
	"FileLocation": "C:\\Users\\Muster\\syntheticMonitor\\results",
	"SyntheticUrls": [
		{
			"URL": "https://google.ch",
			"Name": "Google Swiss",
			"Expect": "In Progress"
		},
		{
			"URL": "https://www.shodan.io/",
			"Name": "shodan",
			"Expect": "In Progress"
		}
	]
}

Speichern als json

{
	"Location": "Swiss",
	"EndpointType": "File",
	"FileType": "json",
	"FileLocation": "C:\\Users\\Muster\\syntheticMonitor\\results",
	"SyntheticUrls": [
		{
			"URL": "https://google.ch",
			"Name": "Google Swiss",
			"Expect": "In Progress"
		},
		{
			"URL": "https://www.shodan.io/",
			"Name": "shodan",
			"Expect": "In Progress"
		}
	]
}

Speichern via POST-Request

{
	"Location": "Swiss",
	"EndpointType": "URL",
	"EndpointURL": "https://meineurl.ch/muster",
	"EndpointPort": 443,
	"EndpointTokenKey": "Token",
	"EndpointTokenValue": "meinsecrettoken",
	"SyntheticUrls": [
		{
			"URL": "https://google.ch",
			"Name": "Google Swiss",
			"Expect": "In Progress"
		},
		{
			"URL": "https://www.shodan.io/",
			"Name": "shodan",
			"Expect": "In Progress"
		}
	]
}

syntheticmonitor's People

Contributors

achimgrolimund avatar

Watchers

James Cloos avatar

Forkers

achimgrolimund

syntheticmonitor's Issues

Send Data to other Endpoints

At the moment, the datas only printet in the console,

Requests

  • Sending Data to an Web (HTTP/s) Endpoint
  • Save Data as JSON on a chosen Location
  • Save Data as YAML on a chosen Location

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.