文件操作 - InfluxCheatSheet.tsx
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/plugins/datasource/influxdb/components/InfluxCheatSheet.tsx
编辑文件内容
import React from 'react'; const CHEAT_SHEET_ITEMS = [ { title: 'Getting started', label: 'Start by selecting a measurement and field from the dropdown above. You can then use the tag selector to further narrow your search.', }, ]; export default (props: any) => ( <div> <h2>InfluxDB Cheat Sheet</h2> {CHEAT_SHEET_ITEMS.map(item => ( <div className="cheat-sheet-item" key={item.title}> <div className="cheat-sheet-item__title">{item.title}</div> <div className="cheat-sheet-item__label">{item.label}</div> </div> ))} </div> );
修改文件时间
将文件时间修改为当前时间的前一年
删除文件