├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── Screengrabfile ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── muninforAndroid ├── build.gradle ├── google-services.json ├── libs │ └── AppRate_1.1.jar ├── lint.xml └── src │ ├── androidTest │ └── java │ │ └── com.chteuchteu.munin.test │ │ └── ScreengrabTest.java │ ├── debug │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable-hdpi │ │ └── launcher_icon.png │ │ ├── drawable-mdpi │ │ └── launcher_icon.png │ │ ├── drawable-xhdpi │ │ └── launcher_icon.png │ │ ├── drawable-xxhdpi │ │ └── launcher_icon.png │ │ ├── drawable-xxxhdpi │ │ └── launcher_icon.png │ │ └── values │ │ └── strings.xml │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── android │ │ └── vending │ │ └── billing │ │ └── IInAppBillingService.aidl │ ├── assets │ ├── Roboto-Medium.ttf │ ├── RobotoCondensed-Bold.ttf │ ├── RobotoCondensed-Regular.ttf │ └── html_docs │ │ ├── core_active_inactive_linux_meminfo.html │ │ ├── core_allocates_linux_meminfo.html │ │ ├── core_antivirus_node_amavis.html │ │ ├── core_apache_node_apache.html │ │ ├── core_asterisk_node_asterisk.html │ │ ├── core_bind_node_bind9.html │ │ ├── core_bind_node_bind9_rndc.html │ │ ├── core_cache_linux_meminfo.html │ │ ├── core_candidates_linux_meminfo.html │ │ ├── core_direct_map_linux_meminfo.html │ │ ├── core_disk_aix_df.html │ │ ├── core_disk_aix_iostat.hd_only.html │ │ ├── core_disk_aix_iostat.html │ │ ├── core_disk_aix_iostat.vp_only.html │ │ ├── core_disk_cygwin_df.html │ │ ├── core_disk_hp-ux_df.html │ │ ├── core_disk_hp-ux_df_inode.html │ │ ├── core_disk_linux_df.html │ │ ├── core_disk_linux_df_abs.html │ │ ├── core_disk_linux_diskstat_.html │ │ ├── core_disk_linux_diskstats.html │ │ ├── core_disk_linux_iostat.html │ │ ├── core_disk_linux_iostat_ios.html │ │ ├── core_disk_linux_quota_usage_.html │ │ ├── core_disk_node_df.html │ │ ├── core_disk_node_df_inode.html │ │ ├── core_disk_node_smart_.html │ │ ├── core_disk_node_snmp__df.html │ │ ├── core_disk_node_snmp__netapp_diskusage_.html │ │ ├── core_disk_node_snmp__netapp_inodeusage_.html │ │ ├── core_disk_sunos_df.html │ │ ├── core_disk_sunos_df_inode.html │ │ ├── core_ejabberd_node_ejabberd_.html │ │ ├── core_galera_node_mysql_.html │ │ ├── core_groups_size_linux_meminfo.html │ │ ├── core_haproxy_node_haproxy_.html │ │ ├── core_hugepages_linux_meminfo.html │ │ ├── core_informix_node_ifx_concurrent_sessions_.html │ │ ├── core_jenkins_node_jenkins_builds.html │ │ ├── core_jenkins_node_jenkins_builds_results.html │ │ ├── core_jenkins_node_jenkins_builds_results_summary.html │ │ ├── core_jenkins_node_jenkins_builds_running.html │ │ ├── core_jenkins_node_jenkins_jobs.html │ │ ├── core_kernel_linux_meminfo.html │ │ ├── core_low_and_high_linux_meminfo.html │ │ ├── core_mail_node_courier_.html │ │ ├── core_mail_node_courier_mta_mailqueue.html │ │ ├── core_mail_node_courier_mta_mailstats.html │ │ ├── core_mail_node_courier_mta_mailvolume.html │ │ ├── core_mail_node_exim_mailqueue.html │ │ ├── core_mail_node_exim_mailqueue_alt.html │ │ ├── core_mail_node_exim_mailstats.html │ │ ├── core_mail_node_postfix_mailqueue.html │ │ ├── core_mail_node_postfix_mailstats.html │ │ ├── core_mail_node_postfix_mailvolume.html │ │ ├── core_mail_node_qmailscan.html │ │ ├── core_mail_node_sendmail_mailqueue.html │ │ ├── core_mail_node_sendmail_mailstats.html │ │ ├── core_mail_node_sendmail_mailtraffic.html │ │ ├── core_memory_hp-ux_gp_gbl_mem_util.html │ │ ├── core_memory_linux_meminfo.html │ │ ├── core_munin_node_munin_update.html │ │ ├── core_mysql_node_mysql_.html │ │ ├── core_mysql_node_mysql_bytes.html │ │ ├── core_mysql_node_mysql_innodb.html │ │ ├── core_mysql_node_mysql_isam_space_.html │ │ ├── core_mysql_node_mysql_queries.html │ │ ├── core_mysql_node_mysql_slowqueries.html │ │ ├── core_mysql_node_mysql_threads.html │ │ ├── core_network_aix_netstat.html │ │ ├── core_network_cygwin_netstat.html │ │ ├── core_network_darwin_if_.html │ │ ├── core_network_darwin_if_err_.html │ │ ├── core_network_freebsd_netstat.html │ │ ├── core_network_linux_bonding_err_.html │ │ ├── core_network_linux_cps_.html │ │ ├── core_network_linux_fw_conntrack.html │ │ ├── core_network_linux_fw_forwarded_local.html │ │ ├── core_network_linux_fw_packets.html │ │ ├── core_network_linux_if_.html │ │ ├── core_network_linux_if_err_.html │ │ ├── core_network_linux_ip_.html │ │ ├── core_network_linux_netstat.html │ │ ├── core_network_linux_netstat_multi.html │ │ ├── core_network_linux_port_.html │ │ ├── core_network_linux_tcp.html │ │ ├── core_network_node_dhcpd3.html │ │ ├── core_network_node_fail2ban.html │ │ ├── core_network_node_http_loadtime.html │ │ ├── core_network_node_multiping.html │ │ ├── core_network_node_netstat.html │ │ ├── core_network_node_openvpn.html │ │ ├── core_network_node_ping_.html │ │ ├── core_network_node_snmp__fc_if_.html │ │ ├── core_network_node_snmp__if_.html │ │ ├── core_network_node_snmp__if_err_.html │ │ ├── core_network_node_snmp__if_multi.html │ │ ├── core_network_node_snmp__netstat.html │ │ ├── core_network_node_squid.html │ │ ├── core_network_node_surfboard.html │ │ ├── core_network_openbsd_netstat.html │ │ ├── core_network_sunos_if_.html │ │ ├── core_network_sunos_if_err_.html │ │ ├── core_network_sunos_netstat.html │ │ ├── core_nfs_linux_nfs4_client.html │ │ ├── core_nfs_linux_nfs_client.html │ │ ├── core_nfs_linux_nfsd.html │ │ ├── core_nfs_linux_nfsd4.html │ │ ├── core_nfs_netbsd_nfs_client.html │ │ ├── core_nginx_node_nginx_request.html │ │ ├── core_nginx_node_nginx_status.html │ │ ├── core_nomadix_node_nomadix_users_.html │ │ ├── core_objects_linux_meminfo.html │ │ ├── core_openldap_node_slapd_bdb_cache_.html │ │ ├── core_other_linux_meminfo.html │ │ ├── core_other_node_freeradius_acct.html │ │ ├── core_other_node_freeradius_auth.html │ │ ├── core_other_node_freeradius_proxy_acct.html │ │ ├── core_other_node_freeradius_proxy_auth.html │ │ ├── core_other_node_loggrep.html │ │ ├── core_postgresql_node_postgres_streaming_.html │ │ ├── core_printing_node_cupsys_pages.html │ │ ├── core_printing_node_lpstat.html │ │ ├── core_printing_node_snmp__print_pages.html │ │ ├── core_printing_node_snmp__print_supplies.html │ │ ├── core_processes_aix_processes.html │ │ ├── core_processes_linux_meminfo.html │ │ ├── core_processes_linux_proc.html │ │ ├── core_processes_linux_proc_pri.html │ │ ├── core_processes_linux_threads.html │ │ ├── core_processes_node_multips.html │ │ ├── core_processes_node_multips_memory.html │ │ ├── core_processes_node_processes.html │ │ ├── core_processes_node_ps_.html │ │ ├── core_processes_node_psu_.html │ │ ├── core_processes_node_vmstat.html │ │ ├── core_reclaim_linux_meminfo.html │ │ ├── core_rectifier_node_snmp__eltek_rectifier.html │ │ ├── core_samba_node_samba.html │ │ ├── core_security_linux_apt.html │ │ ├── core_security_linux_apt_all.html │ │ ├── core_security_linux_yum.html │ │ ├── core_sensors_node_cmc_tc_sensor_.html │ │ ├── core_sensors_node_digitemp_.html │ │ ├── core_sensors_node_hddtemp_smartctl.html │ │ ├── core_sensors_node_ipmi_.html │ │ ├── core_sensors_node_ipmi_sensor_.html │ │ ├── core_sensors_node_nvidia_.html │ │ ├── core_sensors_node_snmp__sensors_fsc_bx_fan.html │ │ ├── core_sensors_node_snmp__sensors_fsc_bx_temp.html │ │ ├── core_sensors_node_snmp__sensors_mbm_fan.html │ │ ├── core_sensors_node_snmp__sensors_mbm_temp.html │ │ ├── core_sensors_node_snmp__sensors_mbm_volt.html │ │ ├── core_sensors_sunos_temperature.html │ │ ├── core_snort_node_snort_alerts.html │ │ ├── core_snort_node_snort_bytes_pkt.html │ │ ├── core_snort_node_snort_drop_rate.html │ │ ├── core_snort_node_snort_pattern_match.html │ │ ├── core_snort_node_snort_pkts.html │ │ ├── core_snort_node_snort_traffic.html │ │ ├── core_squeezebox_node_squeezebox_.html │ │ ├── core_system_aix_cpu.html │ │ ├── core_system_aix_load.html │ │ ├── core_system_aix_memory.html │ │ ├── core_system_aix_swap.html │ │ ├── core_system_darwin_load.html │ │ ├── core_system_hp-ux_sar_cpu.html │ │ ├── core_system_linux_buddyinfo.html │ │ ├── core_system_linux_cpuspeed.html │ │ ├── core_system_linux_irqstats.html │ │ ├── core_system_linux_lpar_cpu.html │ │ ├── core_system_linux_memory.html │ │ ├── core_system_linux_numa_.html │ │ ├── core_system_linux_procfs.html │ │ ├── core_system_linux_procsys.html │ │ ├── core_system_linux_selinux_avcstat.html │ │ ├── core_system_node_snmp__cpuload.html │ │ ├── core_system_node_snmp__df_ram.html │ │ ├── core_system_node_snmp__load.html │ │ ├── core_system_node_snmp__memory.html │ │ ├── core_system_node_snmp__processes.html │ │ ├── core_system_node_snmp__rdp_users.html │ │ ├── core_system_node_snmp__uptime.html │ │ ├── core_system_node_snmp__users.html │ │ ├── core_system_node_snmp__winmem.html │ │ ├── core_system_node_users.html │ │ ├── core_system_sunos_cpu.html │ │ ├── core_system_sunos_load.html │ │ ├── core_system_sunos_memory.html │ │ ├── core_system_sunos_paging_in.html │ │ ├── core_system_sunos_paging_out.html │ │ ├── core_system_sunos_uptime.html │ │ ├── core_time_node_ntp_.html │ │ ├── core_time_node_ntp_kernel_err.html │ │ ├── core_time_node_ntp_kernel_pll_freq.html │ │ ├── core_time_node_ntp_kernel_pll_off.html │ │ ├── core_time_node_ntp_offset.html │ │ ├── core_time_node_ntp_states.html │ │ ├── core_tomcat_java_jmx_tomcat_dbpools.html │ │ ├── core_tomcat_node_tomcat_.html │ │ ├── core_tomcat_node_tomcat_access.html │ │ ├── core_tomcat_node_tomcat_jvm.html │ │ ├── core_tomcat_node_tomcat_threads.html │ │ ├── core_tomcat_node_tomcat_volume.html │ │ ├── core_total_linux_meminfo.html │ │ ├── core_ups_node_snmp__apc_ups.html │ │ ├── core_varnish_node_varnish_.html │ │ ├── core_vserver_linux_vserver_cpu_.html │ │ ├── core_vserver_linux_vserver_loadavg.html │ │ ├── core_vserver_linux_vserver_resources.html │ │ ├── core_writeback_linux_meminfo.html │ │ └── core_zimbra_node_zimbra_.html │ ├── java │ └── com │ │ ├── android │ │ └── vending │ │ │ └── billing │ │ │ └── IInAppBillingService.aidl │ │ └── chteuchteu │ │ └── munin │ │ ├── App.java │ │ ├── MuninFoo.java │ │ ├── adptr │ │ ├── Adapter_Alerts.java │ │ ├── Adapter_CheckablePluginsList.java │ │ ├── Adapter_ExpandableListView.java │ │ ├── Adapter_GraphView.java │ │ ├── Adapter_Grids.java │ │ ├── Adapter_IconList.java │ │ ├── Adapter_Languages.java │ │ ├── Adapter_NodesList.java │ │ ├── Adapter_NotifIgnoreRules.java │ │ ├── Adapter_Notifications.java │ │ ├── Adapter_SelectableList.java │ │ ├── Adapter_SeparatedList.java │ │ ├── GridsListAlertDialog.java │ │ ├── NodesListAlertDialog.java │ │ └── PluginsListAlertDialog.java │ │ ├── async │ │ ├── AlertsScanner.java │ │ ├── AppUpdater.java │ │ ├── BitmapFetcher.java │ │ ├── DonateAsync.java │ │ ├── DynazoomDetector.java │ │ ├── DynazoomUrlScanner.java │ │ ├── FieldsDescriptionFetcher.java │ │ ├── MasterDeleter.java │ │ ├── MasterScanner.java │ │ ├── Notifications_SendInstructionsByMail.java │ │ └── ServerScanner.java │ │ ├── exc │ │ ├── ImportExportWebserviceException.java │ │ └── NullMuninFooException.java │ │ ├── hlpr │ │ ├── BillingService.java │ │ ├── ChromecastHelper.java │ │ ├── DatabaseHelper.java │ │ ├── DigestUtils.java │ │ ├── DocumentationHelper.java │ │ ├── DrawerHelper.java │ │ ├── DynazoomHelper.java │ │ ├── EncryptionHelper.java │ │ ├── GridDownloadHelper.java │ │ ├── HTMLParser.java │ │ ├── I18nHelper.java │ │ ├── ImportExportHelper.java │ │ ├── JSONHelper.java │ │ ├── MediaScannerUtil.java │ │ ├── NetHelper.java │ │ ├── PermissionsHelper.java │ │ ├── SQLite.java │ │ ├── Settings.java │ │ ├── TagFormat.java │ │ ├── TestsHelper.java │ │ └── Util.java │ │ ├── ntfs │ │ ├── poll │ │ │ ├── BootReceiver.java │ │ │ ├── PollTask.java │ │ │ └── Service_PollNotifications.java │ │ └── push │ │ │ └── FcmListenerService.java │ │ ├── obj │ │ ├── AlertsWidget.java │ │ ├── GraphWidget.java │ │ ├── Grid.java │ │ ├── GridItem.java │ │ ├── HTTPResponse │ │ │ ├── BaseResponse.java │ │ │ ├── BitmapResponse.java │ │ │ └── HTMLResponse.java │ │ ├── Label.java │ │ ├── MuninMaster.java │ │ ├── MuninNode.java │ │ ├── MuninPlugin.java │ │ └── NotifIgnoreRule.java │ │ ├── ui │ │ ├── Activity_About.java │ │ ├── Activity_Alerts.java │ │ ├── Activity_AlertsPlugins.java │ │ ├── Activity_GoPremium.java │ │ ├── Activity_GraphView.java │ │ ├── Activity_Grid.java │ │ ├── Activity_Grids.java │ │ ├── Activity_IgnoreNotification.java │ │ ├── Activity_Labels.java │ │ ├── Activity_Main.java │ │ ├── Activity_Notifications.java │ │ ├── Activity_Plugins.java │ │ ├── Activity_Server.java │ │ ├── Activity_Servers.java │ │ ├── Activity_Settings.java │ │ ├── DialogFragment_AddGridItem.java │ │ ├── Fragment_Alerts.java │ │ ├── Fragment_Graph.java │ │ ├── Fragment_Grid.java │ │ ├── Fragment_LabelsItemsList.java │ │ ├── Fragment_LabelsList.java │ │ ├── Fragment_Notifications_Poll.java │ │ ├── Fragment_Notifications_Push.java │ │ ├── HackyDrawerLayout.java │ │ ├── HackyViewPager.java │ │ ├── IAlertsActivity.java │ │ ├── IGridActivity.java │ │ ├── IImportExportActivity.java │ │ ├── ILabelsActivity.java │ │ ├── INotificationsFragment.java │ │ ├── IServersActivity.java │ │ └── MuninActivity.java │ │ └── wdget │ │ ├── Widget_AlertsWidget_Configure.java │ │ ├── Widget_AlertsWidget_ViewsFactory.java │ │ ├── Widget_AlertsWidget_WidgetProvider.java │ │ ├── Widget_AlertsWidget_WidgetService.java │ │ ├── Widget_GraphWidget_Configure.java │ │ └── Widget_GraphWidget_WidgetProvider.java │ └── res │ ├── anim │ ├── deeper_in.xml │ ├── deeper_out.xml │ ├── shallower_in.xml │ └── shallower_out.xml │ ├── drawable-hdpi │ ├── .directory │ ├── alerts_and_states_error.png │ ├── card.9.png │ ├── collections_labels_light.png │ ├── content_graph.png │ ├── download_error.png │ ├── ic_action_accounts.png │ ├── ic_action_alert_critical.png │ ├── ic_action_alert_warning.png │ ├── ic_action_content_add.png │ ├── ic_action_down.png │ ├── ic_action_dynazoom.png │ ├── ic_action_help2.png │ ├── ic_action_image_edit.png │ ├── ic_action_import_export.png │ ├── ic_action_label.png │ ├── ic_action_navigation_arrow_back.png │ ├── ic_action_navigation_arrow_drop_down.png │ ├── ic_action_navigation_check.png │ ├── ic_action_navigation_refresh.png │ ├── ic_action_new.png │ ├── ic_action_next_item.png │ ├── ic_action_open.png │ ├── ic_action_overflow.png │ ├── ic_action_picture.png │ ├── ic_action_previous_item.png │ ├── ic_action_refresh.png │ ├── ic_action_remove.png │ ├── ic_action_reset.png │ ├── ic_action_search.png │ ├── ic_action_time.png │ ├── ic_action_up.png │ ├── ic_action_view_as_list.png │ ├── ic_alert_box_white.png │ ├── ic_bookmark_remove_grey600.png │ ├── ic_delete.png │ ├── ic_grid.png │ ├── ic_insecure.png │ ├── ic_secure.png │ ├── ic_unreachable.png │ ├── launcher_icon.png │ ├── launcher_icon_mono.png │ ├── location_web_site.png │ └── splash_overlay_logo.png │ ├── drawable-ldpi │ └── ic_delete.png │ ├── drawable-mdpi │ ├── .directory │ ├── alerts_and_states_error.png │ ├── card.9.png │ ├── collections_labels_light.png │ ├── content_graph.png │ ├── ic_action_accounts.png │ ├── ic_action_alert_critical.png │ ├── ic_action_alert_warning.png │ ├── ic_action_content_add.png │ ├── ic_action_down.png │ ├── ic_action_dynazoom.png │ ├── ic_action_help2.png │ ├── ic_action_image_edit.png │ ├── ic_action_import_export.png │ ├── ic_action_label.png │ ├── ic_action_navigation_arrow_back.png │ ├── ic_action_navigation_arrow_drop_down.png │ ├── ic_action_navigation_check.png │ ├── ic_action_navigation_refresh.png │ ├── ic_action_new.png │ ├── ic_action_next_item.png │ ├── ic_action_open.png │ ├── ic_action_overflow.png │ ├── ic_action_picture.png │ ├── ic_action_previous_item.png │ ├── ic_action_refresh.png │ ├── ic_action_remove.png │ ├── ic_action_reset.png │ ├── ic_action_search.png │ ├── ic_action_time.png │ ├── ic_action_up.png │ ├── ic_action_view_as_list.png │ ├── ic_alert_box_white.png │ ├── ic_bookmark_remove_grey600.png │ ├── ic_delete.png │ ├── ic_grid.png │ ├── ic_insecure.png │ ├── ic_secure.png │ ├── ic_unreachable.png │ ├── launcher_icon.png │ ├── launcher_icon_mono.png │ ├── location_web_site.png │ ├── progress_primary_holo_light.9.png │ ├── progress_secondary_holo_light.9.png │ └── splash_overlay_logo.png │ ├── drawable-nodpi │ ├── alertswidget_preview.png │ ├── croppedgraphplaceholder.png │ ├── croppedgraphplaceholder_error.png │ ├── graphwidget_preview.png │ └── widget_glow.9.png │ ├── drawable-xhdpi │ ├── .directory │ ├── alerts_and_states_error.png │ ├── card.9.png │ ├── collections_labels_light.png │ ├── content_graph.png │ ├── ic_action_accounts.png │ ├── ic_action_alert_critical.png │ ├── ic_action_alert_warning.png │ ├── ic_action_content_add.png │ ├── ic_action_down.png │ ├── ic_action_dynazoom.png │ ├── ic_action_help2.png │ ├── ic_action_image_edit.png │ ├── ic_action_import_export.png │ ├── ic_action_label.png │ ├── ic_action_navigation_arrow_back.png │ ├── ic_action_navigation_arrow_drop_down.png │ ├── ic_action_navigation_check.png │ ├── ic_action_navigation_refresh.png │ ├── ic_action_new.png │ ├── ic_action_next_item.png │ ├── ic_action_open.png │ ├── ic_action_overflow.png │ ├── ic_action_picture.png │ ├── ic_action_previous_item.png │ ├── ic_action_refresh.png │ ├── ic_action_remove.png │ ├── ic_action_reset.png │ ├── ic_action_search.png │ ├── ic_action_time.png │ ├── ic_action_up.png │ ├── ic_action_view_as_list.png │ ├── ic_alert_box_white.png │ ├── ic_bookmark_remove_grey600.png │ ├── ic_delete.png │ ├── ic_grid.png │ ├── ic_insecure.png │ ├── ic_secure.png │ ├── ic_unreachable.png │ ├── launcher_icon.png │ ├── launcher_icon_mono.png │ ├── location_web_site.png │ ├── progress_primary_holo_light.9.png │ ├── progress_secondary_holo_light.9.png │ └── splash_overlay_logo.png │ ├── drawable-xxhdpi │ ├── alerts_and_states_error.png │ ├── bottom_shadow.9.png │ ├── card.9.png │ ├── collections_labels_light.png │ ├── content_graph.png │ ├── ic_action_accounts.png │ ├── ic_action_alert_critical.png │ ├── ic_action_alert_warning.png │ ├── ic_action_content_add.png │ ├── ic_action_down.png │ ├── ic_action_dynazoom.png │ ├── ic_action_help2.png │ ├── ic_action_image_edit.png │ ├── ic_action_import_export.png │ ├── ic_action_label.png │ ├── ic_action_navigation_arrow_back.png │ ├── ic_action_navigation_arrow_drop_down.png │ ├── ic_action_navigation_check.png │ ├── ic_action_navigation_refresh.png │ ├── ic_action_new.png │ ├── ic_action_next_item.png │ ├── ic_action_open.png │ ├── ic_action_overflow.png │ ├── ic_action_picture.png │ ├── ic_action_previous_item.png │ ├── ic_action_refresh.png │ ├── ic_action_remove.png │ ├── ic_action_reset.png │ ├── ic_action_search.png │ ├── ic_action_time.png │ ├── ic_action_up.png │ ├── ic_action_view_as_list.png │ ├── ic_alert_box_white.png │ ├── ic_bookmark_remove_grey600.png │ ├── ic_delete.png │ ├── ic_grid.png │ ├── ic_insecure.png │ ├── ic_secure.png │ ├── ic_unreachable.png │ ├── launcher_icon.png │ ├── location_web_site.png │ ├── progress_primary_holo_light.9.png │ ├── progress_secondary_holo_light.9.png │ └── splash_overlay_logo.png │ ├── drawable-xxxhdpi │ ├── ic_action_navigation_arrow_back.png │ ├── ic_alert_box_white.png │ ├── ic_bookmark_remove_grey600.png │ ├── ic_delete.png │ └── launcher_icon.png │ ├── drawable │ ├── .directory │ ├── actionbar_customview.xml │ ├── gray_gradient.xml │ ├── grid_emptyitembg.xml │ ├── header.jpg │ ├── material_blackgradient.xml │ ├── progress_horizontal_holo_no_background_light.xml │ ├── shadow_gradient.xml │ ├── vertical_divider.xml │ └── widget_border2.xml │ ├── layout-large │ └── incl_labels_layout.xml │ ├── layout │ ├── actionbar_dropdown.xml │ ├── activity_about.xml │ ├── activity_alerts.xml │ ├── activity_alerts_pluginselection.xml │ ├── activity_go_premium.xml │ ├── activity_graphview.xml │ ├── activity_grid.xml │ ├── activity_grids.xml │ ├── activity_labels.xml │ ├── activity_main.xml │ ├── activity_notifications.xml │ ├── activity_plugins.xml │ ├── activity_server.xml │ ├── activity_servers.xml │ ├── activity_settings.xml │ ├── adapter_twolines_checkbox.xml │ ├── alerts_part.xml │ ├── dialog_checkbox.xml │ ├── dialog_donate.xml │ ├── dialog_edittext.xml │ ├── dialog_export_success.xml │ ├── dialog_import.xml │ ├── dialog_updatecredentials.xml │ ├── dialog_webview.xml │ ├── empty_view.xml │ ├── expandable_master.xml │ ├── expandable_server.xml │ ├── fragment_alerts.xml │ ├── fragment_graph.xml │ ├── fragment_grid.xml │ ├── fragment_label.xml │ ├── fragment_labelslist.xml │ ├── fragment_notifications_poll.xml │ ├── fragment_notifications_push.xml │ ├── griditem.xml │ ├── griditem_empty.xml │ ├── gridselection_list.xml │ ├── incl_labels_layout.xml │ ├── labels_list_checkbox.xml │ ├── labelselection_list.xml │ ├── list_header.xml │ ├── list_notifignorerule.xml │ ├── material_drawer.xml │ ├── nodes_list.xml │ ├── plugins_list.xml │ ├── plugins_list_dark.xml │ ├── plugins_serverlist_server.xml │ ├── server_popup.xml │ ├── widget_alertswidget_layout.xml │ ├── widget_alertswidget_part.xml │ ├── widget_configuration.xml │ ├── widget_graphwidget_layout.xml │ └── widget_periodselection.xml │ ├── menu │ ├── about.xml │ ├── alerts.xml │ ├── graphview.xml │ ├── grid.xml │ ├── grids.xml │ ├── labels.xml │ ├── main.xml │ ├── notifications.xml │ ├── plugins.xml │ ├── server.xml │ ├── servers.xml │ ├── servers_overflow.xml │ └── settings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-large-land │ └── dimens.xml │ ├── values-large │ └── dimens.xml │ ├── values-nb-rNO │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-normal │ └── dimens.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-small │ └── dimens.xml │ ├── values-uk │ └── strings.xml │ ├── values-v21 │ ├── dimens.xml │ └── themes.xml │ ├── values-xlarge │ └── dimens.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values │ ├── attrs.xml │ ├── color.xml │ ├── dimens.xml │ ├── plugins_list.xml │ ├── strings.xml │ ├── styles.xml │ └── themes.xml │ └── xml │ ├── network_security_config.xml │ ├── widget_alertswidget_meta.xml │ └── widget_graphwidget_meta.xml ├── proguard-muninforandroid.txt ├── settings.gradle └── versions.txt /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 4 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Android Studio 2 | .idea/ 3 | .gradle 4 | !build.gradle 5 | build/ 6 | /*/local.properties 7 | /*/out 8 | /*/*/build 9 | /*/*/production 10 | *.iml 11 | *.iws 12 | *.ipr 13 | *~ 14 | *.swp 15 | 16 | # Windows thumbnail db 17 | Thumbs.db 18 | 19 | # Crashlytics export string 20 | com_crashlytics_export_strings.xml 21 | crashlytics.properties 22 | crashlytics-build.properties 23 | fabric.properties 24 | 25 | # Additionnal files 26 | gradlew 27 | gradlew.bat 28 | local.properties 29 | 30 | # Screengrab screenshots 31 | fastlane/ 32 | -------------------------------------------------------------------------------- /Screengrabfile: -------------------------------------------------------------------------------- 1 | # remove the leading '#' to uncomment lines 2 | 3 | app_package_name 'com.chteuchteu.munin.debug' 4 | use_tests_in_packages ['com.chteuchteu.munin.test'] 5 | 6 | app_apk_path 'muninforAndroid/build/outputs/apk/muninforAndroid-debug.apk' 7 | tests_apk_path 'muninforAndroid/build/outputs/apk/muninforAndroid-debug-androidTest-unaligned.apk' 8 | 9 | locales ['en-US', 'fr-FR', 'de-DE'] 10 | 11 | # clear all previously generated screenshots in your local output directory before creating new ones 12 | clear_previous_screenshots true 13 | 14 | # For more information about all available options run 15 | # screengrab --help 16 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | buildscript { 3 | repositories { 4 | jcenter() 5 | maven { 6 | url 'https://maven.google.com/' 7 | name 'Google' 8 | } 9 | google() 10 | } 11 | dependencies { 12 | classpath 'com.android.tools.build:gradle:3.5.1' 13 | classpath 'com.google.gms:google-services:4.3.2' 14 | } 15 | } 16 | 17 | allprojects { 18 | repositories { 19 | jcenter() 20 | google() 21 | } 22 | } 23 | 24 | wrapper() { 25 | gradleVersion = '2.11' 26 | distributionUrl = distributionUrl.replace("bin", "all") 27 | } 28 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Oct 20 20:18:32 CEST 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip 7 | -------------------------------------------------------------------------------- /muninforAndroid/libs/AppRate_1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/libs/AppRate_1.1.jar -------------------------------------------------------------------------------- /muninforAndroid/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /muninforAndroid/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /muninforAndroid/src/debug/res/drawable-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/debug/res/drawable-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /muninforAndroid/src/debug/res/drawable-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/debug/res/drawable-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /muninforAndroid/src/debug/res/drawable-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/debug/res/drawable-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /muninforAndroid/src/debug/res/drawable-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/debug/res/drawable-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /muninforAndroid/src/debug/res/drawable-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/debug/res/drawable-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /muninforAndroid/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Munin for Android (DEBUG) 4 | Munin for Android DB Inspector 5 | 6 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/assets/Roboto-Medium.ttf -------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/assets/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/assets/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_disk_aix_df.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

