Where would you place this between osquery and steampipe? It seems to borrow concepts on both sides, but I'm not sure how it could not be plugin for either.
Show HN: Musoq – Query Anything with SQL Syntax (Git, C#, CSV, Can DBC)
11–16 of 16 posts
Re: Show HN: Musoq – Query Anything with SQL Syntax (Git, C#, CSV, Can DBC)
#12Where would you place this between osquery and steampipe? It seems to borrow concepts on both sides, but I'm not sure how it could not be plugin for either.
I see it a bit that way: while osquery focuses on OS-level queries and steampipe on cloud services, Musoq is more developer-centric, I'm using it like swiss army knife for various thing, something like sed or grep. You can ofcourse create plugins that covers what mentioned tools do or even, use that tools as a plugin for musoq but in general - I'm not going to compete with any of them, I'm filling my own niche - flex…
Re: Show HN: Musoq – Query Anything with SQL Syntax (Git, C#, CSV, Can DBC)
#13Re: Show HN: Musoq – Query Anything with SQL Syntax (Git, C#, CSV, Can DBC)
#14in postgresql syntax for data types is stored in the database. how would this tool parse gis expressions, for example?
select Id, DistanceBetween(s.FromPoint(-73.935242, 40.730610)) as Distance, s.IsBetween(s.FromPoint(-73.935242, 40.730610)) as IsInArea from #gis.shapefile('map.shp') s
You could even combine it with other data sources. For example, if you have geometry data in a CSV:
select sfg.DistanceBetween(sfg.FromPoint(..., ...)) from #csv.file(...) c cross apply #gis.ShapeFromGeometry(c.Geometry) sfg
Re: Show HN: Musoq – Query Anything with SQL Syntax (Git, C#, CSV, Can DBC)
#15Ironically I think I'd rather query a database with anything other than SQL ¯\_(ツ)_/¯
Re: Show HN: Musoq – Query Anything with SQL Syntax (Git, C#, CSV, Can DBC)
#16This looks awesome. As someone working in support for a wide array of Linux Apps, and data dumps from customers where I have no access to the system, plus I also write or backport bug fixes to all sorts of random software, I often want to do this kind of crazy stuff. With exactly these kinds of artefacts.