Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ If the request does not encounter errors, you receive the following result:
{
"date" : {
"field" : "release_date",
"timezone" : "{{ beat.timezone }}",
"timezone" : "{{ event.timezone }}",
"formats" : [
"ISO8601"
]
Expand Down Expand Up @@ -702,7 +702,7 @@ If the request does not encounter errors, you receive the following result:
{
"date" : {
"field" : "tpep_pickup_datetime",
"timezone" : "{{ beat.timezone }}",
"timezone" : "{{ event.timezone }}",
"formats" : [
"yyyy-MM-dd HH:mm:ss"
]
Expand Down Expand Up @@ -1577,7 +1577,7 @@ this:
{
"date" : {
"field" : "timestamp",
"timezone" : "{{ beat.timezone }}",
"timezone" : "{{ event.timezone }}",
"formats" : [
"ISO8601"
]
Expand Down Expand Up @@ -1743,7 +1743,7 @@ this:
{
"date" : {
"field" : "timestamp",
"timezone" : "{{ beat.timezone }}",
"timezone" : "{{ event.timezone }}",
"formats" : [
"ISO8601"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public final class FileStructureUtils {
private static final int KEYWORD_MAX_LEN = 256;
private static final int KEYWORD_MAX_SPACES = 5;

private static final String BEAT_TIMEZONE_FIELD = "beat.timezone";
private static final String BEAT_TIMEZONE_FIELD = "event.timezone";

private FileStructureUtils() {
}
Expand Down