df - Script to monitor disk usage

3 |

CONFIGURATION

4 |

The following environment variables are used by this plugin:

5 |
6 |
7 | warning 8 |
9 |
10 |

Warning percentage (Default: 92)

11 |
12 |
13 | critical 14 |
15 |
16 |

Critical percentage (Default: 98)

17 |
18 |
19 |

NOTES

20 |

DESCRIPTION

21 |

This will report back the sizes of the filesystems currently mounted. All measurements are reported in percents, not in actual 512KB pages. It uses /usr/bin/df.

22 |

RESCTRICTIONS

23 |

None, unless you have restricted who can use /usr/bin/df.

24 |

AUTHOR

25 |

Unknown author

26 |

LICENSE

27 |

GPLv2

28 |

MAGIC MARKERS

29 |
 #%# family=contrib
30 |  #%# capabilities=autoconf
31 |
32 | Source : http://gallery.munin-monitoring.org/ 33 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_disk_aix_iostat.hd_only.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

iostat.hd_only - Plugin for watching io-bound traffic (in KiloBytes) on disks

3 |

CONFIGURATION

4 |

No configuration

5 |

NOTES

6 |

DESCRIPTION

7 |

Similar to the iostat script, but will only report usage on hdisks physically installed in the server.

8 |

RESTRICTIONS

