@dx-do/cli 5.2.37 → 5.2.43
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.
- package/README.md +3 -7
- package/package.json +1 -1
- package/dist-node/browseragent-snippet.template-9megjp8a.html +0 -12
- package/dist-node/bulkvertexpatch-1a4qy5vb.md +0 -78
- package/dist-node/bundle.pbd-38r15kyd.template +0 -13
- package/dist-node/bundle.profile-1wpzpt3d.template +0 -2
- package/dist-node/configuration-8c1w9b90.md +0 -104
- package/dist-node/dashboards-x0xddksy.md +0 -17
- package/dist-node/default-licensing-config-0p879qpb.template +0 -122
- package/dist-node/description.md-qwc2bj9r.template +0 -30
- package/dist-node/installInstructions.md-k9ghf3dr.template +0 -21
- package/dist-node/main.js +0 -243007
- package/dist-node/time-format-0595g01j.md +0 -41
- package/dist-node/toggles.pbd-9wscbmng.template +0 -2
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
## Let's just say it out loud: time formatting from the command line sucks.
|
|
2
|
-
|
|
3
|
-
But there are some easy consistent options for many time range commands including
|
|
4
|
-
|
|
5
|
-
* metric data
|
|
6
|
-
* agent get-trace-summaries
|
|
7
|
-
|
|
8
|
-
The absolutely easiest way, IMO is `ISO Durations`.
|
|
9
|
-
|
|
10
|
-
The commands above take
|
|
11
|
-
|
|
12
|
-
* endTime + relativeStartTime
|
|
13
|
-
* startTime + relativeEndTime
|
|
14
|
-
|
|
15
|
-
## Let's start with examples:
|
|
16
|
-
|
|
17
|
-
### Time period ends 1day+3 hours ago, and begins 2 hours before that.
|
|
18
|
-
```
|
|
19
|
-
endTime=P1DT3H relativeStartDuration=PT2H
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
### Time period starts 1week+7hours ago and ends 30 minutes after that.
|
|
23
|
-
```
|
|
24
|
-
startTime=P1WT3H relativeEndDuration=PT30M
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
* If you specify a partial for endTime or startTime, that is relative to NOW.
|
|
28
|
-
* relativeStartDuration/relativeEndDuration is relative to the endTime/startTime.
|
|
29
|
-
* There is no need to specify a negative
|
|
30
|
-
|
|
31
|
-
* P = REQUIRED START INDICATOR FOR ISO8601 Partial
|
|
32
|
-
* Y = years
|
|
33
|
-
* M = months
|
|
34
|
-
* W = weeks
|
|
35
|
-
* D = days
|
|
36
|
-
* T = delineator between dates and times, necessary to disambiguate between months and minutes
|
|
37
|
-
* H = hours
|
|
38
|
-
* M = minutes
|
|
39
|
-
* S = seconds
|
|
40
|
-
|
|
41
|
-
|