Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Jsoncrack.com | 22,990 | 10 days ago | 44 | gpl-3.0 | TypeScript | |||||
⭐️ Transform data chaos into clarity with JSON Crack - the ultimate JSON visualization solution. | ||||||||||
Protostuff | 1,827 | 344 | 98 | 8 months ago | 33 | March 11, 2022 | 73 | apache-2.0 | Java | |
Java serialization library, proto compiler, code generator | ||||||||||
Jplot | 1,068 | a month ago | 3 | September 13, 2021 | 9 | mit | Go | |||
iTerm2 expvar/JSON monitoring tool | ||||||||||
Aws Security Viz | 586 | a year ago | 176 | August 15, 2021 | 1 | mit | Ruby | |||
Visualize your aws security groups. | ||||||||||
Jseg | 349 | a year ago | 15 | May 25, 2016 | 1 | JavaScript | ||||
A super simple, in-memory, JS graph database. | ||||||||||
Json Graph Specification | 329 | 2 years ago | 1 | July 08, 2015 | 2 | other | Python | |||
A proposal for representing graph structure (nodes / edges) in JSON. | ||||||||||
Dagger Browser | 275 | a year ago | 2 | February 05, 2020 | 2 | bsd-3-clause | TypeScript | |||
Simple tool for browsing Dagger graphs generated via an SPI plugin | ||||||||||
Dialogger | 256 | 7 years ago | 3 | JavaScript | ||||||
A simple cross-platform dialogue graph editor. | ||||||||||
Jsog | 254 | 13 | 4 | 4 years ago | 8 | March 11, 2015 | 12 | mit | CoffeeScript | |
JavaScript Object Graph | ||||||||||
Falcor Router Demo | 232 | 57 | 8 | 5 years ago | 3 | October 30, 2015 | 1 | JavaScript | ||
A demonstration of how to build a Router for a Netflix-like application |
Module retrieves pfSense 2.x Dashboard Gateway Status and Network Traffic Graphs data in JSON format.
"status" can be "force_down", "down", "loss" (for packet-loss warning), "delay" (for latency warning), or "okay" for online.
WARNING: This module bypasses the normal pfSense dashboard login, so it should be set with a different "key" of your choosing in the PHP code. The default is shown below:
http://pfSenseIP/status_gateways_json.php?key=pfsense
Since there is additional overhead to calculate data rates for each connection ("inKbps", "outKbps"), it can be optionally requested via an additional parameter as indicated below:
http://pfSenseIP/status_gateways_json.php?key=pfsense&rates=1
To install, simply change the "key" in the code below, then drop the status_gateways_json.php file into your pfSense "/usr/local/www" directory and you are set to go!
JSON output (&rates=1 version) should look something like this:
{
"lan": {
"inKbps": 188.36579043272,
"outKbps": 2295.1290776905,
"interface": "em0"
},
"wan": {
"inKbps": 132.32223032712,
"outKbps": 307.77712136859,
"interface": "em1",
"friendlyiface": "wan",
"name": "GW_WAN",
"status": "okay",
"monitorip": "x.x.x.x",
"sourceip": "x.x.x.x",
"gatewayip": "x.x.x.x",
"delay": "10.3ms",
"loss": "0%"
},
"opt1": {
"inKbps": 1690.5506271424,
"outKbps": 197.42589503826,
"interface": "em2",
"friendlyiface": "opt1",
"name": "GW_OPT1",
"status": "okay",
"monitorip": "x.x.x.x",
"sourceip": "x.x.x.x",
"gatewayip": "x.x.x.x",
"delay": "25.5ms",
"loss": "0%"
}
}