So I determined that I needed a knowledge base for my MSP. Here's the previous article explaining how and why I came to that conclusion.
You may be thinking, doesn't my PSA/CRM tool already do that for me? Yes it does.
Well, sort-of.... But actually, No not really. It does have the data, and MUCH of it may even have foreign key relationships (Pretty much ALL PSA/CRM tools are backed by a traditional relational database system like SQL), but not in an easy to view relationship model, and very difficult to construct deeply complicated, multi-level-deep queries.
However a proper knowledge graph database (like Neo4j in this case) allows you to write MUCH more deeply complex relationship queries than you can easily execute using traditional reporting. It also permits you to ask questions about relationships to systems that your PSA/CRM tool has no integration with. (once you start ingesting MORE data sources)
Here's the schema visualization of the RangerMSP data within our graph:
How does this serve us in the real world? Here's an example:
Because first impressions with a new user with any support organization are so crucial to getting buy-in and active participation we want to ensure that a new user is promptly getting their problem moved towards resolution.
We could enable that by making sure a new user doesn't have a support ticket languishing in help-desk purgatory.
We want to check to see if any newly onboarded users for our clients are having delays in getting progress for a ticket they have opened. My question may be something like this:
Show me all clients with an active Managed user plan contract that has a user added in the last 60 days that has an open ticket (NOT set to waiting vendor/client/approval) that has NOT had a charge or change to the ticket in the last 48 hours. Return the Account, client, open ticket, ticket manager, and the assets attached to the ticket.
To answer that with a traditional relational database would involve a very complex query with several joins, your DBA would hate you, and the performance of this query could be quite terrible (if your PSA tool even had capability of answering this complex query). This is a walk-in-the-park for a knowledge graph!
Here's how that query looks in cql (Cypher Query Language):
So what does the Schema look like when you start ingesting much of the data above? Something like this:
In the next section I'll review the pre-requisites to start to build a platform so you can design your own workflows and integrations.
No comments:
Post a Comment
Have a comment? Would love to hear it!