首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >气泡图- splunk

气泡图- splunk
EN

Stack Overflow用户
提问于 2015-07-08 13:08:32
回答 1查看 507关注 0票数 1

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

代码语言:javascript
复制
<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>

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

我好像做错了什么,遗漏了一些包。可能的问题是什么?

EN

回答 1

Stack Overflow用户

发布于 2015-08-05 22:49:13

我在我的Splunk(6.3)中尝试了你的simplexml,结果是气泡图。所以也许你的Splunk版本太低了?

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/31283920

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档