681 詞
1234567Grafana 可以再接收到資料後,再針對資料做整理(即時性),再加上有Table功能可以搭配檢視不得不說,這真的是好用到不行,基本上你想要的資料都可以透過下面的類型去處理不用再去找模板或者自己建一套模板,並且花時間測試後才知道能不能使用不過你還是得先了解一下該怎麼組合就是了 σ`∀´)σ 進入正題建好圖表後,可以在編輯edit中的,Transform中使用 用途 說明 Add field from calculation 使用現有字段計算成新的類別 Concatenate fields 將所有字段串聯起來組成新字段 ( 在Table View 下才看的出來) Config from query results 將查詢結果中提許字段,合併到另外一個查詢中 Convert field type 將字段轉換成其他類別 Create heatmap 根據資料計算熱圖 Extract fields 針對資料再分析(JSON,Labels) Field lookup 透過外部DNS查詢數據來源 Filter by name 透過正規表示...
315 詞
在 Fortigate上面建立一個名為backup的使用者,密碼為YourPassword,權限設定如下: 在 Linux 建立 sh 並賦予執行權限和建立排程,檔案內容如下:1234567891011121314151617181920212223242526#!/bin/bashname="Fortigate-300D" #設備名稱dir="/backup" #備份目的地user="YOURUSERNAME" #帳號password="YOURPASSWORD" #密碼tftp_ip="TFTP_SERVER_IP" #TFTP伺服器IPfg_devices="FORTIGATE_IP" ...
135 詞
Fortigate Transparent mode說起來不得不吐槽一下,這個這麼常用的功能(對我來說)竟然藏在Commandline中,難道不能顯示在GUI上嗎! 雖然會記得,但久久用一次真的很容易熊熊忘記,所以還是MEMO一下,避免老了又忘。(◔౪◔) 1234567891011+ 先建立一個Vdom+ 在透過commandline 進行設定+ show system settings #確認目前得設定+ set opmode transparent #修改成通透模式 + set manageip 3.3.3.3/255.255.255.0 #管理IP+ end 就這樣,其實很簡單吧…但就會熊熊忘記..。
532 詞
HP iLO Metrics Exporter因為我自己的環境有HP ILO3 至 ILO5,而ILO3沒有 AlertMail 的功能 所以我覺得如果可以透過 Grafana Alerting 來通知我是否異常,這樣更聰明些,所以我做了一點小調整。 原本的套件還是使用Python2.7,我的系統又因為其他套件使用了Python3 所以也一併調整成Python3的語法了。 同時,Grafana的dashboard我也調整過了,沒意外的話應該套用就可以使用了 d(`・∀・)b 我的Github連結:https://github.com/luca-yao/hpilo-exporter GaugesHere are the status code of gauge 1230 - OK1 - Degraded2 - Dead (Other) Output exampleExample of status of your iLO 123456789101112health_at_a_glance: battery: {status: OK} bios_h...
298 詞
當你在Royal TS上按下遠端後,會跳出此錯誤 安全性修正造成的無法連線,解決方法如下當你要連線的系統為 Windows 10 或 Windows Server 2016或更新的系統時,有以下兩種做法 方法一: 修改註冊檔 開啟 Regedit 找到KEY: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Serveer\WinStations\RDP-Tcp 把SecurityLayer 調整為 0 2. UserAuthentication 調整為 0 3. 儲存後重啟設備 方法二: 修改GPO 開啟gpedit.msc 至 Computer Configuration / Administrative Template / Windows Components / Remote Desktop Services / Remote Desktop Session Host / Security Require use of spec...
983 詞
Markdown Style MemoThis post is originated from here and is used for testing markdown style. This post contains nearly every markdown usage. Make sure all the markdown elements below show up correctly. 這邊也有中文版的可以看 這裡 Headers1234567891011121314# H1## H2### H3#### H4##### H5###### H6Alternatively, for H1 and H2, an underline-ish style:Alt-H1======Alt-H2------ H1H2H3H4H5H6Alternatively, for H1 and H2, an underline-ish style: Alt-H1Alt-H2Emphasis1234567Emphasis, aka italics, with *asterisks* or ...