Conversation
0xcad
commented
May 21, 2026
- Add new API endpoint that will proxy to a future VL endpoint
- Using this VL proxy, enrich the data with VIPER asset information in a new internal endpoint
- Visualize network flow data in a Sankey diagram in asset inventory
- Modify seed data with new assets + seeded flow
|
The latest updates on your projects. Learn more about Vercel for GitHub.
1 Skipped Deployment
|
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (7)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Seeded network flow information. Eventually, we'll anticipate getting this info from Virta Labs.
So to make the architecture more realistic / write code now that'll be used later, when testing I just serve this from some other server as a static file. There's an env var, NETWORK_FLOW_URL, that we configure to pull data from this static file server. Eventually, NETWORK_FLOW_URL with point to a Blueflow endpoint
There was a problem hiding this comment.
added static id's to get this to work with flow.json
There was a problem hiding this comment.
Network flow gets visualized for assets in a 1-hop neighborhood, in the device asset drawer
| // Network Flow Section | ||
| // ============================================================================ | ||
|
|
||
| const PORT_PROTOCOL_MAP: Record<number, string> = { |
There was a problem hiding this comment.
Visualize using a Sankey diagram. We point from source (Asset) -> app traffic (e.g, HTTP, HTTPS, DICOM, etc) -> dest (another asset, show that asset's IP address in a tooltip)
There was a problem hiding this comment.
Copied from flow.json comment:
Seeded network flow information. Eventually, we'll anticipate getting this info from Virta Labs.
So to make the architecture more realistic / write code now that'll be used later, when testing I just serve this from some other server as a static file. There's an env var, NETWORK_FLOW_URL, that we configure to pull data from this static file server. Eventually, NETWORK_FLOW_URL with point to a Blueflow endpoint
We have an API endpoint that essentially just proxies this data, and an internal API endpoint that enriches asset data with VIPER asset information, and returns only data in a 1-hop neighborhood for a provided VIPER asset. internal api endpint used in visualization