You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
446 B
11 lines
446 B
# Sankey Diagram
|
|
|
|
Documentation:
|
|
http://docs.splunk.com/Documentation/SankeyDiagram/1.2.0/SankeyDiagramViz/SankeyIntro
|
|
|
|
## Sample Searches
|
|
|
|
```
|
|
index=_internal sourcetype=splunk_web_access NOT uri_path=*/static/* uri_path=*/app/* OR uri_path=*/manager/* | rex field=referer "https?://.+?/.+?(?<referer_path>/[^\\?]+)" | rex field=uri_path "/.+?(?<path>/.+)" | rename referer_path as from path as to | stats count, avg(bytes) by from to
|
|
```
|