<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="lt">
	<id>https://wiki.eofnet.lt/w//index.php?action=history&amp;feed=atom&amp;title=Munin_plugin_wifi_signal</id>
	<title>Munin plugin wifi signal - Versijų istorija</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.eofnet.lt/w//index.php?action=history&amp;feed=atom&amp;title=Munin_plugin_wifi_signal"/>
	<link rel="alternate" type="text/html" href="https://wiki.eofnet.lt/w//index.php?title=Munin_plugin_wifi_signal&amp;action=history"/>
	<updated>2026-04-15T06:49:04Z</updated>
	<subtitle>Šio puslapio versijų istorija projekte</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.eofnet.lt/w//index.php?title=Munin_plugin_wifi_signal&amp;diff=9077&amp;oldid=prev</id>
		<title>\dev\null: Naujas puslapis: Munin pluginas skirtas monitorinti wifi interfeisų signalų stiprumą ir triukšmą.  250px  Sudedam į '''/etc/munin/plugi...</title>
		<link rel="alternate" type="text/html" href="https://wiki.eofnet.lt/w//index.php?title=Munin_plugin_wifi_signal&amp;diff=9077&amp;oldid=prev"/>
		<updated>2020-03-10T10:00:49Z</updated>

		<summary type="html">&lt;p&gt;Naujas puslapis: &lt;a href=&quot;/w//index.php?title=Munin&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Munin (puslapis neegzistuoja)&quot;&gt;Munin&lt;/a&gt; pluginas skirtas monitorinti wifi interfeisų signalų stiprumą ir triukšmą.  &lt;a href=&quot;/wiki/Vaizdas:Screenshot_2020-03-10_at_11.59.56.png&quot; title=&quot;Vaizdas:Screenshot 2020-03-10 at 11.59.56.png&quot;&gt;250px&lt;/a&gt;  Sudedam į &amp;#039;&amp;#039;&amp;#039;/etc/munin/plugi...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Naujas puslapis&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[Munin]] pluginas skirtas monitorinti wifi interfeisų signalų stiprumą ir triukšmą.&lt;br /&gt;
&lt;br /&gt;
[[Vaizdas:Screenshot 2020-03-10 at 11.59.56.png|250px]]&lt;br /&gt;
&lt;br /&gt;
Sudedam į '''/etc/munin/plugins/wifi_signal'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
#&lt;br /&gt;
# Show noise and signal levels of wifi enabled devices.&lt;br /&gt;
# Author: Nicolai Langfeldt, janl@linprolno&lt;br /&gt;
# Modifications: Sebastián Cruz, crux@lugmen.org.ar&lt;br /&gt;
# License: GPL v. 2&lt;br /&gt;
#&lt;br /&gt;
#%# family=auto&lt;br /&gt;
#%# capabilities=autoconf&lt;br /&gt;
&lt;br /&gt;
PNWL=/proc/net/wireless&lt;br /&gt;
&lt;br /&gt;
do_fetch () {&lt;br /&gt;
    awk -F'[ :]*' '/:/ {&lt;br /&gt;
                gsub(/\. /,&amp;quot; &amp;quot;,$0); # Remove periods with no decimals after&lt;br /&gt;
	        print $2&amp;quot;_noise.value &amp;quot;$6;&lt;br /&gt;
	        print $2&amp;quot;_signal.value &amp;quot;$5;&lt;br /&gt;
	}' $PNWL&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
do_config () {&lt;br /&gt;
    echo &amp;quot;graph_title WiFi signal and noise&amp;quot;&lt;br /&gt;
    echo &amp;quot;graph_args --base 1000 -u 0&amp;quot;&lt;br /&gt;
    echo &amp;quot;graph_vlabel dB&amp;quot;&lt;br /&gt;
    echo &amp;quot;graph_category wireless&amp;quot;&lt;br /&gt;
    echo &amp;quot;graph_info This graph shows the noise and singal levels of your WiFi devices&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    awk -F'[ :]*' '/:/ {&lt;br /&gt;
	        print $2&amp;quot;_noise.label Noise &amp;quot;$2;&lt;br /&gt;
	        print $2&amp;quot;_signal.label Signal &amp;quot;$2;&lt;br /&gt;
	}' $PNWL&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
do_autoconf () {&lt;br /&gt;
    if [ ! -f &amp;quot;$PNWL&amp;quot; ]; then&lt;br /&gt;
        echo &amp;quot;no (missing file '$PNWL')&amp;quot;&lt;br /&gt;
    elif [ ! -r &amp;quot;$PNWL&amp;quot; ]; then&lt;br /&gt;
        echo &amp;quot;no (cannot read file '$PNWL')&amp;quot;&lt;br /&gt;
    elif grep -qs : &amp;quot;$PNWL&amp;quot;; then&lt;br /&gt;
        echo yes&lt;br /&gt;
    else&lt;br /&gt;
        echo &amp;quot;no (no devices in $PNWL)&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
    exit 0&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
case $1 in&lt;br /&gt;
    config|autoconf)&lt;br /&gt;
        eval do_$1&lt;br /&gt;
	exit 0;;&lt;br /&gt;
    '')&lt;br /&gt;
        do_fetch&lt;br /&gt;
	exit 0;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripts]]&lt;br /&gt;
[[Category:Munin]]&lt;/div&gt;</summary>
		<author><name>\dev\null</name></author>
	</entry>
</feed>