9 |

Same as the iostat script, see its RESTRICTIONS.

10 |

Note: If you have virtual paths, typical when gigabit fiber cards are installed and attached to an ESS (Shark) or some sort of large disk array, this will not include any information for them. This only collects information for hdisks physically located in the machine, no virtual drives are included.

11 |

AUTHOR

12 |

Unknown author

13 |

LICENSE

14 |

GPLv2

15 |

MAGIC MARKERS

16 |
 #%# family=auto
17 |  #%# capabilities=autoconf
18 |
19 | Source : http://gallery.munin-monitoring.org/ 20 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_disk_aix_iostat.vp_only.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

iostat.vp_only - Plugin for watching io-bound traffic (in KiloBytes) on disks

3 |

NOTES

4 |

DESCRIPTION

5 |

Similar to the iostat script, but will only report usage on vpaths.

6 |

RESTRICTIONS

7 |

Same as the iostat script, see its RESTRICTIONS.

8 |

This gathers information on virtual paths ONLY, typical if you have fiber cards installed and are attached to an ESS (Shark) or large disk array.

9 |

This will combine the I/O for all hdisks associated with a vpath so you get global statistics for a vpath. This is to avoid having a list of hdisks that spans multiple pages.

10 |

AUTHOR

11 |

Unknown author

12 |

LICENSE

13 |

GPLv2

14 |

MAGIC MARKERS

15 |
 #%# family=contrib
16 |  #%# capabilities=autoconf
17 |
18 | Source : http://gallery.munin-monitoring.org/ 19 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_disk_cygwin_df.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

df - Script to monitor disk usage

3 |

APPLICABLE SYSTEMS

4 |

Cygwin 1.7.x or higher systems with coreutils installed.

5 |

USAGE

6 |

Link this plugin to /etc/munin/plugins/ and restart the munin-node.

7 |

The plugin excludes per default the following special, read-only or dynamically allocating file systems from graphing:

8 |
  iso9660
9 |

CONFIGURATION

10 |

The following environment variables are used by this plugin:

11 |
 warning  - Warning percentage (Default: 92)
12 |  critical - Critical percentage (Default: 98)
13 |

BUGS/TODO

14 |

Check smb/cifs remote mounts. (Cygwin bug, 2002 vintage, still unfixed: -l switch to df is reversed.)

15 |

AUTHOR

16 |

Erik Inge Bolsø <knan-munin@anduin.net>

17 |

LICENSE

18 |

GPLv2

19 |

MAGIC MARKERS

20 |
 #%# family=auto
21 |  #%# capabilities=autoconf
22 |
23 | Source : http://gallery.munin-monitoring.org/ 24 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_disk_hp-ux_df.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

bdf - Munin plugin to monitor disk space usage on an HP-UX machine

3 |

APPLICABLE SYSTEMS

4 |

Any HP-UX system with commands '/usr/bin/bdf' and '/usr/sbin/fstyp'

5 |

CONFIGURATION

6 |

The plugin must be run as the root user to be able to determine the filesystem type (VXFS, HFS, etc.):

7 |
  [bdf*]
 8 |     user root
9 |

INTERPRETATION

10 |

The plugin shows disk space usage on HP-UX systems as reported by the command 'bdf'.

11 |

Only locally mounted VXFS or HFS filesystems are reported.

12 |

The plugin aims to be a functional equivalent to the Linux df plugin.

13 |

MAGIC MARKERS

14 |
  #%# family=auto
15 |   #%# capabilities=autoconf
16 |

BUGS

17 |

None known

18 |

AUTHOR

19 |

Chris Gardner

20 |

LICENSE

21 |

GPLv2

22 |
23 | Source : http://gallery.munin-monitoring.org/ 24 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_disk_hp-ux_df_inode.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

bdf - Munin plugin to monitor disk inode usage on an HP-UX machine

3 |

APPLICABLE SYSTEMS

4 |

Any HP-UX system with commands '/usr/bin/bdf' and '/usr/sbin/fstyp'

5 |

CONFIGURATION

6 |

The plugin must be run as the root user to be able to determine the filesystem type (VXFS, HFS, etc.):

7 |
  [bdf*]
 8 |     user root
9 |

INTERPRETATION

10 |

The plugin shows disk inode usage on HP-UX systems as reported by the command 'bdf'.

11 |

Only locally mounted VXFS or HFS filesystems are reported.

12 |

The plugin aims to be a functional equivalent to the Linux df_inode plugin.

13 |

MAGIC MARKERS

14 |
  #%# family=auto
15 |   #%# capabilities=autoconf
16 |

BUGS

17 |

None known

18 |

AUTHOR

19 |

Chris Gardner

20 |

LICENSE

21 |

GPLv2

22 |
23 | Source : http://gallery.munin-monitoring.org/ 24 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_disk_linux_df_abs.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

df_abs

3 |

4 |

df_abs - Plugin to monitor absolute disk usage

5 |

CONFIGURATION

6 |

The following configuration parameters are used by this plugin

7 |
 [df_abs]
 8 |   env.exclude  - space separated list of file system types to exclude
 9 |   env.warning  - Warning percentage
10 |   env.critical - Critical percentage
11 |   env.total    - Enable/Disable graph total [on|off]
12 |

DEFAULT CONFIGURATION

13 |
 [df_abs]
14 |   env.exclude  iso9660
15 |   env.warning  92
16 |   env.critical 98
17 |   env.total    on
18 |

AUTHORS

19 |

Unknown author

20 |

LICENSE

21 |

GPLv2

22 |

BUGS

23 |

Does not handle cases where the block device is the same for multiple mounts.

24 |

MAGIC MARKERS

25 |
 #%# family=manual
26 |  #%# capabilities=autoconf
27 |
28 | Source : http://gallery.munin-monitoring.org/ 29 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_disk_linux_quota_usage_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

quota_usage_ - Plugin to monitor quota on a specified device.

3 |

APPLICABLE SYSTEMS

4 |

Needs repquota and root privs

5 |

USAGE

6 |

Create Service Link /etc/munin/plugins/quota-usage_<dev> for example quota-usage_hda3. Use underscores instead of slashes, for example to monitor /dev/mapper/vol-foo, name this quota-usage_mapper_vol-foo

7 |

This plugin uses the soft and hard quota data for warning and critical levels respectively.

8 |

MAGIC MARKERS

9 |
  #%# family=manual
10 |

AUTHOR

11 |

Unknown author

12 |

Source: https://svn.koumbit.net/koumbit/trunk/munin-plugins/quota-usage

13 |

http://munin-monitoring.org/attachment/ticket/143/quota-usage

14 |

LICENSE

15 |

GPLv2

16 |
17 | Source : http://gallery.munin-monitoring.org/ 18 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_disk_node_df.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

df - Script to monitor disk usage

3 |

CONFIGURATION

4 |

The following environment variables are used by this plugin:

5 |
 warning  - Warning percentage (Default: 92)
 6 |  critical - Critical percentage (Default: 98)
7 |

MAGIC MARKERS

8 |
 #%# family=auto
 9 |  #%# capabilities=autoconf
10 |
11 | Source : http://gallery.munin-monitoring.org/ 12 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_disk_node_df_inode.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

df_inode - Plugin to monitor inode-usage.

3 |

NOTES

4 |

This plugin is meant to be generic unix but there will be specific kinks on each platform that may justify custom versions. It does not work on SunOS/Solaris/Cygwin.

5 |

CONFIGURATION

6 |

The following environment variables are used by this plugin:

7 |
 warning  - Warning percentage (Default: 92)
 8 |  critical - Critical percentage (Default: 98)
9 |

MAGIC MARKERS:

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_jenkins_node_jenkins_builds.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

jenkins_builds - Plugin to measure number of jenkins builds

3 |

AUTHOR

4 |

Contributed by Holger Levsen. I wrote and used them first for https://jenkins.debian.net and very much like to hear about other users of these plugins! Please do tell me!

5 |

Use at your own risk and monitor the ressource usage of the plugins too - it will vary depending on your setup!

6 |

Patches, postcards and pancakes are all very much welcome!

7 |

LICENSE

8 |

Copyright 2012-2014 Holger Levsen <holger@layer-acht.org>

9 |

Released under the GPLv2.

10 |

MAGIC MARKERS

11 |
 #%# family=auto
12 |  #%# capabilities=autoconf
13 |
14 | Source : http://gallery.munin-monitoring.org/ 15 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_jenkins_node_jenkins_builds_results.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

jenkins_builds_results - Plugin to measure number of jenkins builds

3 |

AUTHOR

4 |

Contributed by Holger Levsen. I wrote and used them first for https://jenkins.debian.net and very much like to hear about other users of these plugins! Please do tell me!

5 |

Use at your own risk and monitor the ressource usage of the plugins too - it will vary depending on your setup!

6 |

Patches, postcards and pancakes are all very much welcome!

7 |

LICENSE

8 |

Copyright 2012-2014 Holger Levsen <holger@layer-acht.org>

9 |

Released under the GPLv2.

10 |

MAGIC MARKERS

11 |
 #%# family=auto
12 |  #%# capabilities=autoconf
13 |
14 | Source : http://gallery.munin-monitoring.org/ 15 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_jenkins_node_jenkins_builds_results_summary.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

jenkins_builds_results_summary - Plugin to measure results of all jenkins builds

3 |

AUTHOR

4 |

Contributed by Holger Levsen. I wrote and used them first for https://jenkins.debian.net and very much like to hear about other users of these plugins! Please do tell me!

5 |

Use at your own risk and monitor the ressource usage of the plugins too - it will vary depending on your setup!

6 |

Patches, postcards and pancakes are all very much welcome!

7 |

LICENSE

8 |

Copyright 2012-2014 Holger Levsen <holger@layer-acht.org>

9 |

Released under the GPLv2.

10 |

MAGIC MARKERS

11 |
 #%# family=auto
12 |  #%# capabilities=autoconf
13 |
14 | Source : http://gallery.munin-monitoring.org/ 15 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_jenkins_node_jenkins_builds_running.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

jenkins_builds_running - Plugin to measure number of jenkins builds which are currently running

3 |

AUTHOR

4 |

Contributed by Holger Levsen. I wrote and used them first for https://jenkins.debian.net and very much like to hear about other users of these plugins! Please do tell me!

5 |

Use at your own risk and monitor the ressource usage of the plugins too - it will vary depending on your setup!

6 |

Patches, postcards and pancakes are all very much welcome!

7 |

LICENSE

8 |

Copyright 2012-2014 Holger Levsen <holger@layer-acht.org>

9 |

Released under the GPLv2.

10 |

MAGIC MARKERS

11 |
 #%# family=auto
12 |  #%# capabilities=autoconf
13 |
14 | Source : http://gallery.munin-monitoring.org/ 15 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_jenkins_node_jenkins_jobs.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

jenkins_jobs - Plugin to measure number of jenkins jobs

3 |

AUTHOR

4 |

Contributed by Holger Levsen. I wrote and used them first for https://jenkins.debian.net and very much like to hear about other users of these plugins! Please do tell me!

5 |

Use at your own risk and monitor the ressource usage of the plugins too - it will vary depending on your setup!

6 |

Patches, postcards and pancakes are all very much welcome!

7 |

LICENSE

8 |

Copyright 2012-2014 Holger Levsen <holger@layer-acht.org>

9 |

Released under the GPLv2.

10 |

MAGIC MARKERS

11 |
 #%# family=auto
12 |  #%# capabilities=autoconf
13 |
14 | Source : http://gallery.munin-monitoring.org/ 15 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mail_node_courier_mta_mailqueue.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

courier_mta_mailqueue - Plugin to monitor courier-mta mail spool

3 |

CONFIGURATION

4 |

Configuration variables:

5 |
 spooldir - Where to find mails in queue
6 |

The default configuration is:

7 |
 [courier_mta_mailqueue]
 8 |   env.spooldir /var/lib/courier/msgq/
9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |

BUGS

13 |

None known

14 |

AUTHOR

15 |

Rune Nordbøe Skillingstad <runesk@linpro.no>

16 |

LICENSE

17 |

Unknown

18 |
19 | Source : http://gallery.munin-monitoring.org/ 20 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mail_node_courier_mta_mailstats.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

courier_mta_mailstats - Plugin to monitor the number of mails delivered and rejected by courier-mta.

3 |

CONFIGURATION

4 |

The following environment variables are used:

5 |
 logdir  - Where to find logfiles (default "/var/log")
 6 |  logfile - What file to read in logdir (default "mail.log")
 7 |  courier - Path to "courier" (default "/usr/sbin/courier")
8 |

AUTHOR

9 |

Rune Nordbøe Skillingstad <runesk@linpro.no>

10 |

LICENSE

11 |

Unknown

12 |

MAGIC MARKERS

13 |
 #%# family=auto
