0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

日々のライセンス消費量

Posted at
<form version="1.1" theme="dark">
  <label>日々のライセンス消費量(GB)</label>
  <fieldset submitButton="false">
    <input type="time" token="tk_time" searchWhenChanged="true">
      <label>検索時間範囲</label>
      <default>
        <earliest>-30d@d</earliest>
        <latest>now</latest>
      </default>
    </input>
  </fieldset>
  <row>
    <panel>
      <title>検索時間範囲内でのライセンス消費量超過日数</title>
      <single>
        <search>
          <query>
            index=_internal source="*license_usage.log" type=Usage
            | eval GB=round(b/1024/1024/1024,9)
            | timechart span=1d sum(GB) as Total
            | where Total &gt; 0.007
            | stats count as OverThresholdDays
          </query>
          <earliest>$tk_time.earliest$</earliest>
          <latest>$tk_time.latest$</latest>
          <sampleRatio>1</sampleRatio>
        </search>
        <option name="colorMode">block</option>
        <option name="numberPrecision">0</option>
        <option name="refresh.display">progressbar</option>
      </single>
    </panel>
  </row>
  <row>
    <panel>
      <table>
        <search>
          <query>
            index=_internal source="*license_usage.log" type=Usage
            | eval GB=round(b/1024/1024/1024,9)
            | timechart span=1d sum(GB) by idx
            | addtotals
            | eval 日付=strftime(_time,"%Y/%m/%d %a")
            | eval ライセンス消費量=Total
            | fields - _time Total
            | fields 日付 ライセンス消費量 netflow *
          </query>
          <earliest>$tk_time.earliest$</earliest>
          <latest>$tk_time.latest$</latest>
          <sampleRatio>1</sampleRatio>
        </search>
        <option name="count">100</option>
        <option name="dataOverlayMode">none</option>
        <option name="drilldown">none</option>
        <option name="percentagesRow">false</option>
        <option name="rowNumbers">false</option>
        <option name="totalsRow">false</option>
        <option name="wrap">true</option>
        <format type="color" field="ライセンス消費量">
          <colorPalette type="list">[#ACE1AF,#FFFACD,#DC4E41]</colorPalette>
          <scale type="threshold">0.005,0.007</scale>
        </format>
      </table>
    </panel>
  </row>
</form>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?