气泡图 - splunk

时间:2015-07-08 05:08:32

标签: javascript charts visualization splunk

我正在尝试使用以下代码在splunk中创建气泡图..

<dashboard>
    <label>Bubble Chart</label>
    <row>
        <panel>
            <chart>
                <searchString>index = _internal sourcetype=splunkd_access | stats count sum(bytes) as "Total Bytes" by  status, date_hour | table status date_hour count "Total Bytes"</searchString>
                <earliestTime>-7d</earliestTime>
                <latestTime>now</latestTime>
                <option name="charting.axisY.scale">log</option>
                <option name="charting.chart">bubble</option>
                <option name="charting.chart.bubbleMaximumSize">50</option>
                <option name="charting.chart.bubbleMinimumSize">10</option>
                <option name="charting.chart.bubbleSizeBy">area</option>
                <option name="charting.axisTitleY.text">Requests</option>
                <option name="charting.axisTitleX.text">Hour</option>
            </chart>
            <html>
                <p>Bubble Chart Options:</p>
                <code style="white-space: pre-wrap;"><![CDATA[<option name="charting.chart.bubbleMaximumSize">50</option>
 <option name="charting.chart.bubbleMinimumSize">10</option>
 <option name="charting.chart.bubbleSizeBy">area</option>]]></code>
            </html>
        </panel>
    </row>
</dashboard>

但结果我得到的是柱形图而不是气泡图。

似乎我做错了什么,错过了一些包裹。可能是什么问题?

1 个答案:

答案 0 :(得分:1)

我在我的Splunk(6.3)中尝试了你的simplexml,结果是气泡图。 那么也许你的Splunk版本太低了? enter image description here