Skip to content

Commit

Permalink
fix(timestamp): fix the timestamp locator for logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rnishtala-sumo committed Oct 8, 2024
1 parent e56746e commit ea5d544
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# vi: set ft=ruby :

Vagrant.configure('2') do |config|
config.vm.box = 'ubuntu/focal64'
config.vm.box = 'bento/ubuntu-22.04-arm64'
config.vm.disk :disk, size: "50GB", primary: true
config.vm.box_check_update = false
config.vm.host_name = 'sumologic-kubernetes-collection'
Expand All @@ -17,6 +17,12 @@ Vagrant.configure('2') do |config|
vb.name = 'sumologic-kubernetes-collection'
end

config.vm.provider 'parallels' do |vb|
vb.cpus = 8
vb.memory = 16384
vb.name = 'sumologic-kubernetes-collection'
end

config.vm.provider "qemu" do |qe, override|
override.vm.box = "perk/ubuntu-2204-arm64"
qe.gui = false
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/sumologic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ sumologic:
default_date_formats:
## Ensures that timestamp key has precedence over timestamp auto discovery
- format: epoch
locator: '\"timestamp\":(\\d+)'
locator: '"timestamp":(\d+)'

# filters:
# - name: "Test Exclude Debug"
Expand All @@ -243,7 +243,7 @@ sumologic:
default_date_formats:
## Ensures that timestamp key has precedence over timestamp auto discovery
- format: epoch
locator: '\"timestamp\":(\\d+)'
locator: '"timestamp":(\d+)'
default-otlp:
name: events-otlp
config-name: endpoint-events-otlp
Expand Down

0 comments on commit ea5d544

Please sign in to comment.