All Apps and Add-ons

Philips Hue Alert Action: How to manually specify Hue Bridge IP?

alexlomas
Path Finder

At the moment, I guess the Philips Hue Alert Action app is trying to do a local subnet discovery via UPnP. Is there any way to force the IP of a bridge in circumstances where the client browser, Splunk server, and Hue Bridge are on different subnets?

0 Karma
1 Solution

alexlomas
Path Finder

OK, so, after a bit of tinkering, this is what you need to do:

In hue_alerts\bin\hue.py:

Comment out the existing discover_bridges_nupnp() function and add a new one in as below:

#def discover_bridges_nupnp():
    #req = urllib2.Request('https://www.meethue.com/api/nupnp')
    #res = urllib2.urlopen(req)
    #data = json.loads(res.read())
    #return [dict(id=b['id'], ip=b['internalipaddress']) for b in data]

def discover_bridges_nupnp():
    bridgeip = 'the IP of your bridge'
    bridgeid = 'the bridge ID'
    return [dict(id=bridgeid, ip=bridgeip)]

You can find the bridge ID through the API, or if you have the Hue App up and running, if you go to sign in to the hue online account you'll find it in the URL it posts. It will contain the MAC address of the bridge which is also printed on it on a label.

View solution in original post

0 Karma

alexlomas
Path Finder

OK, so, after a bit of tinkering, this is what you need to do:

In hue_alerts\bin\hue.py:

Comment out the existing discover_bridges_nupnp() function and add a new one in as below:

#def discover_bridges_nupnp():
    #req = urllib2.Request('https://www.meethue.com/api/nupnp')
    #res = urllib2.urlopen(req)
    #data = json.loads(res.read())
    #return [dict(id=b['id'], ip=b['internalipaddress']) for b in data]

def discover_bridges_nupnp():
    bridgeip = 'the IP of your bridge'
    bridgeid = 'the bridge ID'
    return [dict(id=bridgeid, ip=bridgeip)]

You can find the bridge ID through the API, or if you have the Hue App up and running, if you go to sign in to the hue online account you'll find it in the URL it posts. It will contain the MAC address of the bridge which is also printed on it on a label.

0 Karma
Get Updates on the Splunk Community!

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...