kennel 1.44.2 → 1.44.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a082a7fecbd48644ecf42e77031067157da065702cd9e25a2016e51abdd95ead
4
- data.tar.gz: 37e40cf691a4e39568b4e1025139d3dd61b48f3cfa142463c3b325cbe5133571
3
+ metadata.gz: 82488fef0ae45c53bb50527a0c4b2f8505e7351b92ac93da52ad55116a24cb05
4
+ data.tar.gz: 1f37533c21b572a27156970599c47e4be9de463145c45ebfc2ec2d0b0f10eea8
5
5
  SHA512:
6
- metadata.gz: 6f881bb79cfcd83e9955a9d9c3571d956d77ecd2fa7d46c2155438cc424e62ddc88ccb42eaf1c7be113abaab1a544ba2fc152078e1fe7938d4f7f0d6325ca031
7
- data.tar.gz: 8790990af82edc96f91ca68b901dede5a6e4515ef7675c5a86d61ff0e5210dfe62a873eeb9803a8badec0eecdf4dfa6a3cdde2f445a21774e901a5eed18587e6
6
+ metadata.gz: d92161b6b85b7a3f248e8419211f4c6ec135e7bd94d09cf3307d99682c711cc4fd6f1ec08bdc6c14853d33deaefe3f25ac7d339e858939cba78d698e8a6b0c5f
7
+ data.tar.gz: 55c31707217384ee4c182ceab20015f6685854a864a0aad4dcb794b298905732d8e3bfc2c863c27aff68e4a661a46bd02e7f25610a68edb760bb4a434972fd95
data/Readme.md CHANGED
@@ -105,9 +105,9 @@ end
105
105
  - datadog is updated by travis
106
106
 
107
107
  ### Adding a new dashboard
108
- - go to [datadog dashboard UI](https://app.datadoghq.com/dashboar/lists) and click on _New Dashboard_ to create a dashboard
108
+ - go to [datadog dashboard UI](https://app.datadoghq.com/dashboard/lists) and click on _New Dashboard_ to create a dashboard
109
109
  - get the `id` from the url
110
- - `RESOURCE=dashboard ID=12345 bundle exec rake kennel:import`
110
+ - `RESOURCE=dashboard ID=abc-def-ghi bundle exec rake kennel:import`
111
111
  - see below
112
112
 
113
113
  ### Updating an existing dashboard
@@ -121,7 +121,7 @@ end
121
121
  [
122
122
  Kennel::Models::Dashboard.new(
123
123
  self,
124
- id: -> { 123457 }, # id from datadog url, not needed when creating a new dashboard
124
+ id: -> { "abc-def-ghi" }, # id from datadog url, not needed when creating a new dashboard
125
125
  title: -> { "My Dashboard" },
126
126
  description: -> { "Overview of foobar" },
127
127
  template_variables: -> { ["environment"] }, # see https://docs.datadoghq.com/api/?lang=ruby#timeboards
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Kennel
3
- VERSION = "1.44.2"
3
+ VERSION = "1.44.3"
4
4
  end
@@ -87,9 +87,9 @@ end
87
87
  - datadog is updated by travis
88
88
 
89
89
  ### Adding a new dashboard
90
- - go to [datadog dashboard UI](https://app.datadoghq.com/dashboar/lists) and click on _New Dashboard_ to create a dashboard
90
+ - go to [datadog dashboard UI](https://app.datadoghq.com/dashboard/lists) and click on _New Dashboard_ to create a dashboard
91
91
  - get the `id` from the url
92
- - `RESOURCE=dashboard ID=12345 bundle exec rake kennel:import`
92
+ - `RESOURCE=dashboard ID=abc-def-ghi bundle exec rake kennel:import`
93
93
  - see below
94
94
 
95
95
  ### Updating an existing dashboard
@@ -103,7 +103,7 @@ end
103
103
  [
104
104
  Kennel::Models::Dashboard.new(
105
105
  self,
106
- id: -> { 123457 }, # id from datadog url, not needed when creating a new dashboard
106
+ id: -> { "abc-def-ghi" }, # id from datadog url, not needed when creating a new dashboard
107
107
  title: -> { "My Dashboard" },
108
108
  description: -> { "Overview of foobar" },
109
109
  template_variables: -> { ["environment"] }, # see https://docs.datadoghq.com/api/?lang=ruby#timeboards
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kennel
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.44.2
4
+ version: 1.44.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Grosser