14 |  #%# capabilities=autoconf
15 |
16 | Source : http://gallery.munin-monitoring.org/ 17 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mail_node_courier_mta_mailvolume.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

courier_mta_mailvolume - Plugin to monitor the volume og mails delivered by courier-mta

3 |

CONFIGURATION

4 |

The following environent variables are used by this plugin:

5 |
 logdir  - Where to find logfiles
 6 |  logfile - What file to read in logdir
7 |

AUTHOR

8 |

Rune Nordbøe Skillingstad <runesk@linpro.no>

9 |

LICENSE

10 |

GPLv2

11 |

MAGIC MARKERS

12 |
 #%# family=auto
13 |  #%# capabilities=autoconf
14 |
15 | Source : http://gallery.munin-monitoring.org/ 16 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mail_node_exim_mailqueue_alt.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

exim_mailqueue_alt - Plugin to monitor the exim mail queue

3 |

CONFIGURATION

4 |

The following environment variables are used by this plugin:

5 |
 exim      - exim binary location
 6 |  queuewarn - warning limit
 7 |  queuecrit - critical limit
8 |

The plugin needs to be run as the same user as exim, commonly "mail".

9 |

EXAMPLE CONFIGURATION

10 |
 [exim_mailqueue_alt]
11 |   user mail
12 |   env.queuewarn  2000
13 |   env.queuecrit 10000
14 |

For a Debian based system, a minimal example configuration would be:

15 |
 [exim_mailqueue_alt]
16 |   user Debian-exim
17 |

AUTHOR

18 |

Unknown author

19 |

LICENSE

20 |

GPLv2

21 |

MAGIC MARKERS

22 |
 #%# family=contrib
23 |  #%# capabilities=
24 |
25 | Source : http://gallery.munin-monitoring.org/ 26 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mail_node_postfix_mailstats.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

postfix_mailstats

3 |

4 |

postfix_mailstats - Plugin to monitor the number of mails delivered and rejected by postfix

5 |

CONFIGURATION

6 |

Configuration parameters for /etc/munin/postfix_mailstats, if you need to override the defaults below:

7 |
 [postfix_mailstats]
 8 |   env.logdir  - Which logfile to use
 9 |   env.logfile - What file to read in logdir
10 |

DEFAULT CONFIGURATION

11 |
 [postfix_mailstats]
12 |   env.logdir  /var/log
13 |   env.logfile mail.log
14 |

AUTHOR

15 |

Records show that the plugin was contributed by Nicolai Langfeldt in 2003. Nicolai can't find anything in his email about this and expects the plugin is based on the corresponding exim plugin - to which it now bears no resemblance.

16 |

LICENSE

17 |

GPLv2

18 |

MAGIC MARKERS

19 |
 #%# family=auto
20 |  #%# capabilities=autoconf
21 |
22 | Source : http://gallery.munin-monitoring.org/ 23 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mail_node_postfix_mailvolume.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

postfix_mailvolume - Plugin to monitor the volume of mails delivered by postfix.

3 |

APPLICABLE SYSTEMS

4 |

Any postfix.

5 |

CONFIGURATION

6 |

The following shows the default configuration.

7 |
  [postfix*]
 8 |     env.logdir /var/log
 9 |     env.logfile syslog
10 |

INTERPRETATION

11 |

The plugin shows the number of bytes of mail that has passed through the postfix installation.

12 |

MAGIC MARKERS

13 |
  #%# family=auto
14 |   #%# capabilities=autoconf
15 |

BUGS

16 |

None known

17 |

AUTHOR

18 |

Copyright (C) 2002-2008.

19 |

No author is documented.

20 |

LICENSE

21 |

GPLv2

22 |
23 | Source : http://gallery.munin-monitoring.org/ 24 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mail_node_qmailscan.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

qmailscan - Plugin to graph output from qmailscan and clamav

3 |

CONFIGURATION

4 |

No configuration necessary.

5 |

AUTHOR

6 |

Contributed by David Obando (david@cryptix.de) - 03.12.2005

7 |

LICENSE

8 |

GPLv2

9 |
10 | Source : http://gallery.munin-monitoring.org/ 11 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mail_node_sendmail_mailqueue.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

sendmail_mailqueue - Plugin to graph the sendmail queue size

3 |

CONFIGURATION

4 |

This plugin uses the following configuration variables

5 |
 [sendmail_mailqueue]
 6 |   env.mspqueue - MSQ queue directory
 7 |   env.mtaqueue - MTA queue directory
8 |

DEFAULT CONFIGURATION

9 |

The default configuration is

10 |
 [sendmail_mailqueue]
11 |   env.mspqueue /var/spool/mqueue-client
12 |   env.mtaqueue /var/spool/mqueue
13 |

AUTHOR

14 |

Unknown author

15 |

LICENSE

16 |

GPLv2

17 |

MAGIC MARKERS

18 |
 #%# family=auto
19 |  #%# capabilities=autoconf
20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mail_node_sendmail_mailstats.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

sendmail_mailstats - Plugin to monitor sendmail statistics

3 |

CONFIGURATION

4 |

This plugin uses the following configuration variables:

5 |
 [sendmail_mailstats]
 6 |   env.mailstats - Path to the "mailstats" command
7 |

DEFAULT CONFIGURATION

8 |

The default configuration for "mailstats" is to look for a binary called "mailstats" in PATH.

9 |

AUTHOR

10 |

Unknown author

11 |

LICENSE

12 |

GPLv2

13 |

MAGIC MARKERS

14 |
 #%# family=auto
15 |  #%# capabilities=autoconf
16 |
17 | Source : http://gallery.munin-monitoring.org/ 18 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mail_node_sendmail_mailtraffic.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

sendmail_mailtraffic - Plugin to monitor sendmail statistics

3 |

CONFIGURATION

4 |

This plugin uses the following configuration variables:

5 |
 [sendmail_mailstats]
 6 |   env.mailstats - Path to the "mailstats" command
7 |

DEFAULT CONFIGURATION

8 |

The default configuration for "mailstats" is to look for a binary called "mailstats" in PATH.

9 |

AUTHOR

10 |

Unknown author

11 |

LICENSE

12 |

GPLv2

13 |

MAGIC MARKERS

14 |
 #%# family=auto
15 |  #%# capabilities=autoconf
16 |
17 | Source : http://gallery.munin-monitoring.org/ 18 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mysql_node_mysql_bytes.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

mysql_bytes - Plugin to monitor the number of bytes sent from and received by mysql.

3 |

CONFIGURATION

4 |

The following environment variables are used:

5 |
 mysqlopts - Options to pass to mysql
 6 |  mysqladmin - Path to mysqladmin (default: "mysqladmin")
7 |

If mysqladmin is not set, this plugin uses the system PATH to find mysqladmin

8 |

AUTHOR

9 |

Unknown author

10 |

LICENSE

11 |

GPLv2

12 |

MAGIC MARKERS

13 |
  #%# family=manual
14 |   #%# capabilities=autoconf
15 |
16 | Source : http://gallery.munin-monitoring.org/ 17 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mysql_node_mysql_isam_space_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

mysql_isam_space_ - Wildcard plugin to monitor the percent of table space used on isam and myisam tables on a mysql server.

3 |

CONFIGURATION

4 |

Configuration parameters for /etc/munin/PLUGIN, if you need to override the defaults below:

5 |
 [mysql_isam_space_*]
 6 |   env.mysqlopts    - Options to pass to mysql
 7 |   env.statefile    - where to put the statefile
 8 |   env.ignore       - Tables to ignore. Regex.
 9 |   env.absolute     - use tables sizes, not percent of maximum
10 |

DEFAULT CONFIGURATION

11 |
 [mysql_isam_space_*]
12 |   env.mysqlopts
13 |   env.statefile $ENV{MUNIN_PLUGSTATE}/plugin-mysql_isam_space.state
14 |   env.ignore
15 |   env.absolute 0
16 |

AUTHOR

17 |

Unknown author

18 |

LICENSE

19 |

GPLv2

20 |

MAGIC MARKERS

21 |
 #%# family=contrib
22 |  #%# capabilities=suggest autoconf
23 |
24 | Source : http://gallery.munin-monitoring.org/ 25 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mysql_node_mysql_queries.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

mysql_queries - Munin plugin to display MySQL query rate.

3 |

APPLICABLE SYSTEMS

4 |

Any MySQL platform

5 |

CONFIGURATION

6 |
  [mysql*]
 7 |      user root
 8 |      env.mysqlopts <options-for-mysqladmin-here>
 9 |      env.mysqladmin <optional-override-of-mysqladmin-path>
10 |

It is most usual that root must run the mysqladmin command.

11 |

Only use the .env settings if you need to override the defaults.

12 |

INTERPRETATION

13 |

To Be Written

14 |

BUGS

15 |

None known

16 |

AUTHOR

17 |

Copyright 2003-2008 - Per Andreas Buer

18 |

LICENSE

19 |

GPLv2

20 |

MAGIC MARKERS

21 |
  #%# family=manual
22 |   #%# capabilities=autoconf
23 |
24 | Source : http://gallery.munin-monitoring.org/ 25 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mysql_node_mysql_slowqueries.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

mysql_slowqueries - Plugin to monitor the number of slow queries on a mysql-server

3 |

CONFIGURATION

4 |

The following environment variables are used by this plugin:

5 |
 mysqlopts - Options to pass to mysql
6 |

AUTHOR

7 |

Unknown author

8 |

LICENSE

9 |

GPLv2

10 |

MAGIC MARKERS

11 |
 #%# family=manual
12 |  #%# capabilities=autoconf
13 |
14 | Source : http://gallery.munin-monitoring.org/ 15 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_mysql_node_mysql_threads.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

mysql_threads - Plugin to monitor the number of threads on a mysql-server.

3 |

CONFIGURATION

4 |

Configuration parameters for /etc/munin/mysql_threads, if you need to override the defaults below:

5 |
 [mysql_threads]
 6 |   env.mysqlopts    - Options to pass to mysql
7 |

DEFAULT CONFIGURATION

8 |
 [mysql_threads]
 9 |   env.mysqlopts
10 |

AUTHOR

11 |

Unknown author

12 |

LICENSE

13 |

GPLv2

14 |

MAGIC MARKERS

15 |
 #%# family=manual
16 |  #%# capabilities=autoconf
17 |
18 | Source : http://gallery.munin-monitoring.org/ 19 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_aix_netstat.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

netstat - Plugin to monitor network connections

3 |

CONFIGURATION

4 |

No configuration

5 |

NOTES

6 |

DESCRIPTION

7 |

This will measure the amount of network traffic coming into and out of the server. It will report back the number of connections accepted, requested, established, and closed. It uses /usr/bin/netstat to gather it's information.

8 |

RESTRICTIONS

9 |

None known. /usr/bin/netstat should be executable by everyone by default.

10 |

AUTHOR

11 |

Unknown author

12 |

LICENSE

13 |

GPLv2

14 |

MAGIC MARKERS

15 |
 #%# family=auto
16 |  #%# capabilities=autoconf
17 |
18 | Source : http://gallery.munin-monitoring.org/ 19 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_cygwin_netstat.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

netstat - Plugin to monitor network connections

3 |

APPLICABLE SYSTEMS

4 |

Cygwin on NT-based Windows.

5 |

CONFIGURATION

6 |

No configuration

7 |

AUTHOR

8 |

Erik Inge Bolsø <knan-munin@anduin.net>

9 |

Based on node.d.linux/netstat, by unknown author.

10 |

LICENSE

11 |

GPLv2

12 |

MAGIC MARKERS

13 |
 #%# family=auto
14 |  #%# capabilities=autoconf
15 |
16 | Source : http://gallery.munin-monitoring.org/ 17 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_darwin_if_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

if_ - Wildcard-plugin to monitor traffic on network interfaces

3 |

CONFIGURATION

4 |

WILDCARD PLUGIN

5 |

This is a wildcard plugin. To monitor an interface, link if_<interface> to this file. E.g.

6 |
  ln -s /usr/share/node/node/plugins-auto/if_ \
 7 |         /etc/munin/node.d/if_en0
8 |

...will monitor en0.

9 |

NOTES

10 |

Any device found in netstat -ib can be monitored. Examples include en*, fw* and lo (the latter is not monitored by default). Please note that aliases cannot be monitored with this plugin.

11 |

AUTHOR

12 |

Unknown author

13 |

LICENSE

14 |

Unknownl LICENSE

15 |

MAGIC MARKERS

16 |
 #%# family=auto
17 |  #%# capabilities=autoconf suggest
18 |
19 | Source : http://gallery.munin-monitoring.org/ 20 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_darwin_if_err_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

if_err_ - Wildcard-plugin to monitor errors on network interfaces

3 |

CONFIGURATION

4 |

WILDCARD PLUGIN

5 |

This is a wildcard plugin. To monitor an interface, link if_err_<interface> to this file. E.g.

6 |
  ln -s /usr/share/node/node/plugins-auto/if_err_ \
 7 |         /etc/munin/node.d/if_err_en0
8 |

...will monitor en0.

9 |

NOTES

10 |

Any device found in netstat -ib can be monitored. Examples include en*, fw* and lo (the latter is not monitored by default). Please note that aliases cannot be monitored with this plugin.

11 |

AUTHOR

12 |

Unknown author

13 |

LICENSE

14 |

Unknownl LICENSE

15 |

MAGIC MARKERS

16 |
 #%# family=auto
17 |  #%# capabilities=autoconf suggest
18 |
19 | Source : http://gallery.munin-monitoring.org/ 20 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_freebsd_netstat.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

netstat - Plugin to monitor network connections

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Unknown author

7 |

LICENSE

8 |

GPLv2

9 |

BUGS

10 |

MAGIC MARKERS

11 |
 #%# family=auto
12 |  #%# capabilities=autoconf
13 |
14 | Source : http://gallery.munin-monitoring.org/ 15 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_linux_bonding_err_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

bonding_err_ - Wildcard plugin to graph bonding interface errors

3 |

CONFIGURATION

4 |

This is a wildcard plugin. The link name extension is the bonding interface to monitor.

5 |

AUTHORS

6 |

Copyright Bjørn Ruberg 2009

7 |

LICENSE

8 |

Gnu GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf suggest
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_linux_cps_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

cps_ - Plugin to monitor connections per second, for LVS loadbalancers.

3 |

USAGE

4 |

Create a service link in /etc/munin/plugins/ and restart the munin-node.

5 |

As this is a wildcard plugin it expects to get parameters via name of the service link.

6 |
7 |
8 | Wildcard names 9 |
10 |
11 |
 cps_<port>
12 |  cps_<vip>_<port>
13 |
14 |
15 | Examples 16 |
17 |
18 |
 cps_smtp
19 |  cps_mail.foo.boo_smtp
20 |  cps_pop3
21 |  cps_www.foo.boo_www
22 |  cps_vvv.foo.boo_www
23 |
24 |
25 |

AUTHOR

26 |

Unknown

27 |

MAGIC MARKERS

28 |
  #%# family=auto
29 |   #%# capabilities=autoconf suggest
30 |
31 | Source : http://gallery.munin-monitoring.org/ 32 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_linux_fw_forwarded_local.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

