You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: agent/MTConnect.NET-Agent/README.md
+13-7Lines changed: 13 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -142,19 +142,25 @@ Arguments :
142
142
```
143
143
#### Example 1:
144
144
Install the Agent as a Windows Service (Note: requires Administrator Privileges)
145
-
> agent install
145
+
```
146
+
agent install
147
+
```
146
148
147
149
#### Example 2:
148
150
Install the Agent as a Windows Service using the configuration file "agent-config.json" and Starts the service (Note: requires Administrator Privileges)
149
-
> agent install-start agent-config.json
151
+
```
152
+
agent install-start agent-config.json
153
+
```
150
154
151
155
#### Example 3:
152
156
Starts the Windows Service (Note: requires Administrator Privileges)
153
-
> agent start
157
+
```
158
+
agent start
159
+
```
154
160
155
161
156
162
## Configuration
157
-
More information about [Configurations](https://github.com/TrakHound/MTConnect.NET/tree/master/src/MTConnect.NET-Common/Configurations). The default configuration file is shown below :
163
+
More information about [Configurations](https://github.com/TrakHound/MTConnect.NET/tree/master/libraries/MTConnect.NET-Common/Configurations). The default configuration file is shown below :
158
164
```yaml
159
165
# - Device Configuration -
160
166
devices: devices
@@ -217,7 +223,7 @@ assetBufferSize: 1000
217
223
durable: false
218
224
219
225
# Sets the default MTConnect version to output response documents for.
220
-
defaultVersion: 2.2
226
+
defaultVersion: 2.3
221
227
```
222
228
223
229
#### Device Configuration
@@ -268,7 +274,7 @@ Logging is done using [NLog](https://github.com/NLog/NLog) which allows for cust
268
274
- **(agent-validation-logger)** MTConnect Data Validation Errors
269
275
- **(module-logger)** Modules
270
276
271
-
The default [NLog Configuration File](https://github.com/TrakHound/MTConnect.NET/blob/master/src/MTConnect.NET-Applications-Agents/NLog.config) is shown below:
277
+
The default [NLog Configuration File](https://github.com/TrakHound/MTConnect.NET/blob/master/agent/MTConnect.NET-Applications-Agents/NLog.config) is shown below:
272
278
273
279
```xml
274
280
<?xml version="1.0" encoding="utf-8" ?>
@@ -332,7 +338,7 @@ The default [NLog Configuration File](https://github.com/TrakHound/MTConnect.NET
332
338
```
333
339
334
340
## Source Code
335
-
This project uses the MTConnect.NET-Applications-Agents library (available on [Nuget](https://www.nuget.org/packages/MTConnect.NET-Applications-Agents)) to create an MTConnect Agent application. More information about this library can be found [Here](https://github.com/TrakHound/MTConnect.NET/tree/master/src/MTConnect.NET-Applications-Agents). The MTConnect.NET-Applications-Agents library makes creating an MTConnect Agent application simple as well as makes it easy to keep updated using Nuget. A fully functionaly MTConnect Application can be created in just a few lines of code.
341
+
This project uses the MTConnect.NET-Applications-Agents library (available on [Nuget](https://www.nuget.org/packages/MTConnect.NET-Applications-Agents)) to create an MTConnect Agent application. More information about this library can be found [Here](https://github.com/TrakHound/MTConnect.NET/tree/master/libraries/MTConnect.NET-Applications-Agents). The MTConnect.NET-Applications-Agents library makes creating an MTConnect Agent application simple as well as makes it easy to keep updated using Nuget. A fully functionaly MTConnect Application can be created in just a few lines of code.
336
342
337
343
## Contribution / Feedback
338
344
- Please use the [Issues](https://github.com/TrakHound/MTConnect.NET/issues) tab to create issues for specific problems that you may encounter
0 commit comments