This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://gist.github.com/oddmario/bf1058f0083e237d8a896e3c300c9285 | |
| import os | |
| import time | |
| import subprocess | |
| import re | |
| import argparse | |
| import sys | |
| def get_sysfs_value(iface, metric): | |
| """Reads a single integer value from /sys/class/net.""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "time" | |
| natsServer "github.com/nats-io/nats-server/v2/server" | |
| "github.com/nats-io/nats.go" | |
| ) |
OlderNewer