mirror of
https://github.com/XuehaiPan/nvitop.git
synced 2026-05-16 14:16:00 -06:00
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
# This file is part of nvitop, the interactive NVIDIA-GPU process viewer.
|
|
#
|
|
# Copyright 2021-2025 Xuehai Pan. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# ==============================================================================
|
|
"""Utility functions for ``nvitop-exporter``."""
|
|
|
|
import socket
|
|
|
|
|
|
__all__ = ['get_ip_address']
|
|
|
|
|
|
# Reference: https://stackoverflow.com/a/28950776
|
|
def get_ip_address() -> str:
|
|
"""Get the IP address of the current machine."""
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
s.settimeout(0.0)
|
|
try:
|
|
# Doesn't even have to be reachable
|
|
s.connect(('10.254.254.254', 1))
|
|
ip_address = s.getsockname()[0]
|
|
except Exception: # noqa: BLE001 # pylint: disable=broad-except
|
|
ip_address = '127.0.0.1'
|
|
finally:
|
|
s.close()
|
|
return ip_address
|