fw_forwarded_local - Plugin to monitor network connections.

3 |

CONFIGURATION

4 |

This plugin must run with root privileges

5 |

CONFIGURATION EXAMPLE

6 |

/etc/munin/plugin-conf.d/global or other file in that dir must contain:

7 |
 [fw_*]
 8 |   user root
9 |

NOTES

10 | 14 |

AUTHORS

15 |

2011.09.23: Perl version by Alex Tomlins

16 |

MAGIC MARKERS

17 |
 #%# family=auto
18 |  #%# capabilities=autoconf
19 |
20 | Source : http://gallery.munin-monitoring.org/ 21 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_linux_fw_packets.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

fw_packets - Plugin to monitor the throuhgput of a firewall

3 |

CONFIGURATION

4 |

This plugin must run with root privileges

5 |

CONFIGURATION EXAMPLE

6 |

/etc/munin/plugin-conf.d/global or other file in that dir must contain:

7 |
 [fw*]
 8 |   user root
9 |

AUTHOR

10 |

Unknown author

11 |

LICENSE

12 |

GPLv2

13 |

MAGIC MARKERS

14 |
 #%# family=auto
15 |  #%# capabilities=autoconf
16 |
17 | Source : http://gallery.munin-monitoring.org/ 18 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_linux_if_err_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

if_err_ - Wildcard plugin to monitor errors, packet drops, and collisions of network interfaces

3 |

CONFIGURATION

4 |

This is a wildcard plugin. To monitor an interface, link if_err_<interface> to this file. E.g.

5 |
  ln -s /usr/share/munin/plugins/if_err_ \
 6 |         /etc/munin/plugins/if_err_eth0
7 |

...will monitor eth0.

8 |

This plugin does not use environment variables.

9 |

USAGE

10 |

Any device found in /proc/net/dev can be monitored. Examples include ipsec*, eth*, irda* and lo.

11 |

Please note that aliases cannot be monitored with this plugin.

12 |

AUTHOR

13 |

Unknown author

14 |

LICENSE

15 |

GPLv2

16 |

MAGIC MARKERS

17 |
 #%# family=auto
18 |  #%# capabilities=autoconf suggest
19 |
20 | Source : http://gallery.munin-monitoring.org/ 21 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_linux_netstat.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

netstat

3 |

4 |

netstat - Plugin to monitor network connections

5 |

CONFIGURATION

6 |

No configuration

7 |

AUTHOR

8 |

Unknown author

9 |

LICENSE

10 |

GPLv2

11 |

BUGS

12 |
13 |
14 | SuSE: passive connections rejected 15 |
16 |
17 |

At least one SuSE netstat appears to report "passive connections rejected because of time stamp"

18 |

We have never seen that, patch requested.

19 |
20 |
21 |

MAGIC MARKERS

22 |
 #%# family=auto
23 |  #%# capabilities=autoconf
24 |
25 | Source : http://gallery.munin-monitoring.org/ 26 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_linux_netstat_multi.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

netstat_multi - Munin plugin to monitor verbose Network statistics

3 |

APPLICABLE SYSTEMS

4 |

Works on any Linux-system with /proc/net/snmp and /proc/net/netstat.

5 |

CONFIGURATION

6 |

No configuration needed.

7 |

INTERPRETATION

8 |

Each graph uses data from the proc filesystem.

9 |

MAGIC MARKERS

10 |
 #%# family=contrib
11 |  #%# capabilities=autoconf multigraph
12 |

PATCHES-TO

13 |

The munin-project.

14 |

AUTHOR

15 |

Trygve Vea <tv@redpill-linpro.com> Ørjan Ommundsen <orjan@redpill-linpro.com>

16 |

LICENSE

17 |

GPLv2

18 |
19 | Source : http://gallery.munin-monitoring.org/ 20 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_linux_port_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

port_ - Munin wildcard plugin to monitor netwok port usage.

3 |

CONFIGURATION

4 |

To monitor a port link port_<service> to this file. E.g.

5 |
  ln -s /usr/share/munin/plugins/port_ /etc/munin/plugins/port_ssh
6 |

will monitor ssh connections. Services are those from /etc/services or a numeric port number.

7 |

MAGIC MARKERS

8 |
  #%# family=manual
 9 |   #%# capabilities=autoconf suggest
10 |

BUGS

11 |

The plugin doesnt count the tcp6 connections if tcp and tcp6 is used.

12 |

AUTHOR

13 |

Unknown

14 |

LICENSE

15 |

GPLv2

16 |
17 | Source : http://gallery.munin-monitoring.org/ 18 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_linux_tcp.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

tcp

3 |

4 |

tcp - Plugin to monitor IPV4/6 TCP socket status on a Linux host.

5 |

AUTHOR

6 |

Copyright 2009 Tim Small <tim@seoss.co.uk>

7 |

LICENSE

8 |

GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=manual
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_node_http_loadtime.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

http_loadtime - Plugin to graph the HTTP response times of specific pages

3 |

CONFIGURATION

4 |

The following environment variables are used by this plugin

5 |
 target - comma separated URL(s) to fetch (default: "http://localhost/")
 6 |  example:
 7 |    [http_loadtime]
 8 |    env.target http://localhost.de,http://localhost.de/some-site.html
 9 |    env.requisites true
10 | 
11 |  Do not enable the download of page requisites (env.requisites) for https
12 |  sites since wget needs incredible long to perform this on big sites...
13 |

AUTHOR

14 |

Unknown authors (2013) Axel Huebl

15 |

LICENSE

16 |

GPLv2

17 |

MAGIC MARKERS

18 |
 #%# family=auto
19 |  #%# capabilities=autoconf
20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_node_netstat.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

netstat - Plugin to monitor network connections.

3 |

CONFIGURATION

4 |

No configuration for this plugin

5 |

AUTHOR

6 |

Unknown author

7 |

LICENSE

8 |

GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_node_openvpn.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

openvpn - Plugin to monitor number of users connected to openvpn server

3 |

USAGE

4 |

To use this plugin, add the following text to your openvpn server configuration file:

5 |
 status /var/log/openvpn.status
 6 |  status-version 1
7 |

If you change the path to the status file, remember to change env.statusfile in the plugin configuration to match the new path.

8 |

CONFIGURATION

9 |

This script uses the following configuration variables

10 |
 [openvpn]
11 |   env.statusfile <path to status log file>
12 |

DEFAULT CONFIGURATION

13 |

The default configuration is

14 |
 [openvpn]
15 |   env.statusfile /var/log/openvpn.status
16 |

AUTHOR

17 |

Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>

18 |

LICENSE

19 |

Gnu GPLv2

20 |

MAGIC MARKERS

21 |
 #%# family=contrib
22 |  #%# capabilities=autoconf
23 |
24 | Source : http://gallery.munin-monitoring.org/ 25 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_openbsd_netstat.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

netstat - Plugin to monitor network connections

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Unknown author

7 |

LICENSE

8 |

GPLv2

9 |

BUGS

10 |

MAGIC MARKERS

11 |
 #%# family=auto
12 |  #%# capabilities=autoconf
13 |
14 | Source : http://gallery.munin-monitoring.org/ 15 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_sunos_if_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

if_ - Wildcard plugin to monitor traffic network interfaces

3 |

CONFIGURATION

4 |

ENVIRONMENT VARIABLES

5 |

This plugin does not use environment variables

6 |

WILDCARD PLUGIN

7 |

This is a wildcard plugin. To monitor an interface, link if_<interface> to this file. E.g.

8 |
  ln -s /usr/share/munin/plugins/if_ \
 9 |         /etc/munin/node.d/if_eth0
10 |

...will monitor eth0.

11 |

Any device found in /usr/bin/kstat can be monitored.

12 |

AUTHOR

13 |

Unknown author

14 |

LICENSE

15 |

GPLv2

16 |

MAGIC MARKERS

17 |
 #%# family=auto
18 |  #%# capabilities=autoconf suggest
19 |
20 | Source : http://gallery.munin-monitoring.org/ 21 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_sunos_if_err_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

if_err_ - Wildcard plugin to monitor errors on network interfaces

3 |

CONFIGURATION

4 |

ENVIRONMENT VARIABLES

5 |

This plugin does not use environment variables

6 |

WILDCARD PLUGIN

7 |

This is a wildcard plugin. To monitor an interface, link if_<interface> to this file. E.g.

8 |
  ln -s /usr/share/munin/plugins-auto/if_err_ \
 9 |         /etc/munin/node.d/if_err_eth0
10 |

...will monitor eth0.

11 |

Any device found in /usr/bin/kstat can be monitored.

12 |

AUTHOR

13 |

Unknown author

14 |

LICENSE

15 |

GPLv2

16 |

MAGIC MARKERS

17 |
 #%# family=auto
18 |  #%# capabilities=autoconf suggest
19 |
20 | Source : http://gallery.munin-monitoring.org/ 21 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_network_sunos_netstat.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

netstat - Plugin to monitor network connections

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Unknown author

7 |

LICENSE

8 |

GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_nfs_linux_nfs4_client.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

nfs4_client - Plugin to monitor NFSv4 client traffic

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Unknown author

7 |

LICENSE

8 |

GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_nfs_linux_nfs_client.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

nfs_client - Plugin to monitor NFS client traffic

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Unknown author

7 |

LICENSE

8 |

GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_nfs_linux_nfsd.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

nfsd - Plugin to monitor NFS server activity

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHORS

6 |

Plugin created by Alexandre Dupouy, with the assistance of Mike Fedyk

7 |

LICENSE

8 |

GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_nfs_linux_nfsd4.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

nfsd4 - Plugin to graph NFSv4 server activity

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

2007/10/28 21:30:00 Christian Kujau <lists@nerdbynature.de>

7 |

LICENSE

8 |

GPLv2

9 |

NOTES

10 |

[...] based on the nfsd plugin by Alexandre Dupouy =head1 MAGIC MARKERS

11 |
 #%# family=auto
12 |  #%# capabilities=autoconf
13 |
14 | Source : http://gallery.munin-monitoring.org/ 15 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_nfs_netbsd_nfs_client.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

nfs_client - Plugin to monitor NFS client traffic

3 |

NOTES

4 |

Revision 1.1.1.1 2006/06/04 20:53:57 he

5 |

Import the client version of the Munin system monitoring/graphing tool -- project homepage is at http://munin.sourceforge.net/

6 |

This package has added support for NetBSD, via a number of new plugin scripts where specific steps needs to be taken to collect information.

7 |

I also modified the ntp_ plugin script to make it possible to not plot the NTP poll delay, leaving just jitter and offset, which IMO produces a more telling graph.

8 |

AUTHOR

9 |

Unknown author

10 |

CVS revision indicates checkin by "he". See "NOTES" for more information.

11 |

LICENSE

12 |

GPLv2

13 |

MAGIC MARKERS

14 |
 #%# family=auto
15 |  #%# capabilities=autoconf
16 |
17 | Source : http://gallery.munin-monitoring.org/ 18 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_postgresql_node_postgres_streaming_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

postgres_streaming_ - Plugin to monitor PostgreSQL streaming replication lag.

3 |

CONFIGURATION

4 |

The configuration for the database connections need to be made in pg_service.conf (see the PostgreSQL documentation). To specify which cluster to monitor, link this plugin to postgres_streaming_<master>:<slave>, where <master> and <slave> are the names of the services specified in pg_service.conf.

5 |

SEE ALSO

6 |

MAGIC MARKERS

7 |
 #%# family=manual
8 |

AUTHOR

9 |

Magnus Hagander <magnus@hagander.net>, Redpill Linpro AB

10 |

COPYRIGHT/License.

11 |

Copyright (c) 2010 Magnus Hagander, Redpill Linpro AB

12 |

All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 dated June, 1991.

13 |
14 | Source : http://gallery.munin-monitoring.org/ 15 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_printing_node_cupsys_pages.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

cupsys_pages - Plugin to monitor number of pages pr printer printed by CUPS

3 |

CONFIGURATION

4 |

The following environment variables are used

5 |
 logdir   - Which logfile to use
 6 |  logfile  - What file to read in logdir
 7 |  maxlabel - Maximum printers to plot
8 |

AUTHOR

9 |

Copyright 2004 Rune Nordbøe Skillingstad <rune@skillingstad.no>

10 |

LICENSE

11 |

GPLv2

12 |

MAGIC MARKERS

13 |
 #%# family=auto
14 |  #%# capabilities=autoconf
15 |
16 | Source : http://gallery.munin-monitoring.org/ 17 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_printing_node_lpstat.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

lpstat - Plugin to graph the queue size for the list of printers available through the command "lpstat"

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHORS

6 |

Anstat Pty Ltd Nikolai Langfeldt

7 |

LICENSE

8 |

Gnu GPL

9 |

NOTES

10 |

This script was initially developed by Anstat Pty Ltd for internal use and has kindly been made available to the Open Source community for redistribution and further development under the terms of the GNU General Public License: http://www.gnu.org/licenses/gpl.html

11 |

Readapted to munin by Nikolai Langfeldt for Oslo Airport

12 |

MAGIC MARKERS

13 |
 #%# family=auto
14 |  #%# capabilities=autoconf
15 |
16 | Source : http://gallery.munin-monitoring.org/ 17 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_processes_linux_proc_pri.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

proc_pri - Munin-plugin to monitor the processes priority on a Linux machine

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Lars Strand

7 |

LICENSE

8 |

GNU GPL

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_processes_linux_threads.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

threads - Plugin to monitor the number of threads on Linux

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Lars Strand

7 |

LICENSE

8 |

GNU GPL

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_processes_node_processes.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

processes - Plugin to monitor processes and process states.

3 |

ABOUT

4 |

This plugin requires munin-server version 1.2.5 or 1.3.3 (or higher).

5 |

This plugin is backwards compatible with the old processes-plugins found on SunOS, Linux and *BSD (i.e. the history is preserved).

6 |

All fields have colours associated with them which reflect the type of process (sleeping/idle = blue, running = green, stopped/zombie/dead = red, etc.)

7 |

CONFIGURATION

8 |

No configuration for this plugin.

9 |

AUTHOR

10 |

Copyright (C) 2006 Lars Strand

11 |

LICENSE

12 |

GNU General Public License, version 2

13 |

MAGIC MARKERS

14 |
 #%# family=auto
15 |  #%# capabilities=autoconf
16 |
17 | Source : http://gallery.munin-monitoring.org/ 18 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_processes_node_ps_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

ps_ - Wildcard plugin to monitor number of processes

3 |

CONFIGURATION

4 |

This is a wildcard plugin. The wildcard prefix link name should be the process name to monitor.

5 |

This plugin uses the following configuration variables:

6 |
 [ps_*]
 7 |   env.regex - Regular expression used to filter output from pgrep / ps.
8 |

Whatever matches this regular expression is included in the count.

9 |

DEFAULT CONFIGURATION

10 |

The default configuration is to set "env.regex" to the link name prefix.

11 |

EXAMPLE WILDCARD USAGE

12 |

ln -s /usr/share/munin/node/plugins-auto/ps_ /etc/munin/node.d/ps_exim

13 |

...will monitor number of exim-processes.

14 |

