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!

Index This | What’s a riddle wrapped in an enigma?

September 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this ...

BORE at .conf25

Boss Of Regular Expression (BORE) was an interactive session run again this year at .conf25 by the brilliant ...

OpenTelemetry for Legacy Apps? Yes, You Can!

This article is a follow-up to my previous article posted on the OpenTelemetry Blog, "Your Critical Legacy App ...