Skip to main content

Linux Resources Monitoring



  1. dstat
Requirements:python

Dstat is a versatile replacement for iostat, vmstat and ifstat
http://linux.softpedia.com/get/System/Diagnostics/Dstat-1401.shtml

 - download the source file
 - tar -xvjf dstate-0.7.2.tar.bz2
 - cd dstate-0.7.2
 - sudo make install


사용법
dstat -cdngys --top-io-adv --top-bio-adv 창넓이가 크면
dstat -cdngys --top-io --top-bio
dstat 기본옵션은 -cdngy

Dstat screenshot 1


Dstat screenshot 2


2. pktstat
requirements: libpcap-devel, ncurses-devel
pktstat man page

사용법:sudo pktstat -i eth0 -T -l



실행결과




interface: eth0    total: 43.9Mb (3s)
cur: 12.3M (78%) min: 12.3M max: 15.8M avg: 14.5M bps


   bps    %      b desc
  1.4k   0%   4.3k arp
 591.8   0%   1.2k ip proto 88 55.101.66.3 <-> igrp-routers
 91.3k   0%  91.3k tcp a100236:4478 <-> console:ssh
 42.6k   0% 216.4k tcp a100390:mailprox <-> console:ssh
  1.1k   0%   2.1k udp 123.43.179.2:hsrp <-> all-routers:hsrp
 527.8   0%   1.6k udp 123.43.179.3:hsrp <-> all-routers:hsrp
 527.8   0%   1.6k udp 123.43.180.2:hsrp <-> all-routers:hsrp
 527.8   0%   1.6k udp 123.43.180.3:hsrp <-> all-routers:hsrp
 527.8   0%   1.6k udp 123.43.181.2:hsrp <-> all-routers:hsrp
 527.8   0%   2.1k udp 123.43.181.3:hsrp <-> all-routers:hsrp
  2.4M  15%   8.7M udp 192.168.106.111:cslistener <-> reserved-multicast-range-not-delegated:cslistener
136.1k   0% 408.6k udp 192.168.106.111:dynamid <-> reserved-multicast-range-not-delegated:dynamid
  2.4M  15%   8.9M udp 192.168.107.133:cslistener <-> reserved-multicast-range-not-delegated:cslistener



3. iptstate
requirement: libnetfilter_conntrack-devel
/proc/net/ip_conntrack파일을 참조한다. 따라서 embedded와 같은 곳에서는 작동되지 않는다.
IPTState Screenshot



4.vnstat
vnstat은 통계치를 구하는 것으로, pktstat와 iptstat와 그 용도가 다르다.
또한, php와 연동이 되어, web page에서 그 결과를 관람할 수 있다.

이 곳에 가면  볼 수 있다.
http://www.sqweek.com/vnstat/


Comments

Anonymous said…
This comment has been removed by a blog administrator.

Popular posts from this blog

Sqlite database is locked

sqlite는 embedded system에서 널리 사용되는 무료 dbms?(dbms라고 말하긴 좀 그렇지만, dbms라 불러주자 ㅎ) 이다. 특히 memory db 기능이 아주 유용하다. 그 밖의 dbms에서도 이 기능이 있으나, 이 기능이 지원되는 버전은 대부분 고가이다. 따라서, 무료인 sqlite를 많이들 애용하는 것 같다. 멀티쓰레드를 sqlite DB를 구현하고 롱런테스트를 하다보면, pthread_mutex_lock으로 쓰레드 간의 교착상태를 막아줘도, sqlite lock 에러가 간헐적으로 발생할 것이다. 이에 대해 본인은 다음과 같은 에러 처리 구문을 준비하여 사용하고 있다. sqlite Error가 발생하면, sqlite3_exception함수를 호출한다. 이 함수에서 sqlite error code를 구분하여, 만약, busy 또는 locked이면 최대 2초간 sleep 상태로 만드는 sqlite3_busy_timeout, busy handler를 호출한다. 그 다음, goto 구문으로 재차 sqlite3_exec를 실행한다. 단, sqlite3_exec는 transaction의 begin과 commit 또는 rollback 구문 사이에서 실행한다. 대부분 lock 에러가 발생하더라도 1~2번 실패 후에, 처리된다는 것이 본인의 테스트 결과이다. 단, journal를 WAL로 변경하였음. 기존 journal은 멀티쓰레드 지향적이지 않다는 점을 잊지마시길.... Error Code SQLITE_LOCKED (6): Database Is Locked This error code occurs when you try to do two incompatible things with a database at the same time from the same database connection. For example, if you are in the middle of a SELECT statement and y...

맥OS 사전에 사전 파일 추가하기

1. http://code.google.com/p/mac-dictionary-kit/에서 sdconv를 다운로드 받는다. 2. e4u 등과 같은 사전 파일(stardict 형식)을 다운받는다. 3. 사전 파일의 압축을 풀면, e4u.ifo, e4u.dict.dz, e4u.idx와 같은 파일이 보인다. 4. sdconv 디렉터리 내의 convert 실행 파일로 convert e4u.ifo를 실행한다. 5. 위 과정이 완료되면 아래와 같이 사전에 e4u가 추가된 점을 확인할 수 있다. 6. 순서를 조절하여 사용하면 된다.

vim에 git diff 표시하기

  먼저 gitgutter 팩을 설치 $> mkdir -p ~/.vim/pack/airblade/start $> cd ~/.vim/pack/airblade/start $> git clone https://github.com/airblade/vim-gitgutter.git $> vim -u NONE -c "helptags vim-gitgutter/doc" -c q   .vimrc 설정하기    function! GitStatus()   let [a,m,r] = GitGutterGetHunkSummary()   return printf('+%d ~%d -%d', a, m, r)   endfunction   set statusline=%<%f\ %m%r%h%w%{'['.(&fenc!=''?&fenc:&enc).']['.&ff.']'}%=P%l,%c%V%8P,\ %{GitStatus()} highlight GitGutterAdd    guifg=#009900 ctermfg=2 highlight GitGutterChange guifg=#bbbb00 ctermfg=3 highlight GitGutterDelete guifg=#ff2222 ctermfg=1 set signcolumn=yes highlight link GitGutterChangeLine DiffText highlight link GitGutterChangeLineNr Underlined highlight link GitGutterAddIntraLine DiffAdd