AUTHOR

15 |

Unknown author

16 |

LICENSE

17 |

GPLv2

18 |

MAGIC MARKERS

19 |
 #%# family=auto
20 |  #%# capabilities=autoconf suggest
21 |
22 | Source : http://gallery.munin-monitoring.org/ 23 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_processes_node_psu_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

psu_ - Wildcard plugin to graph the number of processes by a given user.

3 |

CONFIGURATION

4 |

This is a wildcard plugin. The link name extension is the user name we wish to graph.

5 |

Example:

6 |
 ln -s /usr/share/munin/plugins/psu_ /etc/munin/plugins/psu_foo
7 |

...will monitor the user "foo"

8 |

AUTHORS

9 |

Unknown author

10 |

LICENSE

11 |

GPLv2

12 |

BUGS

13 |

Plugin is "autoconf suggest", but "suggest" will always return no suggestions.

14 |

MAGIC MARKERS

15 |
 #%# family=manual
16 |  #%# capabilities=autoconf suggest
17 |
18 | Source : http://gallery.munin-monitoring.org/ 19 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_processes_node_vmstat.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

vmstat - Plugin to monitor the number of processes in io-sleep and other wait states.

3 |

CONFIGURATION

4 |

No configuration

5 |

NOTES

6 |

Uses the command "vmstat"

7 |

AUTHOR

8 |

Unknown author

9 |

LICENSE

10 |

GPLv2

11 |

MAGIC MARKERS

12 |
 #%# family=auto
13 |  #%# capabilities=autoconf
14 |
15 | Source : http://gallery.munin-monitoring.org/ 16 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_samba_node_samba.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

samba - Plugin to monitor number of files held open by the CIFS clients

3 |

CONFIGURATION

4 |

This plugin uses the following configuration variables

5 |
 [samba]
 6 |   env.smbstatus      - Path to "smbstatus" executable
 7 |   env.ignoreipcshare - Set this variable to ignore IPC$ when counting shares.
8 |

AUTHOR

9 |

Unknown author

10 |

LICENSE

11 |

GPLv2

12 |

MAGIC MARKERS

13 |
 #%# family=contrib
14 |  #%# capabilities=autoconf
15 |
16 | Source : http://gallery.munin-monitoring.org/ 17 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_security_linux_apt_all.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

apt_all - Plugin to monitor packages that should be installed on systems using apt-get (mostly Debian, but also RedHat).

3 |

NOTES

4 |

The differences between this plugin and the apt plugins, is that this plugin separates each distro with its own plot, and actually draws graphs.

5 |

CONFIGURATION

6 |

No configuration needed

7 |

MAGIC MARKERS

8 |
 #%# family=manual
 9 |  #%# capabilities=autoconf
10 |
11 | Source : http://gallery.munin-monitoring.org/ 12 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_sensors_node_cmc_tc_sensor_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

cmc_tc_sensor_ - Wildcard plugin for monitoring CMC temperature sensors via SNMP

3 |

CONFIGURATION

4 |

This is a wildcard plugin. The plugin link name prefix (after the final "_") should be a hostname to contact via SNMP.

5 |

This plugin does not use configuration environment variables.

6 |

AUTHOR

7 |

Unknown author

8 |

LICENSE

9 |

GPLv2

10 |

BUGS

11 |

Possibly misnamed. Candidate to be snmp__cmctcsensor_

12 |

MAGIC MARKERS

13 |
 #%# family=contrib
14 |  #%# capabilities=suggest
15 |
16 | Source : http://gallery.munin-monitoring.org/ 17 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_sensors_node_ipmi_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

ipmi_ - Plugin to monitor temperature or fan speed using IPMI

3 |

CONFIGURATION

4 |

ENVIRONMENT VARIABLES

5 |

This plugin does not use environment variables

6 |

WILDCARD PLUGIN

7 |

This plugin should be linked as ipmi_temp or ipmi_fans, and will show either temperatures or fan speeds based on its link name.

8 |

NOTE

9 |

WARNING: Munin has a 10 second default timeout on plugins. On some hosts ipmitool takes longer than that to probe all your hardware. In this case this plugin us unusable.

10 |

AUTHOR

11 |

Nicolai Langfeldt <janl@linpro.no>

12 |

LICENSE

13 |

Donated to the public domain by Nicolai Langfeldt (janl@linpro.no)

14 |

MAGIC MARKERS

15 |
 #%# family=auto
16 |  #%# capabilities=autoconf suggest
17 |
18 | Source : http://gallery.munin-monitoring.org/ 19 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_sensors_node_ipmi_sensor_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

ipmi_sensor_ - Wildcard plugin for the sensors data provided by ipmi

3 |

AUTHOR

4 |

Copyright (c) 2006 Logilab

5 |

Inspired by code written by Peter Palfrader

6 |

CONFIGURATION

7 |

ipmitool probably needs to be run as root, and it may take more than 10 seconds on some hosts.

8 |

Add the following to your /etc/munin/munin-node:

9 |
 [ipmi_sensor_*]
10 |   user root
11 |   timeout 20
12 |

This plugin does not use environment variables (see section BUGS)

13 |

LICENSE

14 |

GNU GPLv2 or any later version

15 |

BUGS

16 |

Plugin reads /etc/munin/ipmi directly, instead of reading environment variables.

17 |

MAGIC MARKERS

18 |
 #%# capabilities=autoconf suggest
19 |  #%# family=contrib
20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_sensors_sunos_temperature.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

temperature - Plugin to monitor temperature inside Sun systems

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

2004/04/16 Richard van den Berg <richard@vdberg.org>

7 |

LICENSE

8 |

GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_snort_node_snort_alerts.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

snort_alerts - Plugin to monitor the number of alerts in Snort

3 |

CONFIGURATION

4 |

The following configuration variables are used by this plugin

5 |
 [snort_alerts]
 6 |   env.statsfile - Logfile to Snort's perfmonitor logfile
 7 |   env.warning - Warning percentage
 8 |   env.critical - Critical percentage
9 |

DEFAULT CONFIGURATION

10 |
 [snort_alerts]
11 |   env.statsfile=/var/snort/snort.stats
12 |

AUTHORS

13 |

Copyright (C) 2009 Edward Bjarte Fjellskål

14 |

Copyright (C) 2010 Rado Rovny

15 |

LICENSE

16 |

GNU GPLv2

17 |

MAGIC MARKERS

18 |
  #%# family=auto
19 |   #%# capabilities=autoconf
20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_snort_node_snort_bytes_pkt.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

snort_bytes_pkt - Plugin to monitor average size in KBytes per packet

3 |

CONFIGURATION

4 |

The following configuration variables are used by this plugin

5 |
 [snort_bytes_pkt]
 6 |   env.statsfile - Logfile to Snort's perfmonitor logfile
 7 |   env.warning - Warning percentage
 8 |   env.critical - Critical percentage
9 |

DEFAULT CONFIGURATION

10 |
 [snort_bytes_pkt]
11 |   env.statsfile=/var/snort/snort.stats
12 |

AUTHORS

13 |

Copyright (C) 2009 Edward Bjarte Fjellskål

14 |

Copyright (C) 2010 Rado Rovny

15 |

LICENSE

16 |

GNU GPLv2

17 |

MAGIC MARKERS

18 |
  #%# family=auto
19 |   #%# capabilities=autoconf
20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_snort_node_snort_drop_rate.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

snort_droprate - Plugin to monitor Snort packet drop rate

3 |

CONFIGURATION

4 |

The following configuration variables are used by this plugin

5 |
 [snort_droprate]
 6 |   env.statsfile - Logfile to Snort's perfmonitor logfile
 7 |   env.warning - Warning percentage
 8 |   env.critical - Critical percentage
9 |

DEFAULT CONFIGURATION

10 |
 [snort_drop_rate]
11 |   env.statsfile=/var/snort/snort.stats
12 |

AUTHORS

13 |

Copyright (C) 2009 Edward Bjarte Fjellskål

14 |

Copyright (C) 2010 Rado Rovny

15 |

LICENSE

16 |

GNU GPLv2

17 |

MAGIC MARKERS

18 |
  #%# family=auto
19 |   #%# capabilities=autoconf
20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_snort_node_snort_pattern_match.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

snort_pattmatch - Plugin to monitor percent of data received that Snort processes in pattern matching.

3 |

CONFIGURATION

4 |

The following configuration variables are used by this plugin

5 |
 [snort_pattern_match]
 6 |   env.statsfile - Logfile to Snort's perfmonitor logfile
 7 |   env.warning - Warning percentage
 8 |   env.critical - Critical percentage
9 |

DEFAULT CONFIGURATION

10 |
 [snort_pattern_match]
11 |   env.statsfile=/var/snort/snort.stats
12 |

AUTHORS

13 |

Copyright (C) 2009 Edward Bjarte Fjellskål

14 |

Copyright (C) 2010 Rado Rovny

15 |

LICENSE

16 |

GNU GPLv2

17 |

MAGIC MARKERS

18 |
  #%# family=auto
19 |   #%# capabilities=autoconf
20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_snort_node_snort_pkts.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

snort_pktsec - Plugin to monitor the number of packets per second passed through Snort filters

3 |

CONFIGURATION

4 |

The following configuration variables are used by this plugin

5 |
 [snort_pkts]
 6 |   env.statsfile - Logfile to Snort's perfmonitor logfile
 7 |   env.warning - Warning percentage
 8 |   env.critical - Critical percentage
9 |

DEFAULT CONFIGURATION

10 |
 [snort_pkts]
11 |   env.statsfile=/var/snort/snort.stats
12 |

AUTHORS

13 |

Copyright (C) 2009 Edward Bjarte Fjellskål

14 |

Copyright (C) 2010 Rado Rovny

15 |

LICENSE

16 |

GNU GPLv2

17 |

MAGIC MARKERS

18 |
  #%# family=auto
19 |   #%# capabilities=autoconf
20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_snort_node_snort_traffic.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

snort_traffic - Plugin to monitor Snort traffic in Mbites per second

3 |

CONFIGURATION

4 |

The following configuration variables are used by this plugin

5 |
 [snort_traffic]
 6 |   env.statsfile - Logfile to Snort's perfmonitor logfile
 7 |   env.warning - Warning percentage
 8 |   env.critical - Critical percentage
9 |

DEFAULT CONFIGURATION

10 |
 [snort_traffic]
11 |   env.statsfile=/var/snort/snort.stats
12 |

AUTHORS

13 |

Copyright (C) 2009 Edward Bjarte Fjellskål

14 |

Copyright (C) 2010 Rado Rovny

15 |

LICENSE

16 |

GNU GPLv2

17 |

MAGIC MARKERS

18 |
  #%# family=auto
19 |   #%# capabilities=autoconf
20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_aix_cpu.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

cpu - Plugin to monitor CPU usage on AIX (4.3.3 and 5.x)

3 |

CONFIGURATION

4 |

No configuration

5 |

NOTES

6 |

DESCRIPTION

7 |

This will monitor the cpu usage on your server. It measures the amount of time spent on user requests, system requests, in iowait, and finally in idle. It uses /usr/bin/iostat, which is usually installed.

8 |

RESTRICTIONS

9 |

None known of. Should be safe to run this under any user -- this is not restricted to root.

10 |

AUTHOR

11 |

Developed 05/28/2003 by Mike Discenza <mike.discenza@dillards.com>

12 |

LICENSE

13 |

GPLv2

14 |

MAGIC MARKERS

15 |
 #%# family=contrib
16 |  #%# capabilities=autoconf
17 |
18 | Source : http://gallery.munin-monitoring.org/ 19 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_aix_load.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

load - Script to monitor load average

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Unknown author

7 |

LICENSE

8 |

GPLv2

9 |

NOTES

10 |

DESCRIPTION

11 |

This will report back the 5-minute average load of the system. It uses /usr/bin/uptime, /usr/bin/printf, /usr/bin/sed, /usr/bin/awk.

12 |

RESCTRICTIONS

13 |

None, unless you have restricted who can use /usr/bin/uptime.

14 |

MAGIC MARKERS

15 |
 #%# family=contrib
16 |  #%# capabilities=autoconf
17 |
18 | Source : http://gallery.munin-monitoring.org/ 19 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_aix_memory.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

memory - Plugin to monitor memory usage on AIX

3 |

CONFIGURATION

4 |

This script uses /usr/bin/svmon to monitor memory usage. svmon can only be executed by root, so you need the following configuration for this plugin:

5 |
 [memory]
 6 |   user root
7 |

AUTHOR

8 |

Developed 05/28/2003 by Mike Discenza <mike.discenza@dillards.com>

9 |

LICENSE

10 |

GPLv2

11 |

NOTES

12 |

DESCRIPTION

13 |

This will report back the amount of memory currently in use, pages pinned in memory, the amount of free memory, and the amount of swap space being used. It uses /usr/bin/svmon, /usr/sbin/lsps, and /usr/sbin/lsattr.

14 |

RESTRICTIONS

15 |

/usr/bin/svmon can only be executed by root. The other commands (lsps, lsattr) should be executable by everyone be defualt.

16 |

MAGIC MARKERS

17 |
 #%# family=contrib
18 |  #%# capabilities=autoconf
19 |
20 | Source : http://gallery.munin-monitoring.org/ 21 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_aix_swap.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

swap - Plugin to monitor memory usage on AIX

3 |

COFIGURATION

4 |

No configuration

5 |

NOTES

6 |

This will measure the total amount of swap/paging space available on the server, and will also measure how much of that swap space is being used. It uses /usr/sbin/lsps to find all this out. If you have more than one paging space they will be added together, so will the total amount of space used. This is the total amount used after all.

7 |

AUTHOR

8 |

Developed 05/28/2003 by Mike Discenza <mike.discenza@dillards.com>

9 |

LICENSE

10 |

GPLv2

11 |

MAGIC MARKERS

12 |
 #%# family=contrib
13 |  #%# capabilities=autoconf
14 |
15 | Source : http://gallery.munin-monitoring.org/ 16 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_darwin_load.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

load - Plugin to monitor the load average on a system.

3 |

CONFIGURATION

4 |

The following environment variables are used by this plugin

5 |
6 |
7 | load_warn <load> 8 |
9 |
10 |

Warning threshold for load (Default: 10)

11 |
12 |
13 | load_crit <load> 14 |
15 |
16 |

Critical threshold for load (Default: 120)

17 |
18 |
19 |

AUTHOR

20 |

Unknown author

21 |

LICENSE

22 |

Unknownl LICENSE

23 |

MAGIC MARKERS

24 |
 #%# family=auto
25 |  #%# capabilities=autoconf
26 |
27 | Source : http://gallery.munin-monitoring.org/ 28 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_hp-ux_sar_cpu.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

cpu - Plugin to monitor CPU usage

3 |

HP-UX port from original cpu plugin, here using sar instead of Solaris' kstat. Also note that kstat as well as Linux /proc/stat use counters (of cpu cycles?), whereas sar merely displays percentages (hopefully this comes close enough)

4 |

CONFIGURATION

5 |

Your may adapt the following parameters to your needs. The values shown here are the defaults

