TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Feeding Graph databases – a third use-case for modern log management platforms

101 pointsby lennartkoopmannover 9 years ago

3 comments

lmeyerovover 9 years ago
Awesome article! This is the exact kind of use case we&#x27;ve been helping enterprises with at Graphistry, especially for SIEMs and operations data. Worth adding two aspects we&#x27;ve been finding important in our journey here:<p>* We found the need to play nice with Neo4j as well other more common systems here like Kafka&#x2F;HDFS&#x2F;Spark, Titan, and Splunk<p>* It helps to be able to work with big event graphs, where we&#x27;ll often want to do something like filter for the day&#x27;s 1M+ priority 10 alerts and see how they connect. The result is we spend a lot of time on our GPU frontend+backend so you can spot patterns in all of the days big events, and exploratory tooling so you can drill down rather than write queries.<p>If relevant, happy to share an API key (info@graphistry.com) or get on Skype!
david_pover 9 years ago
Since this seems to be trending: any questions about Linkurious or graph databases are welcome. Linkurious CTO here :)
评论 #10815896 未加载
评论 #10815078 未加载
lobster_johnsonover 9 years ago
Tracking flow information about networks and apps on Linux is something I have been thinking about. I&#x27;m wondering how other people are doing it.<p>For networking in general, I suppose you could sample &#x2F;proc&#x2F;PID&#x2F;fd and &#x2F;proc&#x2F;PID&#x2F;net&#x2F;tcp regular intervals, though it would technically miss some connections.<p>For apps — specifically, microservices — I&#x27;m thinking that every app could be modified to emit pairs [from, to] to statsd, which can then be used to transfer the data to a central collector. The downside is that every RPC request has to do this, in all the languages your microservices are written in.