solarwinds_apm 5.1.1.pre → 5.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ae0d8d06b4f2387cf756bc56c5589eb5d751e6586f3e41574df7d10d0145176
4
- data.tar.gz: 7e6889e2c869e4bf4e6c470bb08f6899b86490a3616cea22da32b748fff8dec8
3
+ metadata.gz: a62089a2d5a8a8728332f7e5b98c8d11c9f84523ec187b0420c84f9dc5951191
4
+ data.tar.gz: d5aedff305013aea008f886362907ffd6ed1f36f73d8a2dc9ee5d08968b80d9e
5
5
  SHA512:
6
- metadata.gz: 1003698002dea40e3bdad632b31354d5ad9bc638b46aa3d239c36f20df92d6730ecfa4f3a7af3d0896570e8901e9d102f0968092e3d7651e85bbdabec48f0f72
7
- data.tar.gz: 18aa4ac8adc25f685edafeb7600cda3481419c3b8e611c4c56b2ff518a8294ca5d687e9508cb6e325c1f0cd477cd14c6b61447d1b27653269c973dc61e369345
6
+ metadata.gz: b9d8c4dc8e9847308f68d747b7262da560b0bff4d1653bf92856bc2599a2f600291daeaeb28f7e9c96ede12a408117b434b4bb8cefd9eeb0f6a7f5ec6838eb6b
7
+ data.tar.gz: 5a1f702b33e82fbc0464f7aed84411d55d5a1eaab38b47fc6f83dbf639673180698ec971e18b8cf9d3811a1b0441b09a53686103315b23c540df902fbcf67d76
@@ -37,7 +37,8 @@ bool Logging::log_profile_entry(Metadata &md, string &prof_op_id, pid_t tid, lon
37
37
  event->addInfo((char *)"Interval", interval);
38
38
 
39
39
  struct timeval tv;
40
- oboe_gettimeofday(&tv);
40
+ struct timezone *tz = NULL;
41
+ gettimeofday(&tv, tz);
41
42
  event->addInfo((char *)"Timestamp_u", (long)tv.tv_sec * 1000000 + (long)tv.tv_usec);
42
43
 
43
44
  return Logging::log_profile_event(event);
@@ -51,7 +52,8 @@ bool Logging::log_profile_exit(Metadata &md, string &prof_op_id, pid_t tid,
51
52
  event->addInfo((char *)"SnapshotsOmitted", omitted, num_omitted);
52
53
 
53
54
  struct timeval tv;
54
- oboe_gettimeofday(&tv);
55
+ struct timezone *tz = NULL;
56
+ gettimeofday(&tv, tz);
55
57
  event->addInfo((char *)"Timestamp_u", (long)tv.tv_sec * 1000000 + (long)tv.tv_usec);
56
58
 
57
59
  return Logging::log_profile_event(event);
@@ -8,8 +8,7 @@
8
8
 
9
9
  using namespace std;
10
10
 
11
- extern "C" int oboe_gettimeofday(struct timeval *tv);
12
-
11
+ // extern "C" int oboe_gettimeofday(struct timeval *tv);
13
12
 
14
13
  class Logging {
15
14
  public:
@@ -61,8 +61,8 @@ void print_prof_data_map() {
61
61
 
62
62
  long ts_now() {
63
63
  struct timeval tv;
64
-
65
- oboe_gettimeofday(&tv);
64
+ struct timezone *tz = NULL;
65
+ gettimeofday(&tv, tz);
66
66
  return (long)tv.tv_sec * 1000000 + (long)tv.tv_usec;
67
67
  }
68
68
 
@@ -8,8 +8,8 @@ module SolarWindsAPM
8
8
  module Version
9
9
  MAJOR = 5 # breaking,
10
10
  MINOR = 1 # feature,
11
- PATCH = 1 # fix => BFF
12
- PRE = "pre" # for pre-releases into packagecloud, set to nil for production releases into rubygems
11
+ PATCH = 2 # fix => BFF
12
+ PRE = nil # for pre-releases into packagecloud, set to nil for production releases into rubygems
13
13
 
14
14
  STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solarwinds_apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.1.pre
4
+ version: 5.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maia Engeli
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2022-10-08 00:00:00.000000000 Z
14
+ date: 2022-10-13 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: json
@@ -221,9 +221,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
221
221
  version: 2.5.0
222
222
  required_rubygems_version: !ruby/object:Gem::Requirement
223
223
  requirements:
224
- - - ">"
224
+ - - ">="
225
225
  - !ruby/object:Gem::Version
226
- version: 1.3.1
226
+ version: '0'
227
227
  requirements: []
228
228
  rubygems_version: 3.1.6
229
229
  signing_key: