1) У меня есть файл журнала с именем version.txt, и мне нужно отфильтровать все слова с ключевым словом «took ? ms». Число перед ms («took ?? ms») различается для каждой записи журнала.
Вывод должен быть таким, как показано ниже:
took 4 ms
took 3 ms
took 4 ms
took 5 ms
2) Также можно перечислить значения, которые больше 100. То есть, следует перечислить значения, которые больше 100. Вывод должен быть таким:
took 100 ms
took 110 ms
took 450 ms
Журнальный файл:
2020-03-11 06:19:29.857 INFO 29371 --- [ async-task-32] c.l.s.mapstore.InventoryPictureMapStore : InventoryPictureMapStore.store() called **took 4 ms** key: I,748518,00000,00000,595 Value: InventoryPicture [, sourcingEnabled=false, itemType=1, onHand_1=100, buffer_22=-1] writeToCassandra: true
2020-03-11 06:19:29.857 INFO 29371 --- [ async-task-10] c.l.s.mapstore.InventoryPictureMapStore : InventoryPictureMapStore.store() called **took 3 ms** key: I,26221,00000,00000,595 Value: InventoryPicture [, sourcingEnabled=false, itemType=1, onHand_1=-29, damaged_3=-1] writeToCassandra: true
2020-03-11 06:19:29.857 INFO 29371 --- [ async-task-13] c.l.s.mapstore.InventoryPictureMapStore : InventoryPictureMapStore.store() called **took 4 ms** key: I,960808,00000,00000,595 Value: InventoryPicture [, sourcingEnabled=false, itemType=1, onHand_1=14] writeToCassandra: true
2020-03-11 06:19:29.857 INFO 29371 --- [ async-task-30] c.l.s.mapstore.InventoryPictureMapStore : InventoryPictureMapStore.store() called **took 5 ms** key: I,771963,00000,00000,595 Value: InventoryPicture [, sourcingEnabled=false, itemType=1, onHand_1=64, buffer_22=-1] writeToCassandra: true
2020-03-11 06:19:29.857 INFO 29371 --- [ async-task-30] c.l.s.mapstore.InventoryPictureMapStore : InventoryPictureMapStore.store() called **took 100 ms** key: I,771963,00000,00000,595 Value: InventoryPicture [, sourcingEnabled=false, itemType=1, onHand_1=64, buffer_22=-1] writeToCassandra: true
2020-03-11 06:19:29.857 INFO 29371 --- [ async-task-30] c.l.s.mapstore.InventoryPictureMapStore : InventoryPictureMapStore.store() called **took 110 ms** key: I,771963,00000,00000,595 Value: InventoryPicture [, sourcingEnabled=false, itemType=1, onHand_1=64, buffer_22=-1] writeToCassandra: true
2020-03-11 06:19:29.857 INFO 29371 --- [ async-task-30] c.l.s.mapstore.InventoryPictureMapStore : InventoryPictureMapStore.store() called **took 400 ms** key: I,771963,00000,00000,595 Value: InventoryPicture [, sourcingEnabled=false, itemType=1, onHand_1=64, buffer_22=-1] writeToCassandra: true
решение1
Это вы можете попробовать:
grep -oP "took [[:digit:]]{3,} ms" file
Выход:
took 100 ms
took 110 ms
took 400 ms
Спасибо. Можно ли также вывести дату/время? Что-то вроде этого в качестве вывода:
2020-03-11 06:19:29.857 заняло 100 мс
2020-03-11 06:19:29.857 заняло 110 мс
Предполагая, что все записи имеют одинаковый формат, проще использовать cut
, sed
и grep
:
cut -d' ' -f1,2,15-17 file | sed 's/*//g' | grep -P "took [[:digit:]]{3,} ms"
2020-03-11 06:19:29.857 took 100 ms
2020-03-11 06:19:29.857 took 110 ms
2020-03-11 06:19:29.857 took 400 ms
решение2
Сделать это можно awk
следующим образом:
awk -F '**' '{print $2}' input_file
Чтобы добавить время и дату, вы можете использовать что-то вроде:
awk -F '**' '{split($1,a," ");print a[1]" " a[2]" " $2}' input_file