6 |
 [sar_cpu]
 7 |      env.SYSWPCT 30     # System percentage to warn at
 8 |      env.SYSCPCT 50     # System percentage where we're critical
 9 |      env.USRWPCT 80     # User percentage to warn at
10 |      env.scaleto100 1   # Graph in percent rather than absolute ncpu
11 |

AUTHOR

12 |

Contributed by <ralph dot grothe at itdz minus berlin dot de>

13 |

LICENSE

14 |

GPLv2

15 |

MAGIC MARKERS

16 |
 #%# family=auto
17 |  #%# capabilities=autoconf
18 |
19 | Source : http://gallery.munin-monitoring.org/ 20 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_linux_irqstats.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

irqstats - Munin plugin to monitor individual interrupts on a Linux machine

3 |

APPLICABLE SYSTEMS

4 |

Any Linux system

5 |

CONFIGURATION

6 |

Specified devices may be skipped.

7 |
   [irqstats]
 8 |    env.skipdevs blkif,vif
9 |

None needed

10 |

USAGE

11 |

Link this plugin to /etc/munin/plugins/ and restart the munin-node.

12 |

INTERPRETATION

13 |

The plugin simply shows the number of interrupts on each interrupt line. The lines are identified by the attached equipment rather than the IRQ numbers.

14 |

High interrupt rates may coincide with high loads on disk, network or other I/O, this is normal.

15 |

MAGIC MARKERS

16 |
  #%# family=auto
17 |   #%# capabilities=autoconf
18 |

BUGS

19 |

None known

20 |

AUTHOR

21 |

Unknown

22 |

LICENSE

23 |

GPLv2

24 |
25 | Source : http://gallery.munin-monitoring.org/ 26 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_linux_lpar_cpu.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

lpar_cpu - Plugin to monitor physical cpu usage

3 |

APPLICABLE SYSTEMS

4 |

IBM POWER P5 / OpenPower LPAR

5 |

USAGE

6 |

Link this plugin to /etc/munin/plugins/ and restart the munin-node.

7 |

CONFIGURATION

8 |

This should be run as root, so drop a file with something like this in /etc/munin/plugin-conf.d/lpar_cpu:

9 |
  [lpar_cpu]
10 |   user root
11 |

AUTHOR

12 |

Ingvar Hagelund <ingvar(at)linpro.no>

13 |

Great thanks to Nigel Griffith of IBM for the magic to get these values.

14 |

MAGIC MARKERS

15 |
 #%# family=manual
16 |  #%# capabilities=autoconf
17 |

LICENSE

18 |

Licence: GNU General Public Licence v2.0, see http://www.gnu.org/copyleft/gpl.html

19 |
20 | Source : http://gallery.munin-monitoring.org/ 21 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_linux_numa_.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

numa - Plugin to graph NUMA page hits and misses

3 |

APPLICABLE SYSTEMS

4 |

Linux kernels since 2.6.12

5 |

CONFIGURATION

6 |

This plugin does not require configuration.

7 |

The number after numa_ indicates the numa node. It is followed by either 'memory' or 'process'.

8 |

numa_0_memory numa_1_process

9 |

INTERPRETATION

10 |

Remote and foreign access takes more time than local access.

11 |

Hugepages have separate counters and aren't included in these graphs.

12 |

AUTHORS

13 |

Copyright (C) 2014 Daniel Black - Open Query

14 |

LICENSE

15 |

GNU GPLv2

16 |

REFERENCE

17 |

Reference: https://www.kernel.org/doc/Documentation/numastat.txt

18 |

BUGS

19 |

Possibly some.

20 |

MAGIC MARKERS

21 |
  #%# family=auto
22 |   #%# capabilities=autoconf suggest
23 |
24 | Source : http://gallery.munin-monitoring.org/ 25 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_linux_selinux_avcstat.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

selinux_avcstat

3 |

4 |

selinux_avcstat - Plugin to monitor SELinux Access Vector Cache (AVC)

5 |

MAGIC MARKERS

6 |
  #%# family=auto
 7 |   #%# capabilities=autoconf
8 |

AUTHOR

9 |

Lars Strand

10 |

LICENSE

11 |

GPLv2

12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_node_users.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

users - Munin plugin to monitor the number of users logged in to a Unix box.

3 |

APPLICABLE SYSTEMS

4 |

Should work on any Unix that has the who(1) command.

5 |

CONFIGURATION

6 |

None needed

7 |

INTERPRETATION

8 |

The plugin simply runs the who(1) command and counts the number of users logged in by different methods (tty, pty, X, etc).

9 |

BUGS

10 |

Logins or sessions that are not registered in /var/run/utmp as part of the session setup will not be counted (this is a feature, not a bug).

11 |

Only tested extensively on Linux.

12 |

MAGIC MARKERS

13 |
  #%# family=auto
14 |   #%# capabilities=autoconf
15 |

AUTHOR

16 |

Copyright (C) 2004-2008.

17 |

Original version by Michael Kaiser tools (at) micha (dot) de. Modified and made more generic by Nicolai Langfeldt, 2006

18 |

LICENSE

19 |

GPLv2

20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_sunos_cpu.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

cpu - Plugin to monitor CPU usage

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Unknown author

7 |

LICENSE

8 |

GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_sunos_load.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

load - Plugin to monitor system load

3 |

CONFIGURATION

4 |

The following environment variables are used by this plugin:

5 |
6 |
7 | load_warning <float> 8 |
9 |
10 |

Threshold for when to report a warning

11 |
12 |
13 | load_critical <float> 14 |
15 |
16 |

Threshold for when to report a critical

17 |
18 |
19 |

EXAMPLE CONFIGURATION

20 |
 [load]
21 |   env.load_warning 5
22 |   env.load_critical 10
23 |

AUTHOR

24 |

Unknown author

25 |

LICENSE

26 |

GPLv2

27 |

MAGIC MARKERS

28 |
 #%# family=auto
29 |  #%# capabilities=autoconf
30 |
31 | Source : http://gallery.munin-monitoring.org/ 32 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_sunos_paging_in.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

paging_in - Plugin to monitor CPU usage

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Unknown author

7 |

LICENSE

8 |

GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_sunos_paging_out.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

paging_out - Plugin to monitor CPU usage.

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Unknown author

7 |

LICENSE

8 |

GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_system_sunos_uptime.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

uptime - Plugin to measure uptime on solaris

3 |

CONFIGURATION

4 |

No configuration

5 |

AUTHOR

6 |

Adam J. Baker (adam@unb.ca)

7 |

LICENSE

8 |

GPLv2

9 |

MAGIC MARKERS

10 |
 #%# family=auto
11 |  #%# capabilities=autoconf
12 |
13 | Source : http://gallery.munin-monitoring.org/ 14 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_time_node_ntp_kernel_err.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

ntp_kernel_err

3 |

4 |

ntp_kernel_err - Plugin to monitor the PLL estimated error for the kernel NTP status

5 |

CONFIGURATION

6 |

No configuration

7 |

AUTHORS

8 |

Unknown author

9 |

LICENSE

10 |

GPLv2

11 |

MAGIC MARKERS

12 |
 #%# family=auto
13 |  #%# capabilities=autoconf
14 |
15 | Source : http://gallery.munin-monitoring.org/ 16 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_time_node_ntp_kernel_pll_freq.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

ntp_kernel_pll_freq - Plugin to monitor the kernel's PLL frequency for the NTP status

3 |

CONFIGURATION

4 |

No configuration

5 |

This plugin optionally reads the file /etc/munin/ntp-freq-comp, which should contain a number to be added to the frequency read by ntpdc.

6 |

AUTHORS

7 |

Unknown author

8 |

LICENSE

9 |

GPLv2

10 |

BUGS

11 |

Handling of $fcomp is unquoted, and may cause trouble.

12 |

MAGIC MARKERS

13 |
 #%# family=auto
14 |  #%# capabilities=autoconf
15 |
16 | Source : http://gallery.munin-monitoring.org/ 17 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_time_node_ntp_kernel_pll_off.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

ntp_kernel_pll_off

3 |

4 |

ntp_kernel_pll_off - Plugin to monitor the kernel's PLL offset for the NTP status

5 |

CONFIGURATION

6 |

No configuration

7 |

AUTHORS

8 |

Unknown author

9 |

LICENSE

10 |

GPLv2

11 |

MAGIC MARKERS

12 |
 #%# family=auto
13 |  #%# capabilities=autoconf
14 |
15 | Source : http://gallery.munin-monitoring.org/ 16 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_time_node_ntp_offset.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

ntp_offset

3 |

4 |

ntp_offset - Plugin to monitor NTP time offset

5 |

CONFIGURATION

6 |

The following environment variables are used by this plugin:

7 |
 nodelay - add "delay_graph no" to RRD graph configuration
8 |

EXAMPLE CONFIGURATION

9 |
 [ntp_*]
10 |   env.nodelay 1       - Set to 1 to remove delay
11 |

AUTHOR

12 |

Unknown author

13 |

LICENSE

14 |

GPLv2

15 |

NOTES

16 |

Loosely based on ntp_ plugin, but reworked to shell.

17 |

MAGIC MARKERS

18 |
 #%# family=auto
19 |  #%# capabilities=autoconf
20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_time_node_ntp_states.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

ntp_states - Plugin to monitor NTP states. States are the Select Field as documented at http://www.eecis.udel.edu/~mills/ntp/html/decode.html#peer

3 |

CONFIGURATION

4 |

The following configuration parameters are used by this plugin:

5 |
 [ntp_states]
 6 |   env.lowercase - Lowercase hostnames after lookup
 7 |   env.show_syspeer_stratum - Display the stratum of the system peer, field sys_peer_stratum
8 |

Set the variable env.lowercase to anything to lowercase hostnames.

9 |

DEFAULT CONFIGURATION

10 |
 [ntp_states]
11 |   env.lowercase <undefined>
12 |   env.show_syspeer_stratum <undefined>
13 |

AUTHORS

14 |

Original author unknown. Rewritten by Kenyon Ralph <kenyon@kenyonralph.com>.

15 |

LICENSE

16 |

Same as munin.

17 |

MAGIC MARKERS

18 |
 #%# family=auto
19 |  #%# capabilities=autoconf
20 |
21 | Source : http://gallery.munin-monitoring.org/ 22 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/assets/html_docs/core_vserver_linux_vserver_loadavg.html: -------------------------------------------------------------------------------- 1 |

NAME

2 |

vserver_loadavg - Plugin to graph vserver load average

3 |

CONFIGURATION

4 |

The following configuration variables are used by this plugin

5 |
 [vserver_loadavg]
 6 |   env.vservers - A list of vservers to include in the graph
7 |

This plugin should run as the "root" user

8 |

DEFAULT CONFIGURATION

9 |

The default configuration will graph all vservers.

10 |
 [vserver_loadavg]
11 |   env.vservers all
12 |

AUTHORS

13 |

Copyright (C) 2008 Micah Anderson

14 |

Copyright (C) 2007 Andrei Morgan

15 |

LICENSE

16 |

GNU GPLv2

17 |

BUGS

18 |

None known.

19 |

MAGIC MARKERS

20 |
  #%# family=auto
