Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance tile panel to show connections/routes #3649

Closed
webmstr opened this issue Apr 22, 2015 · 5 comments
Closed

Enhance tile panel to show connections/routes #3649

webmstr opened this issue Apr 22, 2015 · 5 comments
Labels
[Deprecated-Use Team:Presentation]Team:Geo Former Team Label for Geo Team. Now use Team:Presentation enhancement New value added to drive a business result

Comments

@webmstr
Copy link

webmstr commented Apr 22, 2015

With a geo_point, you can mark a single spot. There are lots of records that have "source" and "destination" geo_points, and it could be fun to chart them.

Something like this:

http://upload.wikimedia.org/wikipedia/commons/2/20/AA_route_map.PNG

@rashidkpc
Copy link
Contributor

Can you provide an elasticsearch aggregation that would accomplish this?

@webmstr
Copy link
Author

webmstr commented May 1, 2015

So that connections could be weighted by use, this query will return src, dest, and count. It's the generated by kibana4:

{
  "size": 0,
  "query": {
    "filtered": {
      "query": {
        "query_string": {
          "analyze_wildcard": true,
          "query": "_exists_:cisco.acl.src AND _exists_:cisco.acl.dest"
        }
      },
      "filter": {
        "bool": {
          "must": [
            {
              "range": {
                "@timestamp": {
                  "gte": 1429838793043,
                  "lte": 1429843426156
                }
              }
            }
          ],
          "must_not": []
        }
      }
    }
  },
  "aggs": {
    "2": {
      "terms": {
        "field": "cisco.acl.src.ip",
        "size": 50,
        "order": {
          "_count": "desc"
        }
      },
      "aggs": {
        "3": {
          "terms": {
            "field": "cisco.acl.dest.ip",
            "size": 50,
            "order": {
              "_count": "desc"
            }
          }
        }
      }
    }
  }
}

@rashidkpc
Copy link
Contributor

Its an interesting idea and perhaps worth exploring

@tbragin tbragin added Feature:Coordinate Map Feature:Visualizations Generic visualization features (in case no more specific feature label is available) labels Jan 30, 2017
@alexfrancoeur alexfrancoeur added the [Deprecated-Use Team:Presentation]Team:Geo Former Team Label for Geo Team. Now use Team:Presentation label Feb 6, 2018
@timroes timroes removed the Feature:Visualizations Generic visualization features (in case no more specific feature label is available) label Apr 11, 2018
@thomasneirynck
Copy link
Contributor

We are working on a new implementation of map visualizations and are not planning to add any new features to the existing implementation. We will take this suggestion under consideration for the new app.

@nreese
Copy link
Contributor

nreese commented Feb 24, 2020

closed by #41504

@nreese nreese closed this as completed Feb 24, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[Deprecated-Use Team:Presentation]Team:Geo Former Team Label for Geo Team. Now use Team:Presentation enhancement New value added to drive a business result
Projects
None yet
Development

No branches or pull requests

7 participants