什么是splunk xml选项名称

时间:2013-12-19 12:22:47

标签: xml splunk

这是我第一次使用splunk和xml。我有一些疑问需要澄清。选项名称是指什么?如何更改图表的默认设置?请提供一些教程或示例。

<row>
    <chart>
        <searchTemplate>
            index="sdf" source="skype" username="$username$" | timechart count by username
        </searchTemplate>
        <title>Skype access over time</title>
        <option name="charting.chart">line</option>
        <option name="count">10</option>
        <option name="displayRowNumbers">true</option>
        <option name="charting.primaryAxisTitle.text">Time</option>
        <option name="charting.secondaryAxisTitle.text">Skype Activity</option>
    </chart>
</row>

1 个答案:

答案 0 :(得分:0)

这看起来是仪表板的“简单XML”格式。 (而不是“高级XML”)option元素是您可以设置和调整图表的各种显示选项的方法。 Splunk在all of the option names for chart以及all of the other Simple XML elements that can be used上提供了非常全面的文档,同一本手册也提供了如何使用UI和Simple XML构建仪表板的文档。