forked from questdb/c-questdb-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
examples.manifest.yaml
125 lines (114 loc) · 3.51 KB
/
examples.manifest.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Basic ILP examples
- name: ilp
lang: c
path: examples/line_sender_c_example.c
header: |-
[C client library docs](https://github.com/questdb/c-questdb-client/blob/main/doc/C.md)
- name: ilp
lang: cpp
path: examples/line_sender_cpp_example.cpp
header: |-
[C++ client library docs](https://github.com/questdb/c-questdb-client/blob/main/doc/CPP.md)
- name: ilp
lang: rust
path: questdb-rs/examples/basic.rs
header: |-
[Rust client library docs](https://docs.rs/questdb-rs/latest/questdb/)
# ILP Auth Examples
- name: ilp-auth
lang: c
path: examples/line_sender_c_example_auth.c
header: |-
[C client library docs](https://github.com/questdb/c-questdb-client/blob/main/doc/C.md)
auth:
kid: admin
d: 5UjEMuA0Pj5pjK8a-fa24dyIf-Es5mYny3oE_Wmus48
x: fLKYEaoEb9lrn3nkwLDA-M_xnuFOdSt9y0Z7_vWSHLU
y: Dt5tbS1dEDMSYfym3fgMv0B99szno-dFc1rYF9t0aac
addr:
host: localhost
port: 9009
- name: ilp-auth
lang: cpp
path: examples/line_sender_cpp_example_auth.cpp
header: |-
[C++ client library docs](https://github.com/questdb/c-questdb-client/blob/main/doc/CPP.md)
auth:
kid: admin
d: 5UjEMuA0Pj5pjK8a-fa24dyIf-Es5mYny3oE_Wmus48
x: fLKYEaoEb9lrn3nkwLDA-M_xnuFOdSt9y0Z7_vWSHLU
y: Dt5tbS1dEDMSYfym3fgMv0B99szno-dFc1rYF9t0aac
addr:
host: localhost
port: 9009
- name: ilp-auth
lang: rust
path: questdb-rs/examples/auth.rs
header: |-
[Rust client library docs](https://docs.rs/crate/questdb-rs/latest)
auth:
kid: admin
d: 5UjEMuA0Pj5pjK8a-fa24dyIf-Es5mYny3oE_Wmus48
x: fLKYEaoEb9lrn3nkwLDA-M_xnuFOdSt9y0Z7_vWSHLU
y: Dt5tbS1dEDMSYfym3fgMv0B99szno-dFc1rYF9t0aac
addr:
host: localhost
port: 9009
# ILP Auth + TLS Examples
- name: ilp-auth-tls
lang: c
path: examples/line_sender_c_example_auth_tls.c
header: |-
[C client library docs](https://github.com/questdb/c-questdb-client/blob/main/doc/C.md)
auth:
kid: admin
d: 5UjEMuA0Pj5pjK8a-fa24dyIf-Es5mYny3oE_Wmus48
x: fLKYEaoEb9lrn3nkwLDA-M_xnuFOdSt9y0Z7_vWSHLU
y: Dt5tbS1dEDMSYfym3fgMv0B99szno-dFc1rYF9t0aac
addr:
host: localhost
port: 9009
- name: ilp-auth-tls
lang: cpp
path: examples/line_sender_cpp_example_auth_tls.cpp
header: |-
[C++ client library docs](https://github.com/questdb/c-questdb-client/blob/main/doc/CPP.md)
auth:
kid: admin
d: 5UjEMuA0Pj5pjK8a-fa24dyIf-Es5mYny3oE_Wmus48
x: fLKYEaoEb9lrn3nkwLDA-M_xnuFOdSt9y0Z7_vWSHLU
y: Dt5tbS1dEDMSYfym3fgMv0B99szno-dFc1rYF9t0aac
addr:
host: localhost
port: 9009
- name: ilp-auth-tls
lang: rust
path: questdb-rs/examples/auth_tls.rs
header: |-
[Rust client library docs](https://docs.rs/crate/questdb-rs/latest)
auth:
kid: admin
d: 5UjEMuA0Pj5pjK8a-fa24dyIf-Es5mYny3oE_Wmus48
x: fLKYEaoEb9lrn3nkwLDA-M_xnuFOdSt9y0Z7_vWSHLU
y: Dt5tbS1dEDMSYfym3fgMv0B99szno-dFc1rYF9t0aac
addr:
host: localhost
port: 9009
- name: ilp-from-conf
lang: c
path: examples/line_sender_c_example_from_conf.c
header: |-
[C client library docs](https://github.com/questdb/c-questdb-client/blob/main/doc/C.md)
conf: tcp::addr=localhost:9009;
- name: ilp-from-conf
lang: cpp
path: examples/line_sender_cpp_example_from_conf.cpp
header: |-
[C client library docs](https://github.com/questdb/c-questdb-client/blob/main/doc/CPP.md)
conf: tcp::addr=localhost:9009;
- name: ilp-from-conf
lang: rust
path: questdb-rs/examples/from_conf.rs
header: |-
[Rust client library docs](https://docs.rs/crate/questdb-rs/latest)
conf: tcp::addr=localhost:9009;