blob: f34f64dcff1334d5e25d85889a8fef8dd4e8c574 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.apache.drill.exec.store.splunk;
public class SplunkUtils {
/**
* These are special fields that alter the queries sent to Splunk.
*/
public enum SPECIAL_FIELDS {
/**
* The sourcetype of a query. Specifying the sourcetype can improve query performance.
*/
SOURCETYPE("sourcetype"),
/**
* Used to send raw SPL to Splunk
*/
SPL("spl"),
/**
* The earliest time boundary of a query, overwrites config variable
*/
EARLIEST_TIME("earliestTime"),
/**
* The latest time bound of a query, overwrites config variable
*/
LATEST_TIME("latestTime");
public final String field;
SPECIAL_FIELDS(String field) {
this.field = field;
}
}
/**
* Indicates whether the field in question is a special field and should be pushed down to the query or not.
* @param unknownField The field to be pushed down
* @return true if the field is a special field, false if not.
*/
public static boolean isSpecialField (String unknownField) {
for (SPECIAL_FIELDS specialFieldName : SPECIAL_FIELDS.values()) {
if (specialFieldName.field.equalsIgnoreCase(unknownField)) {
return true;
}
}
return false;
}
}