You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Suzieq -- Healthier Networks Through Network Observability
8
+
# SuzieQ -- Healthier Networks Through Network Observability
9
9
10
10
Would you like to be able to easily answer trivial questions such as how many unique prefixes are there in your routing table, or how many MAC addresses are there in the MAC tables across the network? How about more difficult questions, such as what changes did your routing table see between 10 pm and midnight last night, or which of your nodes have been up the longest, or which BGP sessions have had the most routing updates? How about being able to answer if your OSPF (or BGP) sessions are working correctly, or is all well with your EVPN? How about a quick way to determine the amount of ECMP at every hop between two endpoints? Do you wish you could easily validate the configuration you deployed across your network?
11
11
12
12
Do you login to every network node you have to figure out answers to a questions like these? Do you then struggle to piece the information together into a consistent whole across the various formats provided by various vendors? Do you wish you had an **open source, multi-vendor** tool that could help you answer questions like these and more?
13
13
14
-
If you answered yes to one or more of these questions, then Suzieq is a tool that we think will be interesting to you. **Suzieq helps you find things in your network.**
14
+
If you answered yes to one or more of these questions, then SuzieQ is a tool that we think will be interesting to you. **SuzieQ helps you find things in your network.**
15
15
16
-
**Suzieq** is both a framework and an application using that framework, that is focused on **improving the observability of your network**. We define observability as the ability of a system to answer either trivial or complex questions that you pose as you go about operating your network. How easily you can answer your questions is a measure of how good the system's observability is. A good observable system goes well beyond monitoring and alerting. Suzieq is primarily meant for use by network engineers and designers.
16
+
**SuzieQ** is both a framework and an application using that framework, that is focused on **improving the observability of your network**. We define observability as the ability of a system to answer either trivial or complex questions that you pose as you go about operating your network. How easily you can answer your questions is a measure of how good the system's observability is. A good observable system goes well beyond monitoring and alerting. SuzieQ is primarily meant for use by network engineers and designers.
17
17
18
-
Suzieq does multiple things. It [collects](https://suzieq.readthedocs.io/en/latest/poller/) data from devices and systems across your network. It normalizes the data and then stores it in a vendor independent way. Then it allows analysis of that data. With the applications that we build on top of the framework we want to demonstrate a different and more systematic approach to thinking about networks. We want to show how useful it is to think of your network holistically.
18
+
SuzieQ does multiple things. It [collects](https://suzieq.readthedocs.io/en/latest/poller/) data from devices and systems across your network. It normalizes the data and then stores it in a vendor independent way. Then it allows analysis of that data. With the applications that we build on top of the framework we want to demonstrate a different and more systematic approach to thinking about networks. We want to show how useful it is to think of your network holistically.
19
+
20
+
**An enterprise version of SuzieQ is also available**. It has been deployed in production by multiple customers, and the company behind SuzieQ, (Stardust Systems)[https://stardustsystems.net] was named a "Cool Vendor" by Gartner for making network automation easy for enterprises.
19
21
20
22
## Quick Start
21
23
22
24
### Using Docker Container
23
25
24
-
We want to make it as easy as possible for you to start engaging with Suzieq so
26
+
We want to make it as easy as possible for you to start engaging with SuzieQ so
25
27
we have a demo that has data included in the image. To get started:
26
28
27
29
*`docker run -it -p 8501:8501 --name suzieq netenglabs/suzieq-demo`
@@ -36,13 +38,13 @@ the official [documentation page](https://suzieq.readthedocs.io/en/latest/).
36
38
To start collecting data for your network, create an inventory file to gather the data from following the instructions [here](https://suzieq.readthedocs.io/en/latest/poller/). Decide the directory where the data will be stored (ensure you have sufficient available space if you're going to be running the poller, say 100 MB at least). Lets call this dbdir. Now launch the suzieq docker container as follows:
37
39
38
40
*```docker run -it -v <parquet-out-local-dir>:/home/suzieq/parquet -v <inventory-file>:/home/suzieq/inventory.yml --name sq-poller netenglabs/suzieq:latest```
39
-
* Launch the poller with the appropriate options. For example, ```sq-poller -D inventory.yml -n mydatacenter``` where mydatacenter is the name of the namespace where the data associated with the inventory is stored and inventory.yml is the inventory file in Suzieq poller native format (Use -a instead of -D if you're using Ansible inventory file format).
41
+
* Launch the poller with the appropriate options. For example, ```sq-poller -D inventory.yml -n mydatacenter``` where mydatacenter is the name of the namespace where the data associated with the inventory is stored and inventory.yml is the inventory file in SuzieQ poller native format (Use -a instead of -D if you're using Ansible inventory file format).
40
42
41
43
### Using Python Packaging
42
44
43
-
If you don't want to use docker container or cannot use a docker container, an alternative approach is to install Suzieq as a python package. It is **strongly** recommended to install suzieq inside a virtual environment. If you already use a tool to create and manage virtual environments, you can skip the step of creating a virtual envirobment below.
45
+
If you don't want to use docker container or cannot use a docker container, an alternative approach is to install SuzieQ as a python package. It is **strongly** recommended to install suzieq inside a virtual environment. If you already use a tool to create and manage virtual environments, you can skip the step of creating a virtual envirobment below.
44
46
45
-
Suzieq requires python version 3.7.1 at least, and has been tested with python versions 3.7 and 3.8. It has not been tested to work on Windows. Use Linux (recommended) or macOS. To create a virtual environment, in case you haven't got a tool to create one, type:
47
+
SuzieQ requires python version 3.7.1 at least, and has been tested with python versions 3.7 and 3.8. It has not been tested to work on Windows. Use Linux (recommended) or macOS. To create a virtual environment, in case you haven't got a tool to create one, type:
46
48
47
49
```bash
48
50
python -m venv suzieq
@@ -67,14 +69,14 @@ Once the command completes, you have the main programs of suzieq available for u
67
69
* suzieq-cli: For running the CLI
68
70
* sq-rest-server: For running the REST API server
69
71
70
-
[The official documentation is at suzieq.readthedocs.io](https://suzieq.readthedocs.io/en/latest/), and you can watch the screencasts about Suzieq on [Youtube](https://www.youtube.com/results?search_query=netenglabs).
72
+
[The official documentation is at suzieq.readthedocs.io](https://suzieq.readthedocs.io/en/latest/), and you can watch the screencasts about SuzieQ on [Youtube](https://www.youtube.com/results?search_query=netenglabs).
71
73
72
74
# Analysis
73
75
74
-
Suzieq supports Analysis using CLI, GUI, REST API, and python objects. For the most part they are equivalent, though with the GUI we have combined the output of multiple commands of the CLI into one page.
76
+
SuzieQ supports Analysis using CLI, GUI, REST API, and python objects. For the most part they are equivalent, though with the GUI we have combined the output of multiple commands of the CLI into one page.
75
77
76
78
The GUI has a status page to let you know what the status of entities in your network.
77
-

79
+

78
80
79
81
The Xplore page lets you dive into what is in your network. 
80
82
@@ -84,15 +86,15 @@ The CLI supports the same kind of analysis as the explore page. 
89
+
SuzieQ has the ability to show the path between two IP addresses, including the ability to show the path through EVPN overlay. You can use this to see each of the paths from a source to a destination and to see if you have anything asymetrical in your paths. 
88
90
89
91
## Asserts
90
92
91
-
One of Suzieq's powerful capabilities are asserts, which are statements that should be true in the network. We've only just started on asserts; what Suzieq has now only demonstrates it's power, there's a lot more to be added in this space. 
93
+
One of SuzieQ's powerful capabilities are asserts, which are statements that should be true in the network. We've only just started on asserts; what SuzieQ has now only demonstrates it's power, there's a lot more to be added in this space. 
92
94
93
-
# Suzieq Data
95
+
# SuzieQ Data
94
96
95
-
**Suzieq supports gathering data from Cumulus, EOS, IOS, IOSXE, IOSXR, JunOS(QFX, EX, MX and SRX platforms and Evolved OS), Palo Alto's Panos (version 8.0 or higher), NXOS and SONIC routers, and Linux servers.**Suzieq gathers:
97
+
**SuzieQ supports gathering data from Cumulus, EOS, IOS, IOSXE, IOSXR, JunOS(QFX, EX, MX and SRX platforms and Evolved OS), Palo Alto's Panos (version 8.0 or higher), NXOS and SONIC routers, and Linux servers.**SuzieQ gathers:
96
98
97
99
* Basic device info including serial number, model, version, platform etc.
98
100
* Interfaces
@@ -107,7 +109,7 @@ One of Suzieq's powerful capabilities are asserts, which are statements that sho
107
109
108
110
We're adding support for more platforms and features with every release. See [the documentation](https://suzieq.readthedocs.io/en/latest/tables/) on details of specific tables and its NOS support.
109
111
110
-
We're also looking for collaborators to help us make Suzieq a truly useful multi-vendor, open source platform for observing all aspects of networking. Please read the [collaboration document](./CONTRIBUTING.md) for ideas on how you can help.
112
+
We're also looking for collaborators to help us make SuzieQ a truly useful multi-vendor, open source platform for observing all aspects of networking. Please read the [collaboration document](./CONTRIBUTING.md) for ideas on how you can help.
111
113
112
114
# Release Notes
113
115
@@ -119,15 +121,15 @@ You can join the conversation via [slack](https://join.slack.com/t/netenglabs/sh
*[10ish ways to explore your network with SuzieQ](https://elegantnetwork.github.io/posts/10ish_ways_to_explore_your_network_with_SuzieQ/)
128
+
*[Questions to SuzieQ](https://elegantnetwork.github.io/posts/10qa-suzieq/)
129
+
*[Time in SuzieQ](https://elegantnetwork.github.io/posts/time-suzieq/)
128
130
129
131
We've also been adding screencasts on [Youtube](https://www.youtube.com/results?search_query=netenglabs).
130
132
131
-
# Suzieq Priorities
133
+
# SuzieQ Enterprise
132
134
133
-
We don't have a roadmap, but we do have a list of our [priorities](https://github.com/netenglabs/suzieq/blob/master/docs/2020-priority.md). We mix this with the [issues reported](https://github.com/netenglabs/suzieq/issues).
135
+
SuzieQ also has a commercial offering, SuzieQ Enterprise. To know more about this and contact us, please visit the Stardust Systems (website)[https://stardustsystems.net].
Copy file name to clipboardExpand all lines: build/requirements.txt
+9-10Lines changed: 9 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,15 @@
1
1
aiofiles==23.1.0 ; python_full_version>"3.8.1" and python_version < "3.10"
2
-
aiohttp==3.7.4 ; python_full_version>"3.8.1" and python_version < "3.10"
2
+
aiohttp==3.9.5 ; python_full_version>"3.8.1" and python_version < "3.10"
3
+
aiosignal==1.3.1 ; python_full_version>"3.8.1" and python_version < "3.10"
3
4
altair==4.2.2 ; python_full_version>"3.8.1" and python_version < "3.10"
4
5
anyio==3.7.1 ; python_full_version>"3.8.1" and python_version < "3.10"
5
6
appnope==0.1.3 ; python_full_version>"3.8.1" and python_version < "3.10" and platform_system == "Darwin" or python_full_version > "3.8.1" and python_version < "3.10" and sys_platform == "darwin"
6
7
argon2-cffi-bindings==21.2.0 ; python_full_version>"3.8.1" and python_version < "3.10"
7
8
argon2-cffi==21.3.0 ; python_full_version>"3.8.1" and python_version < "3.10"
8
9
asgiref==3.7.2 ; python_full_version>"3.8.1" and python_version < "3.10"
9
10
asttokens==2.2.1 ; python_full_version>"3.8.1" and python_version < "3.10"
10
-
async-timeout==3.0.1 ; python_full_version>"3.8.1" and python_version < "3.10"
11
-
asyncssh==2.11.0 ; python_full_version>"3.8.1" and python_version < "3.10"
11
+
async-timeout==4.0.3 ; python_full_version>"3.8.1" and python_version < "3.10"
12
+
asyncssh==2.14.2 ; python_full_version>"3.8.1" and python_version < "3.10"
12
13
attrs==23.1.0 ; python_full_version>"3.8.1" and python_version < "3.10"
13
14
backcall==0.2.0 ; python_full_version>"3.8.1" and python_version < "3.10"
14
15
beautifulsoup4==4.12.2 ; python_full_version>"3.8.1" and python_version < "3.10"
Copy file name to clipboardExpand all lines: docs/index.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,8 @@ SuzieQ:
15
15
16
16
With the applications that we build on top of the framework we want to demonstrate a different and more systematic approach to thinking about networks. We want to show how useful it is to think of your network holistically.
17
17
18
+
**To get information about the enterprise version of SuzieQ, visit the Stardust Systems (website)[https://www.stardustsystems.net/]**.
19
+
18
20
You can join the conversation via [slack](https://netenglabs.slack.com). Send email to Dinesh with the email address to send the Slack invitation to.
19
21
20
22
We're also looking for collaborators to help us make SuzieQ a truly useful multi-vendor, open source platform
0 commit comments