search
使用keyword使得搜尋條件必須完全符合
1 | GET people-2023.04/_search |
delete
1 | POST poc/_delete_by_query |
使用keyword使得搜尋條件必須完全符合
1 | GET people-2023.04/_search |
1 | POST poc/_delete_by_query |
input, filter, 和 output,每個元素可能一個或多個
下面建立一個基本的pipeline,從stdin讀取資料,然後輸出到stdout。我們將建立一個first-pipeline.conf
並且放在C:\ELK\logstash-7.17.3\logstash-7.17.3
(與bin同一個資料夾)
1 | # The # character at the beginning of a line indicates a comment. Use |
打開powershell,利用以下指令檢查pipeline語法,注意要確認沒有任何錯誤,因為檢查程式如果找不到檔案位置最後也會顯示檢查OK。
我們在C:\ELK\logstash-7.17.3\logstash-7.17.3
輸入以下指令bin/logstash -f first-pipeline1.conf --config.test_and_exit
輸出如下
1 | Using LS_JAVA_HOME defined java: C:\ELK\logstash-7.17.3\logstash-7.17.3\jdk\ |
檢查通過後我們用--config.reload.automatic
選項重新載入設定檔,如此一來就不用一直重啟程式。在過程中你可能會看到忽略pipelines.yml
的警告,因為我們已經在命令中明確指定要用的設定檔了,所以可以忽略這個警告,之後我們再學習使用pipelines.yml
bin/logstash -f first-pipeline.conf --config.reload.automatic
等到看到[main] Pipeline started {"pipeline.id"=>"main"}
這個訊息後,我們可以直接輸入一些文字,按下enter,就可以看到輸入的文字被輸出到stdout了。
例如入Hello wordl後按下Enter,結果如下
1 | Hello World |
Grok
Filter 外掛程式(Plugin)Grok
是眾多logstash外掛程式的其中一個,這裡可以看到更多關於logstash的外掛程式。
grok
filter plugin可以幫我們將沒有結構化的log轉化成結構化的log
以下範例是多個資料來源,分別來自twitter和firebeat,輸出也有多個,分別為elasticsearch和寫到檔案
1 | input { |
在input中我們可以加入input plugin,這裡我們使用rabbitmq plugin,先建立一個最簡單的範例並且將解析結果輸出到console。
在rabbitmq plugin中的說明文件有提到,預設的輸出是json codec
而設定rabbitmq的參數在這裡,我們會需要設定rabbitmq的連線資訊,範例如下。
1 | # The # character at the beginning of a line indicates a comment. Use |
有時候我們會需要依據事件中欄位的資料做一些處理,Field Reference可以幫助我們抽取事件中的欄位。以下事件為範例
,如果要取得第一階的欄位如agent
, ip
, request
, response
, ua
,只需要一個[]就可以取得例如[request],如果是第二階欄位如os
則要用[ua][os]
1 | { |
https://github.com/elastic/logstash/issues/10215#issuecomment-447912618
L4T已經預設有watchdog,可以透過下面指令測試,他預設的機制是如果有人讀取/dev/watchdog
這個檔案,他就會開始倒數計時,如果有人寫入檔案,則timer重置,下面指令將會讓watchgod重啟系統。
1 | sudo tail -f /dev/watchdog |
如果要避免重啟就必須寫入/dev/watchdog
檔。或是結束tail -f
https://forums.developer.nvidia.com/t/configuring-watchdog-timer-on-tx1/44361/2?u=jenhao
https://hackmd.io/@rhythm/HyOxzDkmD
https://www.airs.com/blog/archives/38
c語言中的static function在function被定義的檔案以外的scope是看不到的
表示必要的函式庫或是.o檔沒有被連接
nm
指令確認函式確實存在.so檔裡面例如:nm -D libnvds_utils.so --defined-only
的輸出如下,這個指令只會列出有對外開放的函式1 | 0000000000001470 T nvds_dependencies_version_print |
nm deepstream_source_bin.o --defined-only
1 | 0000000000000000 b install_mux_eosmonitor_probe |
編譯過程中發現ld找不到某個函式庫例如/usr/bin/ld: cannot find -ljpeg
,可以利用指令ld <函式庫> --verbose
可以查看ld找了那些路徑,例如目前ld找不到-ljpeg
可以利用ld -ljpeg --verbose
,輸出如下
1 | ld: mode aarch64linux |
連接器指令放最後面
例如
1 | gcc -I/usr/local/include -o yaml_reader yaml_reader.c -L/usr/local/lib -lfyaml |
https://stackoverflow.com/questions/22426574/gcc-undefined-reference-to
https://stackoverflow.com/questions/16710047/usr-bin-ld-cannot-find-lnameofthelibrary
add_executable(…)內加入的cpp檔會被編譯,確認是否有將程式加入
1 | sudo apt update |
參考:
https://ithelp.ithome.com.tw/m/articles/10267179
sudo apt install ncdu
https://ephrain.net/mac-%E5%9C%A8%E7%B5%82%E7%AB%AF%E6%A9%9F%E4%B8%AD%E4%BD%BF%E7%94%A8-ncdu%EF%BC%8C%E6%AA%A2%E8%A6%96%E7%A1%AC%E7%A2%9F%E7%A9%BA%E9%96%93%E5%A4%A7%E5%B0%8F/
https://github.com/rofl0r/ncdu
遠端桌面
Nomachine
硬體狀態jtop
1 | sudo apt update |
關閉GUI節省GPU資源
1 | sudo init 3 #暫時關閉 |
1 | sudo init 5 #打開 |
1 | sudo systemctl set-default multi-user.target #關閉 |
1 | sudo systemctl set-default multi-user.target #打開 |
參考:
https://forum.nomachine.com/topic/problems-connecting-with-nomachine-in-pc-client-without-monitor
1 | sudo systemctl stop display-manager |
參考:
https://forum.nomachine.com/topic/problems-connecting-with-nomachine-in-pc-client-without-monitor