Sanitized mirror from private repository - 2026-03-16 11:01:28 UTC
This commit is contained in:
7411
hosts/synology/atlantis/grafana_prometheus/Synology_Dashboard.json
Normal file
7411
hosts/synology/atlantis/grafana_prometheus/Synology_Dashboard.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,29 @@
|
||||
# Node Exporter - Prometheus metrics
|
||||
# Port: 9100 (host network)
|
||||
# Exposes hardware/OS metrics for Prometheus
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
node-exporter:
|
||||
image: quay.io/prometheus/node-exporter:latest
|
||||
container_name: node_exporter
|
||||
network_mode: host
|
||||
pid: host
|
||||
volumes:
|
||||
- /proc:/host/proc:ro
|
||||
- /sys:/host/sys:ro
|
||||
- /:/rootfs:ro
|
||||
command:
|
||||
- '--path.procfs=/host/proc'
|
||||
- '--path.sysfs=/host/sys'
|
||||
- '--path.rootfs=/rootfs'
|
||||
- '--collector.filesystem.ignored-mount-points=^/(sys|proc|dev|host|etc)($$|/)'
|
||||
restart: unless-stopped
|
||||
|
||||
snmp-exporter:
|
||||
image: quay.io/prometheus/snmp-exporter:latest
|
||||
container_name: snmp_exporter
|
||||
network_mode: host # important, so exporter can talk to DSM SNMP on localhost
|
||||
volumes:
|
||||
- /volume2/metadata/docker/snmp/snmp.yml:/etc/snmp_exporter/snmp.yml:ro
|
||||
restart: unless-stopped
|
||||
278
hosts/synology/atlantis/grafana_prometheus/monitoring-stack.yaml
Normal file
278
hosts/synology/atlantis/grafana_prometheus/monitoring-stack.yaml
Normal file
@@ -0,0 +1,278 @@
|
||||
# =============================================================================
|
||||
# HOMELAB MONITORING STACK - CRITICAL INFRASTRUCTURE VISIBILITY
|
||||
# =============================================================================
|
||||
#
|
||||
# SERVICE OVERVIEW:
|
||||
# - Complete monitoring solution for homelab infrastructure
|
||||
# - Grafana: Visualization and dashboards
|
||||
# - Prometheus: Metrics collection and storage
|
||||
# - Node Exporter: System metrics (CPU, memory, disk, network)
|
||||
# - SNMP Exporter: Network device monitoring (router, switches)
|
||||
# - cAdvisor: Container metrics and resource usage
|
||||
# - Blackbox Exporter: Service availability and response times
|
||||
# - Speedtest Exporter: Internet connection monitoring
|
||||
#
|
||||
# DISASTER RECOVERY PRIORITY: HIGH
|
||||
# - Essential for infrastructure visibility during outages
|
||||
# - Contains historical performance data
|
||||
# - Critical for troubleshooting and capacity planning
|
||||
#
|
||||
# RECOVERY TIME OBJECTIVE (RTO): 30 minutes
|
||||
# RECOVERY POINT OBJECTIVE (RPO): 4 hours (metrics retention)
|
||||
#
|
||||
# DEPENDENCIES:
|
||||
# - Volume2 for data persistence (separate from Volume1)
|
||||
# - Network access to all monitored systems
|
||||
# - SNMP access to network devices
|
||||
# - Docker socket access for container monitoring
|
||||
#
|
||||
# =============================================================================
|
||||
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
# ==========================================================================
|
||||
# GRAFANA - Visualization and Dashboard Platform
|
||||
# ==========================================================================
|
||||
grafana:
|
||||
# CONTAINER IMAGE:
|
||||
# - grafana/grafana:latest: Official Grafana image
|
||||
# - Consider pinning version for production: grafana/grafana:10.2.0
|
||||
# - Auto-updates with Watchtower (monitor for breaking changes)
|
||||
image: grafana/grafana:latest
|
||||
|
||||
# CONTAINER IDENTIFICATION:
|
||||
# - Grafana: Clear identification for monitoring and logs
|
||||
# - grafana: Internal hostname for service communication
|
||||
container_name: Grafana
|
||||
hostname: grafana
|
||||
|
||||
# NETWORK CONFIGURATION:
|
||||
# - grafana-net: Isolated network for Grafana and data sources
|
||||
# - Allows secure communication with Prometheus
|
||||
# - Prevents unauthorized access to monitoring data
|
||||
networks:
|
||||
- grafana-net
|
||||
|
||||
# RESOURCE ALLOCATION:
|
||||
# - mem_limit: 512MB (sufficient for dashboards and queries)
|
||||
# - cpu_shares: 512 (medium priority, less than Prometheus)
|
||||
# - Grafana is lightweight but needs memory for dashboard rendering
|
||||
mem_limit: 512m
|
||||
cpu_shares: 512
|
||||
|
||||
# SECURITY CONFIGURATION:
|
||||
# - no-new-privileges: Prevents privilege escalation attacks
|
||||
# - user: 1026:100 (Synology user/group for file permissions)
|
||||
# - CRITICAL: Must match NAS permissions for data access
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
user: 1026:100
|
||||
|
||||
# HEALTH MONITORING:
|
||||
# - wget: Tests Grafana API health endpoint
|
||||
# - /api/health: Built-in Grafana health check
|
||||
# - Ensures web interface is responsive
|
||||
healthcheck:
|
||||
test: wget --no-verbose --tries=1 --spider http://localhost:3000/api/health
|
||||
|
||||
# NETWORK PORTS:
|
||||
# - 7099:3000: External port 7099 maps to internal Grafana port 3000
|
||||
# - Port 7099: Accessible via reverse proxy or direct access
|
||||
# - Port 3000: Standard Grafana web interface port
|
||||
ports:
|
||||
- 7099:3000
|
||||
|
||||
# DATA PERSISTENCE:
|
||||
# - /volume2/metadata/docker/grafana/data: Grafana configuration and data
|
||||
# - Contains: Dashboards, data sources, users, alerts, plugins
|
||||
# - BACKUP CRITICAL: Contains all dashboard configurations
|
||||
# - Volume2: Separate from Volume1 for redundancy
|
||||
volumes:
|
||||
- /volume2/metadata/docker/grafana/data:/var/lib/grafana:rw
|
||||
|
||||
environment:
|
||||
# TIMEZONE CONFIGURATION:
|
||||
# - TZ: Timezone for logs and dashboard timestamps
|
||||
# - Must match system timezone for accurate time series data
|
||||
TZ: America/Los_Angeles
|
||||
|
||||
# PLUGIN INSTALLATION:
|
||||
# - GF_INSTALL_PLUGINS: Comma-separated list of plugins to install
|
||||
# - grafana-clock-panel: Clock widget for dashboards
|
||||
# - grafana-simple-json-datasource: JSON data source support
|
||||
# - natel-discrete-panel: Discrete value visualization
|
||||
# - grafana-piechart-panel: Pie chart visualizations
|
||||
# - Plugins installed automatically on container start
|
||||
GF_INSTALL_PLUGINS: grafana-clock-panel,grafana-simple-json-datasource,natel-discrete-panel,grafana-piechart-panel
|
||||
|
||||
# RESTART POLICY:
|
||||
# - on-failure:5: Restart up to 5 times on failure
|
||||
# - Critical for maintaining monitoring visibility
|
||||
# - Prevents infinite restart loops
|
||||
restart: on-failure:5
|
||||
|
||||
# ==========================================================================
|
||||
# PROMETHEUS - Metrics Collection and Time Series Database
|
||||
# ==========================================================================
|
||||
prometheus:
|
||||
# CONTAINER IMAGE:
|
||||
# - prom/prometheus: Official Prometheus image
|
||||
# - Latest stable version with security updates
|
||||
# - Consider version pinning: prom/prometheus:v2.47.0
|
||||
image: prom/prometheus
|
||||
|
||||
# PROMETHEUS CONFIGURATION:
|
||||
# - --storage.tsdb.retention.time=60d: Keep metrics for 60 days
|
||||
# - --config.file: Path to Prometheus configuration file
|
||||
# - Retention period balances storage usage vs. historical data
|
||||
command:
|
||||
- '--storage.tsdb.retention.time=60d'
|
||||
- '--config.file=/etc/prometheus/prometheus.yml'
|
||||
|
||||
# CONTAINER IDENTIFICATION:
|
||||
# - Prometheus: Clear identification for monitoring
|
||||
# - prometheus-server: Internal hostname for service communication
|
||||
container_name: Prometheus
|
||||
hostname: prometheus-server
|
||||
|
||||
# NETWORK CONFIGURATION:
|
||||
# - grafana-net: Communication with Grafana for data queries
|
||||
# - prometheus-net: Communication with exporters and targets
|
||||
# - Dual network setup for security and organization
|
||||
networks:
|
||||
- grafana-net
|
||||
- prometheus-net
|
||||
|
||||
# RESOURCE ALLOCATION:
|
||||
# - mem_limit: 1GB (metrics database requires significant memory)
|
||||
# - cpu_shares: 768 (high priority for metrics collection)
|
||||
# - Memory usage scales with number of metrics and retention period
|
||||
mem_limit: 1g
|
||||
cpu_shares: 768
|
||||
|
||||
# SECURITY CONFIGURATION:
|
||||
# - no-new-privileges: Prevents privilege escalation
|
||||
# - user: 1026:100 (Synology permissions for data storage)
|
||||
security_opt:
|
||||
- no-new-privileges=true
|
||||
user: 1026:100
|
||||
|
||||
# HEALTH MONITORING:
|
||||
# - wget: Tests Prometheus web interface availability
|
||||
# - Port 9090: Standard Prometheus web UI port
|
||||
# - Ensures metrics collection is operational
|
||||
healthcheck:
|
||||
test: wget --no-verbose --tries=1 --spider http://localhost:9090/ || exit 1
|
||||
|
||||
# DATA PERSISTENCE:
|
||||
# - /volume2/metadata/docker/grafana/prometheus: Time series database storage
|
||||
# - /volume2/metadata/docker/grafana/prometheus.yml: Configuration file
|
||||
# - BACKUP IMPORTANT: Contains historical metrics data
|
||||
# - Configuration file defines scrape targets and rules
|
||||
volumes:
|
||||
- /volume2/metadata/docker/grafana/prometheus:/prometheus:rw
|
||||
- /volume2/metadata/docker/grafana/prometheus.yml:/etc/prometheus/prometheus.yml:ro
|
||||
|
||||
# RESTART POLICY:
|
||||
# - on-failure:5: Restart on failure to maintain metrics collection
|
||||
# - Critical for continuous monitoring and alerting
|
||||
restart: on-failure:5
|
||||
|
||||
node-exporter:
|
||||
image: prom/node-exporter:latest
|
||||
command:
|
||||
- --collector.disable-defaults
|
||||
- --collector.stat
|
||||
- --collector.time
|
||||
- --collector.cpu
|
||||
- --collector.loadavg
|
||||
- --collector.hwmon
|
||||
- --collector.meminfo
|
||||
- --collector.diskstats
|
||||
container_name: Prometheus-Node
|
||||
hostname: prometheus-node
|
||||
networks:
|
||||
- prometheus-net
|
||||
mem_limit: 256m
|
||||
mem_reservation: 64m
|
||||
cpu_shares: 512
|
||||
security_opt:
|
||||
- no-new-privileges=true
|
||||
read_only: true
|
||||
user: 1026:100
|
||||
healthcheck:
|
||||
test: wget --no-verbose --tries=1 --spider http://localhost:9100/
|
||||
restart: on-failure:5
|
||||
|
||||
snmp-exporter:
|
||||
image: prom/snmp-exporter:latest
|
||||
command:
|
||||
- '--config.file=/etc/snmp_exporter/snmp.yml'
|
||||
container_name: Prometheus-SNMP
|
||||
hostname: prometheus-snmp
|
||||
networks:
|
||||
- prometheus-net
|
||||
mem_limit: 256m
|
||||
mem_reservation: 64m
|
||||
cpu_shares: 512
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
read_only: true
|
||||
user: 1026:100
|
||||
healthcheck:
|
||||
test: wget --no-verbose --tries=1 --spider http://localhost:9116/ || exit 1
|
||||
volumes:
|
||||
- /volume2/metadata/docker/grafana/snmp:/etc/snmp_exporter/:ro
|
||||
restart: on-failure:5
|
||||
|
||||
cadvisor:
|
||||
image: gcr.io/cadvisor/cadvisor:latest
|
||||
command:
|
||||
- '--docker_only=true'
|
||||
container_name: Prometheus-cAdvisor
|
||||
hostname: prometheus-cadvisor
|
||||
networks:
|
||||
- prometheus-net
|
||||
mem_limit: 256m
|
||||
mem_reservation: 64m
|
||||
cpu_shares: 512
|
||||
security_opt:
|
||||
- no-new-privileges=true
|
||||
read_only: true
|
||||
volumes:
|
||||
- /:/rootfs:ro
|
||||
- /var/run:/var/run:ro
|
||||
- /sys:/sys:ro
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
restart: on-failure:5
|
||||
|
||||
blackbox-exporter:
|
||||
image: prom/blackbox-exporter
|
||||
container_name: blackbox-exporter
|
||||
networks:
|
||||
- prometheus-net
|
||||
ports:
|
||||
- 9115:9115
|
||||
restart: unless-stopped
|
||||
|
||||
speedtest-exporter:
|
||||
image: miguelndecarvalho/speedtest-exporter
|
||||
container_name: speedtest-exporter
|
||||
networks:
|
||||
- prometheus-net
|
||||
ports:
|
||||
- 9798:9798
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
grafana-net:
|
||||
name: grafana-net
|
||||
ipam:
|
||||
config:
|
||||
- subnet: 192.168.50.0/24
|
||||
prometheus-net:
|
||||
name: prometheus-net
|
||||
ipam:
|
||||
config:
|
||||
- subnet: 192.168.51.0/24
|
||||
100
hosts/synology/atlantis/grafana_prometheus/prometheus.yml
Normal file
100
hosts/synology/atlantis/grafana_prometheus/prometheus.yml
Normal file
@@ -0,0 +1,100 @@
|
||||
scrape_configs:
|
||||
- job_name: prometheus
|
||||
scrape_interval: 30s
|
||||
static_configs:
|
||||
- targets: ['localhost:9090']
|
||||
labels:
|
||||
group: 'prometheus'
|
||||
|
||||
- job_name: watchtower-docker
|
||||
scrape_interval: 10m
|
||||
metrics_path: /v1/metrics
|
||||
bearer_token: "REDACTED_TOKEN" # pragma: allowlist secret
|
||||
static_configs:
|
||||
- targets: ['watchtower:8080']
|
||||
|
||||
- job_name: node-docker
|
||||
scrape_interval: 5s
|
||||
static_configs:
|
||||
- targets: ['prometheus-node:9100']
|
||||
|
||||
- job_name: cadvisor-docker
|
||||
scrape_interval: 5s
|
||||
static_configs:
|
||||
- targets: ['prometheus-cadvisor:8080']
|
||||
|
||||
- job_name: snmp-docker
|
||||
scrape_interval: 5s
|
||||
static_configs:
|
||||
- targets: ['192.168.0.200']
|
||||
metrics_path: /snmp
|
||||
params:
|
||||
module: [synology]
|
||||
auth: [snmpv3]
|
||||
relabel_configs:
|
||||
- source_labels: [__address__]
|
||||
target_label: __param_target
|
||||
- source_labels: [__param_target]
|
||||
target_label: instance
|
||||
- source_labels: [__param_target]
|
||||
regex: (.*)
|
||||
replacement: prometheus-snmp:9116
|
||||
target_label: __address__
|
||||
|
||||
- job_name: homelab
|
||||
static_configs:
|
||||
- targets: ['192.168.0.210:9100']
|
||||
labels:
|
||||
instance: homelab
|
||||
|
||||
- job_name: LA_VM
|
||||
static_configs:
|
||||
- labels:
|
||||
instance: LA_VM
|
||||
targets:
|
||||
- YOUR_WAN_IP:9100
|
||||
|
||||
- job_name: nuc
|
||||
static_configs:
|
||||
- labels:
|
||||
instance: vish-concord-nuc
|
||||
targets:
|
||||
- 100.72.55.21:9100
|
||||
|
||||
- job_name: indolent-flower
|
||||
static_configs:
|
||||
- labels:
|
||||
instance: indolent-flower
|
||||
targets:
|
||||
- 100.87.181.91:9100
|
||||
|
||||
- job_name: 'blackbox'
|
||||
metrics_path: /probe
|
||||
params:
|
||||
module: [http_2xx]
|
||||
static_configs:
|
||||
- targets:
|
||||
- https://google.com
|
||||
- https://1.1.1.1
|
||||
- http://192.168.0.1
|
||||
labels:
|
||||
group: 'external-probes'
|
||||
relabel_configs:
|
||||
- source_labels: [__address__]
|
||||
target_label: __param_target
|
||||
- source_labels: [__param_target]
|
||||
target_label: instance
|
||||
- target_label: __address__
|
||||
replacement: blackbox-exporter:9115
|
||||
|
||||
- job_name: 'speedtest_atlantis'
|
||||
scrape_interval: 15m
|
||||
scrape_timeout: 90s # <-- extended timeout
|
||||
static_configs:
|
||||
- targets: ['speedtest-exporter:9798']
|
||||
|
||||
- job_name: 'speedtest_calypso'
|
||||
scrape_interval: 15m
|
||||
scrape_timeout: 90s # <-- extended timeout
|
||||
static_configs:
|
||||
- targets: ['192.168.0.250:9798']
|
||||
@@ -0,0 +1,38 @@
|
||||
scrape_configs:
|
||||
- job_name: prometheus
|
||||
scrape_interval: 30s
|
||||
static_configs:
|
||||
- targets: ['localhost:9090']
|
||||
labels:
|
||||
group: 'prometheus'
|
||||
- job_name: watchtower-docker
|
||||
scrape_interval: 10m
|
||||
metrics_path: /v1/metrics
|
||||
bearer_token: "REDACTED_TOKEN" # your API_TOKEN # pragma: allowlist secret
|
||||
static_configs:
|
||||
- targets: ['watchtower:8080']
|
||||
- job_name: node-docker
|
||||
scrape_interval: 5s
|
||||
static_configs:
|
||||
- targets: ['prometheus-node:9100']
|
||||
- job_name: cadvisor-docker
|
||||
scrape_interval: 5s
|
||||
static_configs:
|
||||
- targets: ['prometheus-cadvisor:8080']
|
||||
- job_name: snmp-docker
|
||||
scrape_interval: 5s
|
||||
static_configs:
|
||||
- targets: ['192.168.1.132'] # Your NAS IP
|
||||
metrics_path: /snmp
|
||||
params:
|
||||
module: [synology]
|
||||
auth: [snmpv3]
|
||||
relabel_configs:
|
||||
- source_labels: [__address__]
|
||||
target_label: __param_target
|
||||
- source_labels: [__param_target]
|
||||
target_label: instance
|
||||
- source_labels: [__param_target]
|
||||
regex: (.*)
|
||||
replacement: prometheus-snmp:9116
|
||||
target_label: __address__
|
||||
907
hosts/synology/atlantis/grafana_prometheus/snmp.yml
Normal file
907
hosts/synology/atlantis/grafana_prometheus/snmp.yml
Normal file
@@ -0,0 +1,907 @@
|
||||
auths:
|
||||
snmpv3:
|
||||
version: 3
|
||||
security_level: authPriv
|
||||
auth_protocol: MD5
|
||||
username: snmp-exporter
|
||||
password: "REDACTED_PASSWORD" # pragma: allowlist secret
|
||||
priv_protocol: DES
|
||||
priv_password: "REDACTED_PASSWORD" # pragma: allowlist secret
|
||||
modules:
|
||||
synology:
|
||||
walk:
|
||||
- 1.3.6.1.2.1.2
|
||||
- 1.3.6.1.2.1.31.1.1
|
||||
- 1.3.6.1.4.1.6574.1
|
||||
- 1.3.6.1.4.1.6574.2
|
||||
- 1.3.6.1.4.1.6574.3
|
||||
- 1.3.6.1.4.1.6574.6
|
||||
metrics:
|
||||
- name: ifNumber
|
||||
oid: 1.3.6.1.2.1.2.1
|
||||
type: gauge
|
||||
help: The number of network interfaces (regardless of their current state) present on this system. - 1.3.6.1.2.1.2.1
|
||||
- name: ifIndex
|
||||
oid: 1.3.6.1.2.1.2.2.1.1
|
||||
type: gauge
|
||||
help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifDescr
|
||||
oid: 1.3.6.1.2.1.2.2.1.2
|
||||
type: DisplayString
|
||||
help: A textual string containing information about the interface - 1.3.6.1.2.1.2.2.1.2
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifMtu
|
||||
oid: 1.3.6.1.2.1.2.2.1.4
|
||||
type: gauge
|
||||
help: The size of the largest packet which can be sent/received on the interface, specified in octets - 1.3.6.1.2.1.2.2.1.4
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifSpeed
|
||||
oid: 1.3.6.1.2.1.2.2.1.5
|
||||
type: gauge
|
||||
help: An estimate of the interface's current bandwidth in bits per second - 1.3.6.1.2.1.2.2.1.5
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifPhysAddress
|
||||
oid: 1.3.6.1.2.1.2.2.1.6
|
||||
type: PhysAddress48
|
||||
help: The interface's address at its protocol sub-layer - 1.3.6.1.2.1.2.2.1.6
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifAdminStatus
|
||||
oid: 1.3.6.1.2.1.2.2.1.7
|
||||
type: gauge
|
||||
help: The desired state of the interface - 1.3.6.1.2.1.2.2.1.7
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
enum_values:
|
||||
1: up
|
||||
2: down
|
||||
3: testing
|
||||
- name: ifOperStatus
|
||||
oid: 1.3.6.1.2.1.2.2.1.8
|
||||
type: gauge
|
||||
help: The current operational state of the interface - 1.3.6.1.2.1.2.2.1.8
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
enum_values:
|
||||
1: up
|
||||
2: down
|
||||
3: testing
|
||||
4: unknown
|
||||
5: dormant
|
||||
6: notPresent
|
||||
7: lowerLayerDown
|
||||
- name: ifLastChange
|
||||
oid: 1.3.6.1.2.1.2.2.1.9
|
||||
type: gauge
|
||||
help: The value of sysUpTime at the time the interface entered its current operational state - 1.3.6.1.2.1.2.2.1.9
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInOctets
|
||||
oid: 1.3.6.1.2.1.2.2.1.10
|
||||
type: counter
|
||||
help: The total number of octets received on the interface, including framing characters - 1.3.6.1.2.1.2.2.1.10
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInUcastPkts
|
||||
oid: 1.3.6.1.2.1.2.2.1.11
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast
|
||||
or broadcast address at this sub-layer - 1.3.6.1.2.1.2.2.1.11
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInNUcastPkts
|
||||
oid: 1.3.6.1.2.1.2.2.1.12
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast
|
||||
or broadcast address at this sub-layer - 1.3.6.1.2.1.2.2.1.12
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInDiscards
|
||||
oid: 1.3.6.1.2.1.2.2.1.13
|
||||
type: counter
|
||||
help: The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent
|
||||
their being deliverable to a higher-layer protocol - 1.3.6.1.2.1.2.2.1.13
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInErrors
|
||||
oid: 1.3.6.1.2.1.2.2.1.14
|
||||
type: counter
|
||||
help: For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being
|
||||
deliverable to a higher-layer protocol - 1.3.6.1.2.1.2.2.1.14
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInUnknownProtos
|
||||
oid: 1.3.6.1.2.1.2.2.1.15
|
||||
type: counter
|
||||
help: For packet-oriented interfaces, the number of packets received via the interface which were discarded because
|
||||
of an unknown or unsupported protocol - 1.3.6.1.2.1.2.2.1.15
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutOctets
|
||||
oid: 1.3.6.1.2.1.2.2.1.16
|
||||
type: counter
|
||||
help: The total number of octets transmitted out of the interface, including framing characters - 1.3.6.1.2.1.2.2.1.16
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutUcastPkts
|
||||
oid: 1.3.6.1.2.1.2.2.1.17
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were not addressed
|
||||
to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.17
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutNUcastPkts
|
||||
oid: 1.3.6.1.2.1.2.2.1.18
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were addressed to
|
||||
a multicast or broadcast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.18
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutDiscards
|
||||
oid: 1.3.6.1.2.1.2.2.1.19
|
||||
type: counter
|
||||
help: The number of outbound packets which were chosen to be discarded even though no errors had been detected to
|
||||
prevent their being transmitted - 1.3.6.1.2.1.2.2.1.19
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutErrors
|
||||
oid: 1.3.6.1.2.1.2.2.1.20
|
||||
type: counter
|
||||
help: For packet-oriented interfaces, the number of outbound packets that could not be transmitted because of errors
|
||||
- 1.3.6.1.2.1.2.2.1.20
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutQLen
|
||||
oid: 1.3.6.1.2.1.2.2.1.21
|
||||
type: gauge
|
||||
help: The length of the output packet queue (in packets). - 1.3.6.1.2.1.2.2.1.21
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifSpecific
|
||||
oid: 1.3.6.1.2.1.2.2.1.22
|
||||
type: OctetString
|
||||
help: A reference to MIB definitions specific to the particular media being used to realize the interface - 1.3.6.1.2.1.2.2.1.22
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
help: The textual name of the interface - 1.3.6.1.2.1.31.1.1.1.1
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInMulticastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.2
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast
|
||||
address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.2
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInBroadcastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.3
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast
|
||||
address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.3
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutMulticastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.4
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were addressed to
|
||||
a multicast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.4
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutBroadcastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.5
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were addressed to
|
||||
a broadcast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.5
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCInOctets
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.6
|
||||
type: counter
|
||||
help: The total number of octets received on the interface, including framing characters - 1.3.6.1.2.1.31.1.1.1.6
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCInUcastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.7
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast
|
||||
or broadcast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.7
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCInMulticastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.8
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast
|
||||
address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.8
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCInBroadcastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.9
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast
|
||||
address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.9
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCOutOctets
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.10
|
||||
type: counter
|
||||
help: The total number of octets transmitted out of the interface, including framing characters - 1.3.6.1.2.1.31.1.1.1.10
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: REDACTED_APP_PASSWORD
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.11
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were not addressed
|
||||
to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.11
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCOutMulticastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.12
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were addressed to
|
||||
a multicast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.12
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCOutBroadcastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.13
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were addressed to
|
||||
a broadcast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.13
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifLinkUpDownTrapEnable
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.14
|
||||
type: gauge
|
||||
help: Indicates whether linkUp/linkDown traps should be generated for this interface - 1.3.6.1.2.1.31.1.1.1.14
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
enum_values:
|
||||
1: enabled
|
||||
2: disabled
|
||||
- name: ifHighSpeed
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.15
|
||||
type: gauge
|
||||
help: An estimate of the interface's current bandwidth in units of 1,000,000 bits per second - 1.3.6.1.2.1.31.1.1.1.15
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifPromiscuousMode
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.16
|
||||
type: gauge
|
||||
help: This object has a value of false(2) if this interface only accepts packets/frames that are addressed to this
|
||||
station - 1.3.6.1.2.1.31.1.1.1.16
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
enum_values:
|
||||
1: 'true'
|
||||
2: 'false'
|
||||
- name: ifConnectorPresent
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.17
|
||||
type: gauge
|
||||
help: This object has the value 'true(1)' if the interface sublayer has a physical connector and the value 'false(2)'
|
||||
otherwise. - 1.3.6.1.2.1.31.1.1.1.17
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
enum_values:
|
||||
1: 'true'
|
||||
2: 'false'
|
||||
- name: ifAlias
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.18
|
||||
type: DisplayString
|
||||
help: This object is an 'alias' name for the interface as specified by a network manager, and provides a non-volatile
|
||||
'handle' for the interface - 1.3.6.1.2.1.31.1.1.1.18
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifCounterDiscontinuityTime
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.19
|
||||
type: gauge
|
||||
help: The value of sysUpTime on the most recent occasion at which any one or more of this interface's counters suffered
|
||||
a discontinuity - 1.3.6.1.2.1.31.1.1.1.19
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: systemStatus
|
||||
oid: 1.3.6.1.4.1.6574.1.1
|
||||
type: gauge
|
||||
help: Synology system status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.1.1
|
||||
- name: temperature
|
||||
oid: 1.3.6.1.4.1.6574.1.2
|
||||
type: gauge
|
||||
help: Synology system temperature The temperature of Disk Station uses Celsius degree. - 1.3.6.1.4.1.6574.1.2
|
||||
- name: powerStatus
|
||||
oid: 1.3.6.1.4.1.6574.1.3
|
||||
type: gauge
|
||||
help: Synology power status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.1.3
|
||||
- name: systemFanStatus
|
||||
oid: 1.3.6.1.4.1.6574.1.4.1
|
||||
type: gauge
|
||||
help: Synology system fan status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.1.4.1
|
||||
- name: cpuFanStatus
|
||||
oid: 1.3.6.1.4.1.6574.1.4.2
|
||||
type: gauge
|
||||
help: Synology cpu fan status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.1.4.2
|
||||
- name: modelName
|
||||
oid: 1.3.6.1.4.1.6574.1.5.1
|
||||
type: DisplayString
|
||||
help: The Model name of this NAS - 1.3.6.1.4.1.6574.1.5.1
|
||||
- name: serialNumber
|
||||
oid: 1.3.6.1.4.1.6574.1.5.2
|
||||
type: DisplayString
|
||||
help: The serial number of this NAS - 1.3.6.1.4.1.6574.1.5.2
|
||||
- name: version
|
||||
oid: 1.3.6.1.4.1.6574.1.5.3
|
||||
type: DisplayString
|
||||
help: The version of this DSM - 1.3.6.1.4.1.6574.1.5.3
|
||||
- name: REDACTED_APP_PASSWORD
|
||||
oid: 1.3.6.1.4.1.6574.1.5.4
|
||||
type: gauge
|
||||
help: This oid is for checking whether there is a latest DSM can be upgraded - 1.3.6.1.4.1.6574.1.5.4
|
||||
- name: REDACTED_APP_PASSWORD
|
||||
oid: 1.3.6.1.4.1.6574.1.6
|
||||
type: gauge
|
||||
help: Synology system controller number Controller A(0) Controller B(1) - 1.3.6.1.4.1.6574.1.6
|
||||
- name: diskIndex
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.1
|
||||
type: gauge
|
||||
help: The index of disk table - 1.3.6.1.4.1.6574.2.1.1.1
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
help: Synology disk ID The ID of disk is assigned by disk Station. - 1.3.6.1.4.1.6574.2.1.1.2
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: diskModel
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.3
|
||||
type: DisplayString
|
||||
help: Synology disk model name The disk model name will be showed here. - 1.3.6.1.4.1.6574.2.1.1.3
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: diskType
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.4
|
||||
type: DisplayString
|
||||
help: Synology disk type The type of disk will be showed here, including SATA, SSD and so on. - 1.3.6.1.4.1.6574.2.1.1.4
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: diskStatus
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.5
|
||||
type: gauge
|
||||
help: Synology disk status. Normal-1 Initialized-2 NotInitialized-3 SystemPartitionFailed-4 Crashed-5 - 1.3.6.1.4.1.6574.2.1.1.5
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: diskTemperature
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.6
|
||||
type: gauge
|
||||
help: Synology disk temperature The temperature of each disk uses Celsius degree. - 1.3.6.1.4.1.6574.2.1.1.6
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: raidIndex
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.1
|
||||
type: gauge
|
||||
help: The index of raid table - 1.3.6.1.4.1.6574.3.1.1.1
|
||||
indexes:
|
||||
- labelname: raidIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- raidIndex
|
||||
labelname: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
- name: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
help: Synology raid name The name of each raid will be showed here. - 1.3.6.1.4.1.6574.3.1.1.2
|
||||
indexes:
|
||||
- labelname: raidIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- raidIndex
|
||||
labelname: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
- name: raidStatus
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.3
|
||||
type: gauge
|
||||
help: Synology Raid status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.3.1.1.3
|
||||
indexes:
|
||||
- labelname: raidIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- raidIndex
|
||||
labelname: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
- name: raidFreeSize
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.4
|
||||
type: gauge
|
||||
help: Synology raid freesize Free space in bytes. - 1.3.6.1.4.1.6574.3.1.1.4
|
||||
indexes:
|
||||
- labelname: raidIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- raidIndex
|
||||
labelname: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
- name: raidTotalSize
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.5
|
||||
type: gauge
|
||||
help: Synology raid totalsize Total space in bytes. - 1.3.6.1.4.1.6574.3.1.1.5
|
||||
indexes:
|
||||
- labelname: raidIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- raidIndex
|
||||
labelname: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
- name: REDACTED_APP_PASSWORD
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.1
|
||||
type: gauge
|
||||
help: Service info index - 1.3.6.1.4.1.6574.6.1.1.1
|
||||
indexes:
|
||||
- labelname: REDACTED_APP_PASSWORD
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- REDACTED_APP_PASSWORD
|
||||
labelname: serviceName
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: REDACTED_APP_PASSWORD
|
||||
- name: serviceName
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.2
|
||||
type: DisplayString
|
||||
help: Service name - 1.3.6.1.4.1.6574.6.1.1.2
|
||||
indexes:
|
||||
- labelname: REDACTED_APP_PASSWORD
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- REDACTED_APP_PASSWORD
|
||||
labelname: serviceName
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: REDACTED_APP_PASSWORD
|
||||
- name: serviceUsers
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.3
|
||||
type: gauge
|
||||
help: Number of users using this service - 1.3.6.1.4.1.6574.6.1.1.3
|
||||
indexes:
|
||||
- labelname: REDACTED_APP_PASSWORD
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- REDACTED_APP_PASSWORD
|
||||
labelname: serviceName
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: REDACTED_APP_PASSWORD
|
||||
@@ -0,0 +1,907 @@
|
||||
auths:
|
||||
snmpv3:
|
||||
version: 3
|
||||
security_level: authPriv
|
||||
auth_protocol: MD5
|
||||
username: snmp-exporter
|
||||
password: "REDACTED_PASSWORD" # pragma: allowlist secret
|
||||
priv_protocol: DES
|
||||
priv_password: "REDACTED_PASSWORD" # pragma: allowlist secret
|
||||
modules:
|
||||
synology:
|
||||
walk:
|
||||
- 1.3.6.1.2.1.2
|
||||
- 1.3.6.1.2.1.31.1.1
|
||||
- 1.3.6.1.4.1.6574.1
|
||||
- 1.3.6.1.4.1.6574.2
|
||||
- 1.3.6.1.4.1.6574.3
|
||||
- 1.3.6.1.4.1.6574.6
|
||||
metrics:
|
||||
- name: ifNumber
|
||||
oid: 1.3.6.1.2.1.2.1
|
||||
type: gauge
|
||||
help: The number of network interfaces (regardless of their current state) present on this system. - 1.3.6.1.2.1.2.1
|
||||
- name: ifIndex
|
||||
oid: 1.3.6.1.2.1.2.2.1.1
|
||||
type: gauge
|
||||
help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifDescr
|
||||
oid: 1.3.6.1.2.1.2.2.1.2
|
||||
type: DisplayString
|
||||
help: A textual string containing information about the interface - 1.3.6.1.2.1.2.2.1.2
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifMtu
|
||||
oid: 1.3.6.1.2.1.2.2.1.4
|
||||
type: gauge
|
||||
help: The size of the largest packet which can be sent/received on the interface, specified in octets - 1.3.6.1.2.1.2.2.1.4
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifSpeed
|
||||
oid: 1.3.6.1.2.1.2.2.1.5
|
||||
type: gauge
|
||||
help: An estimate of the interface's current bandwidth in bits per second - 1.3.6.1.2.1.2.2.1.5
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifPhysAddress
|
||||
oid: 1.3.6.1.2.1.2.2.1.6
|
||||
type: PhysAddress48
|
||||
help: The interface's address at its protocol sub-layer - 1.3.6.1.2.1.2.2.1.6
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifAdminStatus
|
||||
oid: 1.3.6.1.2.1.2.2.1.7
|
||||
type: gauge
|
||||
help: The desired state of the interface - 1.3.6.1.2.1.2.2.1.7
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
enum_values:
|
||||
1: up
|
||||
2: down
|
||||
3: testing
|
||||
- name: ifOperStatus
|
||||
oid: 1.3.6.1.2.1.2.2.1.8
|
||||
type: gauge
|
||||
help: The current operational state of the interface - 1.3.6.1.2.1.2.2.1.8
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
enum_values:
|
||||
1: up
|
||||
2: down
|
||||
3: testing
|
||||
4: unknown
|
||||
5: dormant
|
||||
6: notPresent
|
||||
7: lowerLayerDown
|
||||
- name: ifLastChange
|
||||
oid: 1.3.6.1.2.1.2.2.1.9
|
||||
type: gauge
|
||||
help: The value of sysUpTime at the time the interface entered its current operational state - 1.3.6.1.2.1.2.2.1.9
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInOctets
|
||||
oid: 1.3.6.1.2.1.2.2.1.10
|
||||
type: counter
|
||||
help: The total number of octets received on the interface, including framing characters - 1.3.6.1.2.1.2.2.1.10
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInUcastPkts
|
||||
oid: 1.3.6.1.2.1.2.2.1.11
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast
|
||||
or broadcast address at this sub-layer - 1.3.6.1.2.1.2.2.1.11
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInNUcastPkts
|
||||
oid: 1.3.6.1.2.1.2.2.1.12
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast
|
||||
or broadcast address at this sub-layer - 1.3.6.1.2.1.2.2.1.12
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInDiscards
|
||||
oid: 1.3.6.1.2.1.2.2.1.13
|
||||
type: counter
|
||||
help: The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent
|
||||
their being deliverable to a higher-layer protocol - 1.3.6.1.2.1.2.2.1.13
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInErrors
|
||||
oid: 1.3.6.1.2.1.2.2.1.14
|
||||
type: counter
|
||||
help: For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being
|
||||
deliverable to a higher-layer protocol - 1.3.6.1.2.1.2.2.1.14
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInUnknownProtos
|
||||
oid: 1.3.6.1.2.1.2.2.1.15
|
||||
type: counter
|
||||
help: For packet-oriented interfaces, the number of packets received via the interface which were discarded because
|
||||
of an unknown or unsupported protocol - 1.3.6.1.2.1.2.2.1.15
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutOctets
|
||||
oid: 1.3.6.1.2.1.2.2.1.16
|
||||
type: counter
|
||||
help: The total number of octets transmitted out of the interface, including framing characters - 1.3.6.1.2.1.2.2.1.16
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutUcastPkts
|
||||
oid: 1.3.6.1.2.1.2.2.1.17
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were not addressed
|
||||
to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.17
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutNUcastPkts
|
||||
oid: 1.3.6.1.2.1.2.2.1.18
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were addressed to
|
||||
a multicast or broadcast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.18
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutDiscards
|
||||
oid: 1.3.6.1.2.1.2.2.1.19
|
||||
type: counter
|
||||
help: The number of outbound packets which were chosen to be discarded even though no errors had been detected to
|
||||
prevent their being transmitted - 1.3.6.1.2.1.2.2.1.19
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutErrors
|
||||
oid: 1.3.6.1.2.1.2.2.1.20
|
||||
type: counter
|
||||
help: For packet-oriented interfaces, the number of outbound packets that could not be transmitted because of errors
|
||||
- 1.3.6.1.2.1.2.2.1.20
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutQLen
|
||||
oid: 1.3.6.1.2.1.2.2.1.21
|
||||
type: gauge
|
||||
help: The length of the output packet queue (in packets). - 1.3.6.1.2.1.2.2.1.21
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifSpecific
|
||||
oid: 1.3.6.1.2.1.2.2.1.22
|
||||
type: OctetString
|
||||
help: A reference to MIB definitions specific to the particular media being used to realize the interface - 1.3.6.1.2.1.2.2.1.22
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
help: The textual name of the interface - 1.3.6.1.2.1.31.1.1.1.1
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInMulticastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.2
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast
|
||||
address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.2
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifInBroadcastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.3
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast
|
||||
address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.3
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutMulticastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.4
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were addressed to
|
||||
a multicast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.4
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifOutBroadcastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.5
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were addressed to
|
||||
a broadcast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.5
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCInOctets
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.6
|
||||
type: counter
|
||||
help: The total number of octets received on the interface, including framing characters - 1.3.6.1.2.1.31.1.1.1.6
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCInUcastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.7
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were not addressed to a multicast
|
||||
or broadcast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.7
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCInMulticastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.8
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a multicast
|
||||
address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.8
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCInBroadcastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.9
|
||||
type: counter
|
||||
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, which were addressed to a broadcast
|
||||
address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.9
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCOutOctets
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.10
|
||||
type: counter
|
||||
help: The total number of octets transmitted out of the interface, including framing characters - 1.3.6.1.2.1.31.1.1.1.10
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: REDACTED_APP_PASSWORD
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.11
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were not addressed
|
||||
to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.11
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCOutMulticastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.12
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were addressed to
|
||||
a multicast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.12
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifHCOutBroadcastPkts
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.13
|
||||
type: counter
|
||||
help: The total number of packets that higher-level protocols requested be transmitted, and which were addressed to
|
||||
a broadcast address at this sub-layer, including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.13
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifLinkUpDownTrapEnable
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.14
|
||||
type: gauge
|
||||
help: Indicates whether linkUp/linkDown traps should be generated for this interface - 1.3.6.1.2.1.31.1.1.1.14
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
enum_values:
|
||||
1: enabled
|
||||
2: disabled
|
||||
- name: ifHighSpeed
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.15
|
||||
type: gauge
|
||||
help: An estimate of the interface's current bandwidth in units of 1,000,000 bits per second - 1.3.6.1.2.1.31.1.1.1.15
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifPromiscuousMode
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.16
|
||||
type: gauge
|
||||
help: This object has a value of false(2) if this interface only accepts packets/frames that are addressed to this
|
||||
station - 1.3.6.1.2.1.31.1.1.1.16
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
enum_values:
|
||||
1: 'true'
|
||||
2: 'false'
|
||||
- name: ifConnectorPresent
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.17
|
||||
type: gauge
|
||||
help: This object has the value 'true(1)' if the interface sublayer has a physical connector and the value 'false(2)'
|
||||
otherwise. - 1.3.6.1.2.1.31.1.1.1.17
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
enum_values:
|
||||
1: 'true'
|
||||
2: 'false'
|
||||
- name: ifAlias
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.18
|
||||
type: DisplayString
|
||||
help: This object is an 'alias' name for the interface as specified by a network manager, and provides a non-volatile
|
||||
'handle' for the interface - 1.3.6.1.2.1.31.1.1.1.18
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: ifCounterDiscontinuityTime
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.19
|
||||
type: gauge
|
||||
help: The value of sysUpTime on the most recent occasion at which any one or more of this interface's counters suffered
|
||||
a discontinuity - 1.3.6.1.2.1.31.1.1.1.19
|
||||
indexes:
|
||||
- labelname: ifIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- ifIndex
|
||||
labelname: ifName
|
||||
oid: 1.3.6.1.2.1.31.1.1.1.1
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: ifIndex
|
||||
- name: systemStatus
|
||||
oid: 1.3.6.1.4.1.6574.1.1
|
||||
type: gauge
|
||||
help: Synology system status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.1.1
|
||||
- name: temperature
|
||||
oid: 1.3.6.1.4.1.6574.1.2
|
||||
type: gauge
|
||||
help: Synology system temperature The temperature of Disk Station uses Celsius degree. - 1.3.6.1.4.1.6574.1.2
|
||||
- name: powerStatus
|
||||
oid: 1.3.6.1.4.1.6574.1.3
|
||||
type: gauge
|
||||
help: Synology power status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.1.3
|
||||
- name: systemFanStatus
|
||||
oid: 1.3.6.1.4.1.6574.1.4.1
|
||||
type: gauge
|
||||
help: Synology system fan status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.1.4.1
|
||||
- name: cpuFanStatus
|
||||
oid: 1.3.6.1.4.1.6574.1.4.2
|
||||
type: gauge
|
||||
help: Synology cpu fan status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.1.4.2
|
||||
- name: modelName
|
||||
oid: 1.3.6.1.4.1.6574.1.5.1
|
||||
type: DisplayString
|
||||
help: The Model name of this NAS - 1.3.6.1.4.1.6574.1.5.1
|
||||
- name: serialNumber
|
||||
oid: 1.3.6.1.4.1.6574.1.5.2
|
||||
type: DisplayString
|
||||
help: The serial number of this NAS - 1.3.6.1.4.1.6574.1.5.2
|
||||
- name: version
|
||||
oid: 1.3.6.1.4.1.6574.1.5.3
|
||||
type: DisplayString
|
||||
help: The version of this DSM - 1.3.6.1.4.1.6574.1.5.3
|
||||
- name: REDACTED_APP_PASSWORD
|
||||
oid: 1.3.6.1.4.1.6574.1.5.4
|
||||
type: gauge
|
||||
help: This oid is for checking whether there is a latest DSM can be upgraded - 1.3.6.1.4.1.6574.1.5.4
|
||||
- name: REDACTED_APP_PASSWORD
|
||||
oid: 1.3.6.1.4.1.6574.1.6
|
||||
type: gauge
|
||||
help: Synology system controller number Controller A(0) Controller B(1) - 1.3.6.1.4.1.6574.1.6
|
||||
- name: diskIndex
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.1
|
||||
type: gauge
|
||||
help: The index of disk table - 1.3.6.1.4.1.6574.2.1.1.1
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
help: Synology disk ID The ID of disk is assigned by disk Station. - 1.3.6.1.4.1.6574.2.1.1.2
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: diskModel
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.3
|
||||
type: DisplayString
|
||||
help: Synology disk model name The disk model name will be showed here. - 1.3.6.1.4.1.6574.2.1.1.3
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: diskType
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.4
|
||||
type: DisplayString
|
||||
help: Synology disk type The type of disk will be showed here, including SATA, SSD and so on. - 1.3.6.1.4.1.6574.2.1.1.4
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: diskStatus
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.5
|
||||
type: gauge
|
||||
help: Synology disk status. Normal-1 Initialized-2 NotInitialized-3 SystemPartitionFailed-4 Crashed-5 - 1.3.6.1.4.1.6574.2.1.1.5
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: diskTemperature
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.6
|
||||
type: gauge
|
||||
help: Synology disk temperature The temperature of each disk uses Celsius degree. - 1.3.6.1.4.1.6574.2.1.1.6
|
||||
indexes:
|
||||
- labelname: diskIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- diskIndex
|
||||
labelname: diskID
|
||||
oid: 1.3.6.1.4.1.6574.2.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: diskIndex
|
||||
- name: raidIndex
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.1
|
||||
type: gauge
|
||||
help: The index of raid table - 1.3.6.1.4.1.6574.3.1.1.1
|
||||
indexes:
|
||||
- labelname: raidIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- raidIndex
|
||||
labelname: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
- name: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
help: Synology raid name The name of each raid will be showed here. - 1.3.6.1.4.1.6574.3.1.1.2
|
||||
indexes:
|
||||
- labelname: raidIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- raidIndex
|
||||
labelname: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
- name: raidStatus
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.3
|
||||
type: gauge
|
||||
help: Synology Raid status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.3.1.1.3
|
||||
indexes:
|
||||
- labelname: raidIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- raidIndex
|
||||
labelname: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
- name: raidFreeSize
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.4
|
||||
type: gauge
|
||||
help: Synology raid freesize Free space in bytes. - 1.3.6.1.4.1.6574.3.1.1.4
|
||||
indexes:
|
||||
- labelname: raidIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- raidIndex
|
||||
labelname: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
- name: raidTotalSize
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.5
|
||||
type: gauge
|
||||
help: Synology raid totalsize Total space in bytes. - 1.3.6.1.4.1.6574.3.1.1.5
|
||||
indexes:
|
||||
- labelname: raidIndex
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- raidIndex
|
||||
labelname: raidName
|
||||
oid: 1.3.6.1.4.1.6574.3.1.1.2
|
||||
type: DisplayString
|
||||
- name: REDACTED_APP_PASSWORD
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.1
|
||||
type: gauge
|
||||
help: Service info index - 1.3.6.1.4.1.6574.6.1.1.1
|
||||
indexes:
|
||||
- labelname: REDACTED_APP_PASSWORD
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- REDACTED_APP_PASSWORD
|
||||
labelname: serviceName
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: REDACTED_APP_PASSWORD
|
||||
- name: serviceName
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.2
|
||||
type: DisplayString
|
||||
help: Service name - 1.3.6.1.4.1.6574.6.1.1.2
|
||||
indexes:
|
||||
- labelname: REDACTED_APP_PASSWORD
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- REDACTED_APP_PASSWORD
|
||||
labelname: serviceName
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: REDACTED_APP_PASSWORD
|
||||
- name: serviceUsers
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.3
|
||||
type: gauge
|
||||
help: Number of users using this service - 1.3.6.1.4.1.6574.6.1.1.3
|
||||
indexes:
|
||||
- labelname: REDACTED_APP_PASSWORD
|
||||
type: gauge
|
||||
lookups:
|
||||
- labels:
|
||||
- REDACTED_APP_PASSWORD
|
||||
labelname: serviceName
|
||||
oid: 1.3.6.1.4.1.6574.6.1.1.2
|
||||
type: DisplayString
|
||||
- labels: []
|
||||
labelname: REDACTED_APP_PASSWORD
|
||||
Reference in New Issue
Block a user