21 |   #%# capabilities=autoconf
22 |
23 | Source : http://gallery.munin-monitoring.org/ 24 |
-------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/App.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin; 2 | 3 | import android.app.Application; 4 | import android.content.res.Configuration; 5 | 6 | import com.chteuchteu.munin.hlpr.I18nHelper; 7 | 8 | public class App extends Application { 9 | public void onCreate() { 10 | super.onCreate(); 11 | 12 | I18nHelper.updateLocale(this); 13 | } 14 | 15 | public void onConfigurationChanged(Configuration configuration) { 16 | super.onConfigurationChanged(configuration); 17 | 18 | I18nHelper.updateLocale(this); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/async/AlertsScanner.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.async; 2 | 3 | import android.os.AsyncTask; 4 | 5 | import com.chteuchteu.munin.MuninFoo; 6 | import com.chteuchteu.munin.ui.Fragment_Alerts; 7 | 8 | public class AlertsScanner extends AsyncTask { 9 | private int fromIndex; 10 | private int toIndex; 11 | private Fragment_Alerts fragment; 12 | 13 | public AlertsScanner(int fromIndex, int toIndex, Fragment_Alerts fragment) { 14 | this.fromIndex = fromIndex; 15 | this.toIndex = toIndex; 16 | this.fragment = fragment; 17 | } 18 | 19 | @Override 20 | protected Void doInBackground(Void... arg0) { 21 | MuninFoo muninFoo = MuninFoo.getInstance(); 22 | 23 | for (int i=fromIndex; i<=toIndex; i++) { 24 | muninFoo.getNode(i).fetchPluginsStates(muninFoo.getUserAgent()); 25 | fragment.onScanProgress(); 26 | } 27 | 28 | return null; 29 | } 30 | 31 | @Override 32 | protected void onPostExecute(Void result) { 33 | fragment.onGroupScanFinished(this.fromIndex, this.toIndex); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/async/AppUpdater.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.async; 2 | 3 | import android.os.AsyncTask; 4 | 5 | import com.chteuchteu.munin.ui.Activity_Main; 6 | 7 | public class AppUpdater extends AsyncTask { 8 | private Activity_Main activity; 9 | 10 | public AppUpdater(Activity_Main activity) { 11 | this.activity = activity; 12 | } 13 | 14 | @Override 15 | protected Void doInBackground(Void... arg0) { 16 | activity.updateActions(); 17 | return null; 18 | } 19 | 20 | @Override 21 | protected void onPostExecute(Void result) { 22 | // When rotating the device while updating : may crash 23 | if (activity.progressDialog != null && activity.progressDialog.isShowing()) { 24 | try { 25 | activity.progressDialog.dismiss(); 26 | } catch (Exception ex) { ex.printStackTrace(); } 27 | } 28 | 29 | activity.onLoadFinished(); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/exc/ImportExportWebserviceException.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.exc; 2 | 3 | @SuppressWarnings("serial") 4 | public class ImportExportWebserviceException extends Exception { 5 | public ImportExportWebserviceException(String message) { 6 | super(message); 7 | } 8 | } -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/exc/NullMuninFooException.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.exc; 2 | 3 | @SuppressWarnings("serial") 4 | public class NullMuninFooException extends Exception { 5 | public NullMuninFooException(String message) { 6 | super(message); 7 | } 8 | } -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/hlpr/HTMLParser.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.hlpr; 2 | 3 | public final class HTMLParser { 4 | /** 5 | * Matches all -day graphs in the page. We exclude file extension on purpose 6 | * to match PNG & SVG extensions 7 | */ 8 | public static final String MUNIN_GRAPH_SELECTOR = "img[src*=-day.]"; 9 | } 10 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/hlpr/MediaScannerUtil.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.hlpr; 2 | 3 | import android.content.Context; 4 | import android.media.MediaScannerConnection; 5 | import android.media.MediaScannerConnection.MediaScannerConnectionClient; 6 | import android.net.Uri; 7 | 8 | import java.io.File; 9 | 10 | /** 11 | * Util class 12 | * Should be used every time a bitmap is saved into gallery 13 | */ 14 | public class MediaScannerUtil implements MediaScannerConnectionClient { 15 | private MediaScannerConnection mMs; 16 | private File mFile; 17 | private Context context; 18 | 19 | public MediaScannerUtil(Context context, File f) { 20 | this.mFile = f; 21 | this.context = context; 22 | } 23 | 24 | public void execute() { 25 | mMs = new MediaScannerConnection(context, this); 26 | mMs.connect(); 27 | } 28 | 29 | @Override 30 | public void onMediaScannerConnected() { 31 | mMs.scanFile(mFile.getAbsolutePath(), null); 32 | } 33 | 34 | @Override 35 | public void onScanCompleted(String path, Uri uri) { 36 | mMs.disconnect(); 37 | } 38 | 39 | } -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/hlpr/TestsHelper.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.hlpr; 2 | 3 | public class TestsHelper { 4 | public static final String DRAWER_GRAPHS = "drawer_graphs"; 5 | public static final String DRAWER_GRIDS = "drawer_grids"; 6 | public static final String DRAWER_ALERTS = "drawer_alerts"; 7 | public static final String DRAWER_SERVERS = "drawer_servers"; 8 | } 9 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/obj/AlertsWidget.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.obj; 2 | 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | 7 | public class AlertsWidget { 8 | private long id; 9 | private boolean wifiOnly; 10 | private List nodes; 11 | private int widgetId; 12 | 13 | public AlertsWidget() { 14 | this.id = -1; 15 | this.wifiOnly = false; 16 | this.nodes = new ArrayList<>(); 17 | this.widgetId = -1; 18 | } 19 | 20 | public long getId() { return id; } 21 | public void setId(long id) { this.id = id; } 22 | 23 | public boolean isWifiOnly() { return wifiOnly; } 24 | public void setWifiOnly(int b) { this.wifiOnly = b == 1; } 25 | 26 | public List getNodes() { return nodes; } 27 | public void setNodes(List nodes) { this.nodes = nodes; } 28 | 29 | public int getWidgetId() { return widgetId; } 30 | public void setWidgetId(int widgetId) { this.widgetId = widgetId; } 31 | } 32 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/obj/HTTPResponse/BitmapResponse.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.obj.HTTPResponse; 2 | 3 | import android.graphics.Bitmap; 4 | 5 | public class BitmapResponse extends BaseResponse { 6 | private Bitmap bitmap; 7 | 8 | public BitmapResponse(String url) { 9 | super(url); 10 | } 11 | 12 | public void setBitmap(Bitmap val) { this.bitmap = val; } 13 | public Bitmap getBitmap() { return this.bitmap; } 14 | 15 | /** 16 | * Same as hasSuceeded(), but doesn't test if bitmap == null 17 | */ 18 | public boolean requestSucceeded() { 19 | return super.hasSucceeded(); 20 | } 21 | 22 | @Override 23 | public boolean hasSucceeded() { 24 | return super.hasSucceeded() && this.bitmap != null; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/obj/HTTPResponse/HTMLResponse.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.obj.HTTPResponse; 2 | 3 | public class HTMLResponse extends BaseResponse { 4 | private String html; 5 | 6 | public HTMLResponse(String url) { 7 | super(url); 8 | this.html = ""; 9 | } 10 | 11 | public void setHtml(String val) { this.html = val; } 12 | public String getHtml() { return this.html; } 13 | } 14 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/ui/HackyDrawerLayout.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.ui; 2 | 3 | import android.content.Context; 4 | import androidx.drawerlayout.widget.DrawerLayout; 5 | import android.util.AttributeSet; 6 | import android.view.MotionEvent; 7 | 8 | public class HackyDrawerLayout extends DrawerLayout { 9 | public HackyDrawerLayout(Context context) { 10 | super(context); 11 | } 12 | 13 | public HackyDrawerLayout(Context context, AttributeSet attrs) { 14 | super(context, attrs); 15 | } 16 | 17 | @Override 18 | public boolean onTouchEvent(MotionEvent ev) { 19 | try { 20 | return super.onTouchEvent(ev); 21 | } catch (IllegalArgumentException ex) { 22 | //ex.printStackTrace(); 23 | return false; 24 | } 25 | } 26 | 27 | @Override 28 | public boolean onInterceptTouchEvent(MotionEvent ev) { 29 | try { 30 | return super.onInterceptTouchEvent(ev); 31 | } catch (IllegalArgumentException | ArrayIndexOutOfBoundsException e) { 32 | return false; 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/ui/IAlertsActivity.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.ui; 2 | 3 | public interface IAlertsActivity { 4 | void setLoading(boolean val); 5 | void setLoadingProgress(int progress); 6 | } 7 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/ui/IGridActivity.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.ui; 2 | 3 | import com.chteuchteu.munin.obj.Grid; 4 | 5 | public interface IGridActivity { 6 | void onPreviewHide(); 7 | void onEditModeChange(boolean editing); 8 | void onPreview(); 9 | void onGridLoaded(Grid grid); 10 | void onGridSaved(); 11 | 12 | /** 13 | * Triggered when the user hits the "Load" button when autoLoad=false 14 | */ 15 | void onManualLoad(); 16 | } 17 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/ui/IImportExportActivity.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.ui; 2 | 3 | public interface IImportExportActivity { 4 | void onExportSuccess(String pswd); 5 | void onExportError(); 6 | 7 | void onImportSuccess(); 8 | void onImportError(); 9 | } 10 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/ui/ILabelsActivity.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.ui; 2 | 3 | import com.chteuchteu.munin.obj.Label; 4 | 5 | public interface ILabelsActivity { 6 | void onLabelClick(Label label); 7 | void onLabelItemClick(int pos, String labelName, long labelId); 8 | void onLabelsItemsListFragmentLoaded(); 9 | void onLabelsFragmentLoaded(); 10 | void unselectLabel(); 11 | } 12 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/ui/INotificationsFragment.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.ui; 2 | 3 | public interface INotificationsFragment { 4 | void save(); 5 | } 6 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/ui/IServersActivity.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.ui; 2 | 3 | import android.view.View; 4 | 5 | public interface IServersActivity { 6 | void onChildClick(); 7 | boolean onChildLongClick(int groupPosition, int childPosition); 8 | void onParentOptionsClick(View overflowIcon, int position); 9 | void onParentCredentialsClick(int position); 10 | } 11 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/java/com/chteuchteu/munin/wdget/Widget_AlertsWidget_WidgetService.java: -------------------------------------------------------------------------------- 1 | package com.chteuchteu.munin.wdget; 2 | 3 | import android.content.Intent; 4 | import android.widget.RemoteViewsService; 5 | 6 | public class Widget_AlertsWidget_WidgetService extends RemoteViewsService { 7 | @Override 8 | public RemoteViewsFactory onGetViewFactory(Intent intent) { 9 | return new Widget_AlertsWidget_ViewsFactory(getApplicationContext(), intent); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/anim/deeper_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/anim/deeper_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/anim/shallower_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/anim/shallower_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2013,5,9,21,24,25 4 | Version=3 5 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/alerts_and_states_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/alerts_and_states_error.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/card.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/collections_labels_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/collections_labels_light.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/content_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/content_graph.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/download_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/download_error.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_accounts.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_alert_critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_alert_critical.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_alert_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_alert_warning.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_content_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_content_add.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_down.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_dynazoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_dynazoom.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_help2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_help2.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_image_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_image_edit.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_import_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_import_export.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_label.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_navigation_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_navigation_arrow_back.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_navigation_arrow_drop_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_navigation_arrow_drop_down.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_navigation_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_navigation_check.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_navigation_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_navigation_refresh.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_new.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_open.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_picture.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_remove.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_reset.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_time.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_up.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_action_view_as_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_action_view_as_list.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_alert_box_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_alert_box_white.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_bookmark_remove_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_bookmark_remove_grey600.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_delete.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_grid.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_insecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_insecure.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_secure.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/ic_unreachable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/ic_unreachable.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/launcher_icon_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/launcher_icon_mono.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/location_web_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/location_web_site.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-hdpi/splash_overlay_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-hdpi/splash_overlay_logo.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-ldpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-ldpi/ic_delete.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2013,4,1,16,12,6 4 | Version=3 5 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/alerts_and_states_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/alerts_and_states_error.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/card.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/collections_labels_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/collections_labels_light.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/content_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/content_graph.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_accounts.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_alert_critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_alert_critical.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_alert_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_alert_warning.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_content_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_content_add.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_down.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_dynazoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_dynazoom.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_help2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_help2.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_image_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_image_edit.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_import_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_import_export.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_label.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_navigation_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_navigation_arrow_back.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_navigation_arrow_drop_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_navigation_arrow_drop_down.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_navigation_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_navigation_check.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_navigation_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_navigation_refresh.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_new.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_open.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_picture.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_remove.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_reset.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_time.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_up.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_action_view_as_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_action_view_as_list.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_alert_box_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_alert_box_white.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_bookmark_remove_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_bookmark_remove_grey600.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_delete.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_grid.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_insecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_insecure.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_secure.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/ic_unreachable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/ic_unreachable.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/launcher_icon_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/launcher_icon_mono.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/location_web_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/location_web_site.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-mdpi/splash_overlay_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-mdpi/splash_overlay_logo.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-nodpi/alertswidget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-nodpi/alertswidget_preview.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-nodpi/croppedgraphplaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-nodpi/croppedgraphplaceholder.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-nodpi/croppedgraphplaceholder_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-nodpi/croppedgraphplaceholder_error.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-nodpi/graphwidget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-nodpi/graphwidget_preview.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-nodpi/widget_glow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-nodpi/widget_glow.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2013,4,1,16,13,23 4 | Version=3 5 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/alerts_and_states_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/alerts_and_states_error.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/card.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/collections_labels_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/collections_labels_light.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/content_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/content_graph.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_accounts.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_alert_critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_alert_critical.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_alert_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_alert_warning.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_content_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_content_add.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_down.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_dynazoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_dynazoom.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_help2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_help2.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_image_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_image_edit.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_import_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_import_export.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_label.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_navigation_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_navigation_arrow_back.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_navigation_arrow_drop_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_navigation_arrow_drop_down.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_navigation_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_navigation_check.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_navigation_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_navigation_refresh.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_new.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_open.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_picture.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_reset.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_time.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_up.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_action_view_as_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_action_view_as_list.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_alert_box_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_alert_box_white.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_bookmark_remove_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_bookmark_remove_grey600.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_delete.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_grid.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_insecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_insecure.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_secure.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/ic_unreachable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/ic_unreachable.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/launcher_icon_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/launcher_icon_mono.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/location_web_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/location_web_site.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xhdpi/splash_overlay_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xhdpi/splash_overlay_logo.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/alerts_and_states_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/alerts_and_states_error.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/bottom_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/bottom_shadow.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/card.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/collections_labels_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/collections_labels_light.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/content_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/content_graph.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_accounts.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_alert_critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_alert_critical.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_alert_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_alert_warning.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_content_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_content_add.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_down.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_dynazoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_dynazoom.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_help2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_help2.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_image_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_image_edit.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_import_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_import_export.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_label.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_navigation_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_navigation_arrow_back.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_navigation_arrow_drop_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_navigation_arrow_drop_down.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_navigation_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_navigation_check.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_navigation_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_navigation_refresh.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_new.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_open.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_picture.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_reset.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_search.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_time.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_up.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_view_as_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_action_view_as_list.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_alert_box_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_alert_box_white.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_bookmark_remove_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_bookmark_remove_grey600.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_delete.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_grid.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_insecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_insecure.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_secure.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/ic_unreachable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/ic_unreachable.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/location_web_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/location_web_site.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxhdpi/splash_overlay_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxhdpi/splash_overlay_logo.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxxhdpi/ic_action_navigation_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxxhdpi/ic_action_navigation_arrow_back.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxxhdpi/ic_alert_box_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxxhdpi/ic_alert_box_white.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxxhdpi/ic_bookmark_remove_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxxhdpi/ic_bookmark_remove_grey600.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxxhdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxxhdpi/ic_delete.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2013,5,9,21,22,6 4 | Version=3 5 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable/gray_gradient.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable/grid_emptyitembg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 9 | 12 | 15 | 16 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quentin-st/Munin-for-Android/6ac01d2cb7ddd94b7137e56678d85210217348d6/muninforAndroid/src/main/res/drawable/header.jpg -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable/material_blackgradient.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable/progress_horizontal_holo_no_background_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable/shadow_gradient.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/drawable/vertical_divider.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout-large/incl_labels_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 15 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/activity_alerts.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 15 | 16 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/activity_alerts_pluginselection.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 15 | 16 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/activity_grid.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 20 | 21 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/activity_labels.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/activity_notifications.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 15 | 16 | 22 | 23 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/activity_plugins.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 20 | 21 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/dialog_checkbox.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/dialog_donate.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | 19 | 20 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/dialog_edittext.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/dialog_export_success.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | 20 | 21 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/dialog_import.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/dialog_webview.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/empty_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/expandable_server.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 14 | 15 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/fragment_label.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 13 | 14 | 21 | 22 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/fragment_labelslist.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 13 | 14 | 18 | 19 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/griditem_empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | 16 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/gridselection_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 12 | 13 | 17 | 18 | 22 | 23 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/incl_labels_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/labels_list_checkbox.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 17 | 18 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/labelselection_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 13 | 14 | 18 | 19 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/list_header.xml: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/material_drawer.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/plugins_serverlist_server.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/widget_alertswidget_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 16 | 17 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/layout/widget_periodselection.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 17 | 18 | 21 | 22 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/menu/about.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/menu/alerts.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | 15 | 16 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/menu/grids.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 10 | 13 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/menu/labels.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/menu/notifications.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/menu/plugins.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/menu/server.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/menu/servers.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | 14 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/menu/servers_overflow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 9 | 12 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/menu/settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | 15 | 19 | 23 | 24 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values-large-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 60dp 4 | 5 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values-large/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20dp 4 | 10dp 5 | 50dp 6 | 15dp 7 | 30dp 8 | 50sp 9 | 35sp 10 | 11 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values-normal/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10dp 4 | 10dp 5 | 20dp 6 | 40sp 7 | 30sp 8 | 9 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values-small/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10dp 4 | 10dp 5 | 20dp 6 | 35sp 7 | 25sp 8 | 9 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values-v21/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 5 | 6 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values-v21/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values-xlarge/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 25dp 4 | 15dp 5 | 6 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values/color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #bbbbbb 5 | #dddddd 6 | #1565C0 7 | #2196F3 8 | #00ffffff 9 | #33ffffff 10 | 11 | #B2B2B2 12 | #8EC842 13 | #FFAE5B 14 | #FF7B68 15 | #333333 16 | #888888 17 | 18 | 19 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | 0dp 9 | 0dp 10 | 18sp 11 | 12 | 13 | 10dp 14 | 20dp 15 | 40dp 16 | 40sp 17 | 30sp 18 | 19 | 20 | 110dp 21 | 110dp 22 | 23 | 0dp 24 | 25 | 26 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values/plugins_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/xml/widget_alertswidget_meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | -------------------------------------------------------------------------------- /muninforAndroid/src/main/res/xml/widget_graphwidget_meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':muninforAndroid' 2 | --------------------------------------------------------------------------------