Splunk Search

How do I use the map search in django?

freeofwind
New Member

{%searchmanager id="test"
search='eventcount summarize=false index=$input_index$ | fields index | map search="|metadata type hosts index=$index$ | eval index=$index$ | search totalCount > 0" | fields index host recentTime'|token_safe%}

simpleXML is $$index$$.
Is Django?

Tags (2)
0 Karma

Aaroncgray
New Member

GeoDjango could handle something like that. Supposing your Home model looks like this:

from django.contrib.gis.db.models import PointField

class Home(Model):
location = PointField()
.. etc

You could fetch all Home models within x miles of a point like this:

from django.contrib.gis.measure import D
from django.contrib.gis.geos import Point

Home.objects.filter(location__distance_lte=(Point([...]), D(mi=x)))

Basically, what you need to give to the filter is a tuple containing a Geometry (Point in your case), and the distance(with the D object. You have a large range of units to represent the distance, in your case mi).

Also, this won't work in MySQL because there is no backend function to handle it. Your best bet is PostgreSQL. For any writing help you can use this essay writing service uk( http://top5essaywriters.com ) for a better support.

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...